/* EatCookJoy Gulf — Presentation styles */
:root {
  --ink: #1a1410;
  --ink-2: #2b2118;
  --cream: #faf6ef;
  --cream-2: #f0e9dc;
  --paper: #fbf8f2;
  --saffron: #d97757;
  --saffron-deep: #b95838;
  --gold: #c89b5b;
  --halal: #1f8a5b;
  --rose: #b94047;
  --line: rgba(26,20,16,0.12);
  --line-strong: rgba(26,20,16,0.22);
  --muted: rgba(26,20,16,0.62);
  --serif: 'Cormorant Garamond', 'Garamond', 'Times New Roman', serif;
  --sans: 'Manrope', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; padding: 0; background: #0a0806; font-family: var(--sans); }

deck-stage { background: #0a0806; }

/* Every slide canvas */
.slide {
  width: 1920px; height: 1080px;
  position: relative; overflow: hidden;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
}

/* ─────────── Reusable typography ─────────── */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 14px; font-weight: 600;
  color: var(--saffron);
}
.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 999px;
  background: var(--saffron); margin: 0 12px 3px;
  vertical-align: middle;
}
.section-num {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 24px; color: var(--saffron);
  letter-spacing: 0.04em;
}
.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.display em {
  font-style: italic; font-weight: 400;
  color: var(--saffron-deep);
}
.h1 { font-size: 140px; }
.h2 { font-size: 96px; }
.h3 { font-size: 64px; }
.h4 { font-size: 44px; }
.body-lg {
  font-family: var(--sans); font-size: 24px; line-height: 1.45;
  color: var(--ink-2); font-weight: 400;
}
.body-md {
  font-family: var(--sans); font-size: 19px; line-height: 1.55;
  color: var(--ink-2); font-weight: 400;
}
.body-sm {
  font-family: var(--sans); font-size: 15px; line-height: 1.55;
  color: var(--muted); font-weight: 400;
}

/* ─────────── Page chrome ─────────── */
.chrome {
  position: absolute; inset: 0;
  padding: 60px 96px; pointer-events: none;
  display: flex; flex-direction: column;
  z-index: 50;
}
.chrome-top {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.chrome-top .brand-mark {
  display: flex; align-items: center; gap: 12px;
}
.chrome-top .seal {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--saffron); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 18px;
  font-weight: 600;
}

/* ─────────── Tags / chips ─────────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 13px; color: var(--ink-2);
  background: rgba(255,255,255,0.6);
  font-weight: 500;
}
.chip.solid { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.chip.saffron { background: var(--saffron); color: #fff; border-color: var(--saffron); }
.chip.outline-gold { border-color: var(--gold); color: var(--gold); }

/* ─────────── Country card grid ─────────── */
.country-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.country-card .flag {
  font-size: 44px; line-height: 1;
}
.country-card h3 {
  font-family: var(--serif); font-size: 34px; font-weight: 500;
  margin: 0; line-height: 1.05;
}
.country-card .meta {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--saffron-deep); text-transform: uppercase;
}
.country-card .body {
  font-size: 14px; line-height: 1.5; color: var(--ink-2);
}

/* Stats */
.stat-row { display: flex; gap: 56px; align-items: baseline; }
.stat .n {
  font-family: var(--serif); font-size: 88px; font-weight: 500;
  line-height: 0.9; color: var(--ink);
}
.stat .n em { color: var(--saffron-deep); font-style: italic; font-weight: 400; }
.stat .l {
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
  margin-top: 8px;
}

/* Pill row */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* Page footer */
.foot {
  position: absolute; bottom: 36px; left: 96px; right: 96px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  z-index: 5;
}

/* Hairline */
.hr { height: 1px; background: var(--line-strong); width: 100%; }

/* Image card */
.photo {
  background: #333 center/cover no-repeat;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.photo .caption {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  color: #fff; font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* Cover-specific */
.slide.cover {
  background: #0a0806;
  color: var(--cream);
}
.slide.cover .display { color: var(--cream); }
.slide.cover .display em { color: var(--saffron); }
.slide.cover .body-lg { color: rgba(250,246,239,0.78); }
.slide.cover .eyebrow { color: var(--saffron); }
.slide.cover .body-sm { color: rgba(250,246,239,0.55); }

/* Dark variant */
.slide.dark {
  background: var(--ink);
  color: var(--cream);
}
.slide.dark .display { color: var(--cream); }
.slide.dark .display em { color: var(--saffron); }
.slide.dark .body-lg, .slide.dark .body-md { color: rgba(250,246,239,0.78); }
.slide.dark .body-sm { color: rgba(250,246,239,0.5); }
.slide.dark .chrome-top { color: rgba(250,246,239,0.55); }
.slide.dark .foot { color: rgba(250,246,239,0.4); }
.slide.dark .hr { background: rgba(250,246,239,0.15); }

/* Numbered list */
.numlist { display: flex; flex-direction: column; gap: 24px; }
.numlist .item {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 24px; align-items: start;
  padding-bottom: 20px; border-bottom: 1px solid var(--line);
}
.numlist .item .num {
  font-family: var(--serif); font-style: italic;
  font-size: 36px; color: var(--saffron-deep);
  font-weight: 400;
}
.numlist .item h4 {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  margin: 0 0 6px;
}
.numlist .item p {
  margin: 0; font-size: 15px; color: var(--ink-2); line-height: 1.5;
}

/* Phone row */
.phone-row {
  display: flex; gap: 56px; align-items: flex-end;
  justify-content: center;
}
.phone-cap {
  text-align: center; margin-top: 28px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
}

/* timeline */
.tl {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; border-top: 1px solid var(--line-strong);
}
.tl .ph {
  padding: 28px 24px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.tl .ph:last-child { border-right: none; }
.tl .ph .num {
  font-family: var(--serif); font-style: italic;
  color: var(--saffron-deep); font-size: 22px;
}
.tl .ph .when {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}
.tl .ph h4 {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  margin: 14px 0 8px;
}
.tl .ph p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.tl .ph .dot {
  position: absolute; top: -7px; left: 0;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--saffron);
}

/* Spec list */
.spec {
  display: flex; flex-direction: column; gap: 0;
}
.spec .row {
  display: grid; grid-template-columns: 240px 1fr;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  gap: 24px; align-items: baseline;
}
.spec .row .k {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--saffron-deep); font-weight: 600;
}
.spec .row .v { font-size: 16px; color: var(--ink-2); line-height: 1.5; }

/* Architecture box */
.arch-box {
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.5);
  padding: 16px;
}
.slide.dark .arch-box {
  border-color: rgba(250,246,239,0.18);
  background: rgba(250,246,239,0.04);
}
.arch-box .ttl {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--saffron); font-weight: 700;
  margin-bottom: 10px;
}
.arch-box .it {
  font-size: 14px; line-height: 1.55; color: inherit; opacity: 0.85;
  margin: 4px 0;
}
