/* =====================================================================
   /dubai-auswandern/ — v12 — UAE Private Office Brand
   Cormorant Garamond (display) · Plus Jakarta Sans (body)
   Cream · Sand · Espresso · Gold
   ===================================================================== */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* PAPER & SAND (main brand) */
  --cream:        #FDFBF7;
  --cream-2:      #F5EEE3;
  --sand:         #E2D4C0;
  --sand-2:       #D4C3A8;

  /* INK */
  --espresso:     #0C0905;
  --espresso-2:   #18120C;
  --espresso-3:   #241B12;
  --ink:          #1A1208;
  --ink-2:        #5A4830;
  --ink-3:        #9C8870;
  --ink-4:        #BFAE94;

  /* lines */
  --line:         rgba(26,18,8,.08);
  --line-2:       rgba(26,18,8,.16);

  /* ACCENT (gold instead of terra) */
  --gold:         #B8935A;
  --gold-l:       #D4AE78;
  --gold-d:       #8A6E3F;
  --gold-a:       rgba(184,147,90,.13);

  /* utility */
  --r-sm:        10px;
  --r-md:        16px;
  --r-lg:        22px;
  --r-pill:      999px;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);

  /* spacing */
  --pad-sec:     clamp(56px, 6.5vw, 96px);
  --gap-lg:      clamp(40px, 5vw, 68px);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  line-height: 1.7;
  overflow-x: hidden;
  font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
}

a { color: inherit; text-decoration: none; }
img, video, svg { display: block; max-width: 100%; }
em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-d);
}

::selection { background: var(--gold-a); color: var(--ink); }

/* ── paper grain */
.noise {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .035;
  mix-blend-mode: multiply;
}

/* ── containers */
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 clamp(22px, 4.5vw, 64px); }
.container-narrow { max-width: 820px; }

/* ═════════ TICKER ═════════ */
.ticker {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  height: 30px;
  background: var(--espresso);
  color: var(--cream);
  overflow: hidden;
  display: flex; align-items: center;
}
.ticker-track {
  display: flex; align-items: center; gap: 28px;
  animation: tick 65s linear infinite;
  white-space: nowrap;
  padding-left: 28px;
}
.ticker span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .26em;
  color: var(--cream);
  opacity: .65;
  font-weight: 500;
  text-transform: uppercase;
}
.ticker i {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold-l);
  display: inline-block;
}
@keyframes tick { to { transform: translateX(-50%); } }

/* ═════════ NAV ═════════ */
.nav {
  position: fixed; top: 42px; left: 16px; right: 16px;
  z-index: 50;
  transition: top .3s var(--ease);
}
.nav-pill {
  display: flex; align-items: center; gap: 18px;
  max-width: 1320px; margin: 0 auto;
  padding: 11px 14px 11px 22px;
  background: rgba(253,251,247,.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: 0 4px 22px rgba(12,9,5,.04);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled .nav-pill {
  background: rgba(253,251,247,.97);
  box-shadow: 0 8px 28px rgba(12,9,5,.08);
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand-logo {
  display: block;
  height: 36px;
  width: auto;
  transition: opacity .25s ease;
}
.nav-brand:hover .nav-brand-logo { opacity: .78; }
.nav-brand-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink-3);
  font-weight: 400;
  padding-left: 12px;
  border-left: 1px solid var(--line-2);
  margin-left: 4px;
  text-transform: none;
}
.nav-links { display: flex; gap: 26px; flex: 1; justify-content: center; }
.nav-links a {
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: .01em;
  transition: color .2s ease;
  position: relative;
  font-weight: 400;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -4px; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; gap: 8px; align-items: center; }

@media (max-width: 880px) { .nav-links { display: none; } }

/* ═════════ BUTTONS ═════════ */
.btn-primary, .btn-ghost, .btn-wa, .plan-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .3s var(--ease), border .3s var(--ease), color .3s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
  will-change: transform;
}
.btn-sm { padding: 11px 18px; font-size: 12.5px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
  font-weight: 500;
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--espresso);
  box-shadow: 0 14px 36px -10px rgba(184,147,90,.45);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  background: rgba(26,18,8,.04);
  border-color: var(--ink-2);
}
.btn-wa {
  background: rgba(37,211,102,.1);
  color: #1b8a44;
  border-color: rgba(37,211,102,.32);
  padding: 8px 14px;
  font-size: 11.5px;
}
.btn-wa:hover {
  background: rgba(37,211,102,.18);
  border-color: rgba(37,211,102,.55);
}

/* ═════════ DISPLAY TYPE — Cormorant Garamond ═════════ */
.h-display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.04;
  color: var(--ink);
}
.h-display em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-d);
}
.h2 {
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.kicker {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--ink-2);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.chap-no {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-d);
  font-weight: 600;
  margin-bottom: 14px;
  padding-bottom: 8px;
  display: inline-block;
  border-bottom: 1px solid var(--gold-a);
  padding-right: 18px;
}

/* ═════════ HERO ═════════ */
.hero {
  position: relative;
  padding: 156px 0 60px;
  min-height: auto;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(22px, 4.5vw, 64px);
}

.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 7px 13px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-2);
  font-weight: 500;
}
.tag-live {
  color: var(--gold-d);
  border-color: var(--gold);
  background: var(--gold-a);
}
.tag .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold-a);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(184,147,90,.4); }
  50%     { box-shadow: 0 0 0 9px rgba(184,147,90,0); }
}

.h-mega {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 32ch;
}
.h-mega em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-d);
}

.hero-sub {
  margin-top: 24px;
  font-size: clamp(15.5px, 1.25vw, 18px);
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 50ch;
  font-weight: 300;
}

.hero-ctas {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 32px;
}

.hero-meta {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
  max-width: 500px;
}
.hero-meta > div { display: flex; flex-direction: column; gap: 4px; }
.meta-k {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.meta-v {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 1.6vw, 26px);
  color: var(--ink);
  letter-spacing: -0.01em;
  font-weight: 500;
}

/* HERO PHOTO */
.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow:
    0 24px 60px -18px rgba(12,9,5,.18),
    0 0 0 1px var(--line);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.02);
}
.hero-photo figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(0deg, rgba(12,9,5,.7) 0%, transparent 100%);
  font-weight: 500;
}
.cap-no {
  background: var(--gold);
  color: var(--espresso);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}

.scroll-cue {
  position: absolute; bottom: 22px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; gap: 4px;
  z-index: 3;
}
.scroll-cue span {
  width: 14px; height: 1px; background: var(--ink-2);
  opacity: .2;
  animation: scroll 2s ease-in-out infinite;
}
.scroll-cue span:nth-child(2) { animation-delay: .2s; }
.scroll-cue span:nth-child(3) { animation-delay: .4s; }
@keyframes scroll {
  0%,100% { opacity: .2; transform: scaleX(.6); }
  50%     { opacity: 1;  transform: scaleX(1); }
}

@media (max-width: 980px) {
  .hero { padding: 140px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-photo { max-width: 420px; margin: 0 auto; }
  .hero-meta { max-width: 100%; }
}

/* ═════════ PHOTO STRIP ═════════ */
.frames {
  padding: 56px 0;
  background: var(--cream-2);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.frames-track {
  display: flex; align-items: center; gap: 28px;
  padding: 0 5vw;
  will-change: transform;
  transition: transform .1s linear;
}
.frame {
  flex: 0 0 auto;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 16px 40px -14px rgba(12,9,5,.16);
  background: var(--cream);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-1 { width: 280px; aspect-ratio: 3/4; }
.frame-2 { width: 420px; aspect-ratio: 3/2; transform: translateY(34px); }
.frame-3 { width: 420px; aspect-ratio: 3/2; transform: translateY(-26px); }
.frame-4 { width: 280px; aspect-ratio: 3/4; }
.frame-5 { width: 420px; aspect-ratio: 3/2; transform: translateY(34px); }

@media (max-width: 720px) {
  .frame-1, .frame-4 { width: 200px; }
  .frame-2, .frame-3, .frame-5 { width: 280px; }
}

/* ═════════ STATS ═════════ */
.stats {
  padding: 64px 0 56px;
  background: var(--cream);
  position: relative;
}
.stats-kicker {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
  margin-bottom: 36px;
  font-weight: 500;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  opacity: 0; transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.stat.is-in { opacity: 1; transform: none; }
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.stat-num i {
  font-style: italic;
  font-size: .42em;
  vertical-align: 0.5em;
  margin-left: 4px;
  color: var(--gold);
  font-weight: 500;
}
.stat-cap {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 22ch;
  margin-left: auto; margin-right: auto;
  font-weight: 400;
}
@media (max-width: 720px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 40px; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 36px; }
}

/* ═════════ CHAPTER ═════════ */
.chapter {
  padding: var(--pad-sec) 0;
  background: var(--cream);
  position: relative;
}
.chapter-01 { background: var(--cream); }
.chapter-02 { background: var(--cream-2); }
.chapter-03 { background: var(--sand); }
.chapter-plans { background: var(--cream); }
.chapter-cost { background: var(--cream-2); }
.chapter-team { background: var(--cream); }
.chapter-faq  { background: var(--cream-2); }
.chapter-cta  { background: var(--espresso); color: var(--cream); }

.chap-head {
  max-width: 800px;
  margin: 0 auto clamp(36px, 4.5vw, 60px);
  text-align: center;
}
.chap-head .chap-no { margin-left: auto; margin-right: auto; display: inline-block; }
.sec-lead {
  margin-top: 22px;
  font-size: clamp(15px, 1.2vw, 17.5px);
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
  font-weight: 300;
}

/* ═════════ BENTO ═════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: minmax(360px, auto) minmax(280px, auto);
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
}
.cell {
  position: relative;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 36px 34px;
  display: flex; align-items: flex-end;
  transition: transform .4s var(--ease), border .4s var(--ease), background .4s var(--ease);
  opacity: 0; transform: translateY(24px);
}
.cell.is-in { opacity: 1; transform: none; }
.cell:hover { border-color: var(--line-2); transform: translateY(-3px); }

.cell-big  { grid-column: span 2; grid-row: span 1; }
.cell-wide { grid-column: span 2; grid-row: span 1; }

.cell-img { position: absolute; inset: 0; z-index: 0; }
.cell-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.95) brightness(.95);
}
.cell-big::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(253,251,247,.15) 0%, rgba(253,251,247,.92) 55%, var(--cream-2) 100%),
    linear-gradient(90deg, rgba(253,251,247,.95) 0%, rgba(253,251,247,.72) 35%, rgba(253,251,247,.2) 72%, transparent 100%);
  z-index: 1;
}
.cell-wide .cell-img-right { left: 45%; }
.cell-wide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--cream-2) 0%, var(--cream-2) 38%, rgba(245,238,227,.88) 55%, rgba(245,238,227,.3) 80%, transparent 100%);
  z-index: 1;
}
.cell-inner {
  position: relative; z-index: 2;
  max-width: 58ch;
}
.cell-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-d);
  font-weight: 600;
  margin-bottom: 18px;
  padding: 4px 10px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  background: var(--gold-a);
}
.cell h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.08;
  margin-bottom: 14px;
}
.cell p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-2);
  font-weight: 300;
  max-width: 52ch;
}
.micro-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px dashed var(--line-2);
}
.micro-stats span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}
.micro-stats b {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-d);
  margin-right: 6px;
  letter-spacing: -0.01em;
}

@media (max-width: 920px) {
  .bento { grid-template-columns: 1fr; grid-template-rows: none; }
  .cell-big, .cell-wide { grid-column: 1; }
  .cell { min-height: 300px; }
}

/* ═════════ TRAPS ═════════ */
.traps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1140px; margin: 0 auto;
}
.trap {
  position: relative;
  padding: 36px 34px 32px 92px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
  opacity: 0; transform: translateY(20px);
}
.trap.is-in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease), border .3s var(--ease); }
.trap:hover { border-color: var(--line-2); transform: translateY(-2px); background: #FFF; }
.trap-no {
  position: absolute; left: 30px; top: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 48px;
  color: var(--gold-d);
  letter-spacing: -0.03em;
  line-height: 1;
}
.trap h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--ink);
  line-height: 1.2;
}
.trap p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-2);
  font-weight: 300;
}
.trap p em { color: var(--gold-d); font-style: italic; font-weight: 500; }
.trap:last-child:nth-child(odd) { grid-column: span 2; }
@media (max-width: 880px) {
  .traps { grid-template-columns: 1fr; }
  .trap:last-child:nth-child(odd) { grid-column: 1; }
  .trap { padding: 32px 28px 28px 84px; }
  .trap-no { font-size: 40px; left: 26px; top: 30px; }
}

/* ═════════ FLOW ═════════ */
.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1180px; margin: 0 auto;
  position: relative;
}
.flow::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: .4;
}
.flow-step {
  position: relative;
  padding: 0 4px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.flow-step.is-in { opacity: 1; transform: none; }
.flow-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--sand);
  border: 1px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 28px;
  color: var(--gold-d);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  box-shadow: 0 0 0 8px var(--sand);
  position: relative;
  z-index: 2;
}
.flow-when {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-d);
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.flow-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  color: var(--ink);
  line-height: 1.15;
}
.flow-step p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-2);
  font-weight: 300;
}
@media (max-width: 880px) {
  .flow { grid-template-columns: 1fr; gap: 44px; }
  .flow::before { display: none; }
}

/* ═════════ PLANS ═════════ */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1240px; margin: 0 auto;
}
.plan {
  position: relative;
  padding: 40px 32px 36px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), border .4s var(--ease), box-shadow .4s var(--ease);
  opacity: 0; transform: translateY(20px);
}
.plan.is-in { opacity: 1; transform: none; }
.plan:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: 0 20px 50px -20px rgba(12,9,5,.12); }

.plan-feat {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
  transform: translateY(-12px);
  box-shadow: 0 28px 60px -20px rgba(12,9,5,.4);
}
.plan-feat:hover { transform: translateY(-16px); }

.plan-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--espresso);
  padding: 5px 14px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(184,147,90,.4);
}

.plan header { margin-bottom: 22px; }
.plan-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: none;
  margin-bottom: 10px;
  line-height: 1.1;
}
.plan-feat .plan-tag { color: var(--cream); }
.plan-for {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.6;
  font-weight: 300;
}
.plan-feat .plan-for { color: rgba(253,251,247,.7); }

.plan-price {
  display: flex; align-items: baseline; gap: 10px;
  padding: 22px 0;
  margin-bottom: 24px;
  border-top: 1px dashed var(--line-2);
  border-bottom: 1px dashed var(--line-2);
}
.plan-feat .plan-price { border-color: rgba(253,251,247,.14); }
.plan-price .ab {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.plan-feat .plan-price .ab { color: rgba(253,251,247,.5); }
.plan-price strong {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 44px;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.plan-feat .plan-price strong { color: var(--cream); }

.plan-list {
  list-style: none;
  display: grid; gap: 11px;
  margin-bottom: 32px;
  flex: 1;
}
.plan-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 300;
}
.plan-feat .plan-list li { color: rgba(253,251,247,.86); }
.plan-list li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 12px; height: 1px;
  background: var(--gold);
}
.plan-list em { color: var(--gold-d); font-style: italic; font-weight: 500; }
.plan-feat .plan-list em { color: var(--gold-l); }

.plan-btn {
  padding: 13px 22px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-size: 13px; font-weight: 500;
}
.plan-btn:hover { background: var(--ink); color: var(--cream); }
.plan-btn-primary {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
  font-weight: 600;
}
.plan-btn-primary:hover {
  background: var(--gold-l);
  border-color: var(--gold-l);
  color: var(--espresso);
}

.plan-foot {
  margin-top: 36px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
}

@media (max-width: 980px) {
  .plans { grid-template-columns: 1fr; max-width: 480px; gap: 22px; }
  .plan-feat { transform: none; }
  .plan-feat:hover { transform: translateY(-3px); }
}

/* ═════════ COST ═════════ */
.cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1140px; margin: 0 auto;
}
.cost-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease), border .3s var(--ease);
}
.cost-card.is-in { opacity: 1; transform: none; }
.cost-card:hover { border-color: var(--line-2); }
.cost-card header {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 18px; margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.cost-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.cost-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-d);
  font-weight: 600;
}
.cost-rows { display: grid; gap: 0; }
.cost-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
  font-size: 14px;
}
.cost-row:last-child { border-bottom: none; }
.cost-card:nth-child(2) .cost-row { grid-template-columns: 1.4fr 1fr 1fr; }
.r-l { color: var(--ink); font-weight: 400; }
.r-aed {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  font-weight: 500;
}
.r-eur {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-variant-numeric: tabular-nums;
  color: var(--gold-d);
  font-weight: 600;
  text-align: right;
}
.cost-note {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.7;
  font-weight: 300;
}
.cost-note strong { color: var(--gold-d); font-weight: 500; }

@media (max-width: 880px) { .cost-grid { grid-template-columns: 1fr; } }

/* ═════════ PHOTO ESSAY ═════════ */
.essay {
  padding: var(--pad-sec) 0;
  background: var(--cream);
}
.essay-head { margin-bottom: clamp(48px, 6vw, 80px); }

.essay-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 86px;
  gap: 14px;
  padding: 0 clamp(22px, 4vw, 64px);
  max-width: 1600px; margin: 0 auto;
}
.ess {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--cream-2);
  opacity: 0; transform: translateY(30px) scale(.985);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.ess.is-in { opacity: 1; transform: none; }
.ess img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 4s ease;
}
.ess:hover img { transform: scale(1.04); }
.ess figcaption {
  position: absolute; bottom: 0; left: 0;
  padding: 14px 18px;
  background: linear-gradient(0deg, rgba(12,9,5,.7) 0%, transparent 100%);
  color: var(--cream);
  font-size: 12.5px;
  letter-spacing: 0;
  width: 100%;
  line-height: 1.5;
  font-weight: 400;
}
.ess figcaption em {
  color: var(--gold-l);
  font-style: italic;
  font-weight: 500;
  margin-right: 2px;
}
.ess-1 { grid-column: span 6; grid-row: span 5; }
.ess-2 { grid-column: span 6; grid-row: span 5; }
.ess-3 { grid-column: span 4; grid-row: span 4; }
.ess-4 { grid-column: span 4; grid-row: span 4; }
.ess-5 { grid-column: span 4; grid-row: span 4; }

@media (max-width: 880px) {
  .essay-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .ess-1, .ess-2, .ess-3, .ess-4, .ess-5 { grid-column: span 2; grid-row: span 1; }
}

/* ═════════ TEAM ═════════ */
.chapter-team {
  background:
    radial-gradient(ellipse at 80% 40%, var(--gold-a) 0%, transparent 60%),
    var(--cream);
}
.team-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  max-width: 1240px; margin: 0 auto;
}
.team-copy .chap-no { margin-bottom: 14px; }
.team-copy .kicker { margin-top: 4px; margin-bottom: 18px; }
.team-copy .h-display { margin-bottom: 28px; font-size: clamp(32px, 4.2vw, 56px); }
.team-copy p {
  font-size: 16px; line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 18px;
  max-width: 54ch;
  font-weight: 300;
}
.team-copy p strong { color: var(--ink); font-weight: 500; }
.team-copy p a { color: var(--gold-d); border-bottom: 1px solid var(--gold); }
.team-copy p em { color: var(--gold-d); font-style: italic; font-weight: 500; }
.sign {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-weight: 500 !important;
  font-size: 22px !important;
  color: var(--ink) !important;
  margin-top: 32px !important;
}
.team-ctas {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  margin-top: 32px;
}
.link-out {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  transition: color .25s ease;
  font-weight: 600;
}
.link-out:hover { color: var(--gold-d); }
.link-out span {
  display: inline-block;
  transition: transform .25s ease;
  margin-left: 6px;
}
.link-out:hover span { transform: translateX(4px); }

.team-faces {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.face {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-2);
  transition: transform .5s var(--ease);
}
.face-1 { transform: translateY(28px); }
.face-2 { transform: translateY(-16px); }
.face:hover { transform: translateY(0); }
.face img {
  width: 100%; height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: filter .4s ease, transform 4s ease;
}
.face:hover img { transform: scale(1.04); }
.face figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 16px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(0deg, rgba(12,9,5,.78) 0%, transparent 100%);
  font-weight: 500;
}
@media (max-width: 880px) {
  .team-split { grid-template-columns: 1fr; gap: 56px; }
  .face-1, .face-2 { transform: none; }
}

/* ═════════ FAQ ═════════ */
.faq { display: grid; gap: 8px; }
.faq details {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 28px;
  transition: border .25s ease, background .25s ease, box-shadow .3s ease;
}
.faq details:hover { border-color: var(--line-2); }
.faq details[open] {
  background: #FFFCF6;
  border-color: var(--gold);
  box-shadow: 0 14px 36px -16px rgba(12,9,5,.12);
}
.faq summary {
  cursor: pointer; list-style: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-right: 44px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  position: absolute; right: 4px; top: 50%;
  width: 16px; height: 16px;
  margin-top: -8px;
  background:
    linear-gradient(var(--gold-d), var(--gold-d)) center / 14px 1.5px no-repeat,
    linear-gradient(var(--gold-d), var(--gold-d)) center / 1.5px 14px no-repeat;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq p {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--ink-2);
  font-weight: 300;
}
.faq em { color: var(--gold-d); font-style: italic; font-weight: 500; }

/* ═════════ CTA FINAL ═════════ */
.chapter-cta {
  background: var(--espresso);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.chapter-cta::before {
  content: '';
  position: absolute;
  width: 760px; height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,147,90,.45) 0%, transparent 60%);
  filter: blur(120px);
  top: -200px; right: -160px;
  pointer-events: none;
}
.chapter-cta .chap-no { color: var(--gold-l); border-color: rgba(253,251,247,.16); }
.chapter-cta .kicker { color: var(--cream); opacity: .7; }
.chapter-cta .h-display { color: var(--cream); }
.chapter-cta .h-display em { color: var(--gold-l); }

.cta-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 76px;
  align-items: start;
  max-width: 1200px; margin: 0 auto;
}
.chapter-cta .chap-head { text-align: left; margin: 0 0 24px; }
.chapter-cta .h-display { font-size: clamp(32px, 4.4vw, 60px); text-align: left; }
.cta-lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(253,251,247,.78);
  margin: 24px 0 32px;
  max-width: 50ch;
  font-weight: 300;
}
.cta-list {
  list-style: none;
  margin-bottom: 36px;
  display: grid; gap: 12px;
}
.cta-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: rgba(253,251,247,.85);
  line-height: 1.6;
  font-weight: 300;
}
.cta-list li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 12px; height: 1px;
  background: var(--gold-l);
}

.chapter-cta .btn-primary {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}
.chapter-cta .btn-primary:hover {
  background: var(--gold-l);
  border-color: var(--gold-l);
  color: var(--espresso);
}
.chapter-cta .btn-ghost {
  color: var(--cream);
  border-color: rgba(253,251,247,.22);
}
.chapter-cta .btn-ghost:hover {
  background: rgba(253,251,247,.06);
  border-color: rgba(253,251,247,.5);
}

.form {
  background: rgba(253,251,247,.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(253,251,247,.14);
  padding: 36px 32px;
  border-radius: var(--r-lg);
  display: grid;
  gap: 14px;
}
.form-h {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-l);
  font-weight: 600;
  margin-bottom: 4px;
}
.form-h .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 1.8s ease-in-out infinite;
}
.form label {
  display: grid; gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .16em;
  color: rgba(253,251,247,.7);
  text-transform: uppercase;
  font-weight: 500;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 13px 14px;
  background: rgba(253,251,247,.06);
  border: 1px solid rgba(253,251,247,.16);
  border-radius: var(--r-sm);
  color: var(--cream);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  transition: border .25s ease, background .25s ease;
}
.form textarea { resize: vertical; min-height: 80px; line-height: 1.55; }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold-l);
  background: rgba(253,251,247,.1);
}
.form .btn-primary { background: var(--gold); color: var(--espresso); border-color: var(--gold); font-weight: 600; }
.form .btn-primary:hover { background: var(--gold-l); border-color: var(--gold-l); color: var(--espresso); }
.form-note {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  color: rgba(253,251,247,.6);
  letter-spacing: .04em;
  text-align: center;
  margin-top: -2px;
  text-transform: none;
  font-weight: 400;
}

@media (max-width: 980px) { .cta-grid { grid-template-columns: 1fr; gap: 44px; } }

/* ═════════ FOOTER ═════════ */
.ftr {
  position: relative;
  background: var(--cream-2);
  padding: 80px 0 0;
  overflow: hidden;
}
.ftr-big {
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(140px, 22vw, 360px);
  line-height: .82;
  text-align: center;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-a);
  pointer-events: none;
  user-select: none;
  font-weight: 400;
}
.ftr-big i {
  color: var(--gold-a);
  font-style: italic;
  -webkit-text-stroke: 0;
  margin: 0 .05em;
}
.ftr-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.ftr-logo { display: inline-block; margin-bottom: 10px; }
.ftr-logo img {
  display: block;
  height: 56px;
  width: auto;
  opacity: .92;
  transition: opacity .25s ease;
}
.ftr-logo:hover img { opacity: 1; }
.ftr-edition {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--ink-3);
  font-weight: 400;
  margin-bottom: 18px;
  text-transform: none;
  border: none;
  padding: 0;
}
.ftr-text {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 320px;
  font-weight: 300;
}
.ftr-col { display: flex; flex-direction: column; gap: 11px; }
.ftr-h {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-d);
  font-weight: 600;
  margin-bottom: 6px;
}
.ftr-col a {
  font-size: 13.5px;
  color: var(--ink-2);
  transition: color .2s ease;
  font-weight: 400;
}
.ftr-col a:hover { color: var(--gold-d); }
.ftr-loc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
  font-weight: 500;
}
.ftr-base {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding: 24px 0 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--ink-3);
  font-weight: 500;
}
.ftr-base a { color: var(--ink-2); margin: 0 6px; }
.ftr-base a:hover { color: var(--gold-d); }

@media (max-width: 720px) { .ftr-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ═════════ REDUCED MOTION ═════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
