/* =========================================================
   JADE MERIDIAN — Brand Guideline v1.0
   Deep Emerald #0F473A · Jade Gold #C8A257 · Warm Ivory #F8F5EF
   Charcoal #2D2D2D · Stone #D9D4CC
   Cormorant Garamond (display) · Inter (body)
   ========================================================= */

:root {
  --emerald: #0F473A;
  --emerald-deep: #0B3329;
  --gold: #C8A257;
  --gold-soft: #d9bd82;
  --ivory: #F8F5EF;
  --ivory-warm: #f2ede3;
  --charcoal: #2D2D2D;
  --stone: #D9D4CC;
  --muted: #6f6a62;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --page: min(1300px, 88vw);
  --gutter: clamp(1.5rem, 6vw, 7rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Unified photographic grade — one cinematic language across every image:
     softly muted, warm, gentle contrast, rich but not crushed shadows. */
  --grade: saturate(0.8) contrast(0.96) brightness(0.99) sepia(0.09);
}

/* Apply the grade to all editorial photography (not the logo/UI). */
.hero__media img,
.split__media img,
.interlude__media img,
.founder__portrait img,
.dest__media img,
.cover__media img,
.contact__media img { filter: var(--grade); }

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

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

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow.on-dark { color: var(--gold-soft); }

.lede { font-size: clamp(1.15rem, 1.9vw, 1.45rem); line-height: 1.7; font-weight: 300; }

a { color: inherit; text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.1rem 2.2rem;
  border: 1px solid currentColor;
  border-radius: 2px;
  cursor: pointer;
  background: transparent;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.btn--solid { background: var(--gold); border-color: var(--gold); color: var(--emerald-deep); }
.btn--solid:hover { background: transparent; color: var(--gold); }
.btn--ghost { color: var(--ivory); }
.btn--ghost:hover { background: var(--ivory); color: var(--emerald-deep); border-color: var(--ivory); }
.btn--dark { color: var(--emerald); border-color: var(--emerald); }
.btn--dark:hover { background: var(--emerald); color: var(--ivory); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem var(--gutter);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
  mix-blend-mode: normal;
}
.nav.scrolled {
  background: var(--ivory);
  padding: 1.05rem var(--gutter);
  box-shadow: 0 1px 0 rgba(45,45,45,0.07);
}
.nav__brand {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 500; letter-spacing: 0.14em;
  color: var(--ivory); transition: color .5s var(--ease);
}
.nav__brand span { color: var(--gold); }
.nav.scrolled .nav__brand { color: var(--emerald); }

.nav__links { display: flex; align-items: center; gap: 2.4rem; }
.nav__links a {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  color: var(--ivory); opacity: .85; transition: color .5s var(--ease), opacity .3s;
}
.nav__links a:hover { opacity: 1; color: var(--gold-soft); }
.nav.scrolled .nav__links a { color: var(--charcoal); }
.nav.scrolled .nav__links a:hover { color: var(--gold); }
.nav__cta {
  border: 1px solid currentColor; padding: 0.7rem 1.4rem; border-radius: 2px;
  color: var(--ivory);
}
.nav.scrolled .nav__cta { color: var(--emerald); }
.nav__cta:hover { background: var(--gold); border-color: var(--gold); color: var(--emerald-deep) !important; opacity:1 !important; }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; width: 30px; height: 20px; position: relative; }
.nav__toggle span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ivory); transition: .4s var(--ease); }
.nav.scrolled .nav__toggle span { background: var(--emerald); }
.nav__toggle span:nth-child(1){ top: 2px; }
.nav__toggle span:nth-child(2){ top: 9px; }
.nav__toggle span:nth-child(3){ top: 16px; }
body.menu-open .nav__toggle span:nth-child(1){ top: 9px; transform: rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2){ opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3){ top: 9px; transform: rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end;
  overflow: hidden; color: var(--ivory);
}
.hero__media { position: absolute; inset: -8% 0 0 0; z-index: 0; will-change: transform; }
.hero__media img { width: 100%; height: 116%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(11,51,41,0.78) 0%, rgba(11,51,41,0.18) 42%, rgba(11,51,41,0.30) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding: 0 var(--gutter) clamp(3.5rem, 8vh, 7rem); }
.hero__title {
  font-size: clamp(2.6rem, 6.4vw, 6rem);
  max-width: 16ch; color: var(--ivory); font-weight: 500;
  text-shadow: 0 2px 40px rgba(11,51,41,0.45), 0 1px 3px rgba(11,51,41,0.25);
}
.hero__title em { font-style: italic; color: var(--gold-soft); }
.hero__sub {
  margin-top: 1.8rem; max-width: 46ch; font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300; color: rgba(248,245,239,0.92);
  text-shadow: 0 1px 24px rgba(11,51,41,0.5);
}
.hero__actions { margin-top: 2.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; z-index: 2; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(248,245,239,0.7);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.hero__scroll::after { content: ""; width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: drop 2.4s var(--ease) infinite; }
@keyframes drop { 0%{transform:scaleY(0);transform-origin:top;} 40%{transform:scaleY(1);transform-origin:top;} 60%{transform:scaleY(1);transform-origin:bottom;} 100%{transform:scaleY(0);transform-origin:bottom;} }

/* =========================================================
   SECTION SCAFFOLD
   ========================================================= */
section { position: relative; }
.wrap { width: var(--page); margin: 0 auto; }
.section-pad { padding: clamp(6.5rem, 15vh, 14rem) 0; }

.section-head { max-width: 52ch; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); margin-top: 1.2rem; }
.section-head .lede { margin-top: 1.6rem; color: var(--muted); }

/* ---- Overture: a quiet breath between the hero and the story ---- */
.overture { background: var(--ivory); text-align: center; padding: clamp(7rem, 20vh, 17rem) 0; }
.overture__line {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.9rem, 4.2vw, 3.6rem); line-height: 1.28;
  color: var(--emerald); max-width: 18ch; margin: 0 auto;
}
.overture__line em { font-style: italic; color: var(--gold); }

/* ---- Understated text link ---- */
.text-link {
  display: inline-block; margin-top: 2.2rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--emerald); padding-bottom: .4rem; border-bottom: 1px solid var(--gold);
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.text-link:hover { color: var(--gold); }

/* ---------- Why China (split) ---------- */
.why { background: var(--ivory); }
.split {
  display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(3rem, 7vw, 8rem); align-items: center;
}
.split__text h2 { font-size: clamp(2rem, 3.8vw, 3.3rem); margin: 1.6rem 0 2rem; }
.split__text p { margin-bottom: 1.5rem; color: #4a463f; }
.split__text .accent { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem,2.2vw,2rem); line-height:1.35; color: var(--emerald); margin-top: 2.2rem; }
.split__media { position: relative; }
.split__media .frame { overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

/* ---------- Philosophy ---------- */
.philosophy { background: var(--emerald); color: var(--ivory); text-align: center; }
.philosophy .wrap { max-width: 980px; }
.philosophy h2 { font-size: clamp(2.4rem, 6vw, 5.2rem); margin: 1.6rem 0 3rem; }
.philosophy h2 em { color: var(--gold-soft); font-style: italic; }
.philosophy p { font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 38ch; margin: 0 auto; color: rgba(248,245,239,0.82); font-weight: 300; }
.philosophy .big { font-family: var(--serif); font-size: clamp(1.9rem, 3.2vw, 2.8rem); line-height: 1.32; color: var(--ivory); margin: 0 auto 3.4rem; max-width: 22ch; font-weight: 500; }

/* ---------- Full-bleed interlude ---------- */
.interlude { position: relative; height: 82vh; min-height: 460px; overflow: hidden; display: flex; align-items: center; }
.interlude__media { position: absolute; inset: -10% 0; will-change: transform; }
.interlude__media img { width: 100%; height: 120%; object-fit: cover; }
.interlude::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(11,51,41,.55), rgba(11,51,41,.05)); }
.interlude__quote { position: relative; z-index: 2; color: var(--ivory); padding: 0 var(--gutter); max-width: 24ch; }
.interlude__quote p { font-family: var(--serif); font-style: italic; font-size: clamp(1.8rem, 3.4vw, 3rem); line-height: 1.25; }

/* ---------- Founder ---------- */
.founder { background: var(--ivory-warm); }
.founder .grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.founder__portrait { position: relative; }
.founder__portrait img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.founder__portrait figcaption { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 1rem; }
.founder__body h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); margin: 1.2rem 0 2rem; }
.founder__body p { margin-bottom: 1.2rem; color: #4a463f; }
.founder__quote {
  margin: 2.6rem 0 0; padding-left: 1.6rem; border-left: 2px solid var(--gold);
  font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.35; color: var(--emerald);
}
.founder__sign { margin-top: 1.6rem; font-family: var(--serif); font-size: 1.5rem; color: var(--emerald); }
.founder__role { margin-top: .5rem; font-family: var(--sans); font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* ---- Studio page ---- */
.studio-hero { padding: clamp(9rem, 22vh, 15rem) 0 clamp(2.5rem, 6vh, 4.5rem); background: var(--ivory); }
.studio-hero .eyebrow { display: block; margin-bottom: 1.4rem; }
.studio-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); color: var(--emerald); max-width: 18ch; }
.studio-hero p { margin-top: 1.8rem; max-width: 52ch; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.studio-figure { width: 100%; margin: 0; }
.studio-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: var(--grade); }
.prose { max-width: 62ch; margin: 0 auto; }
.prose p { margin-bottom: 1.6rem; color: #4a463f; }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--emerald); margin: 3rem 0 1.4rem; }
.prose .founder__quote { margin: 3rem 0; }
.prose .founder__sign { margin-bottom: 0.4rem; }

/* ---------- Explore (editorial destination rows) ---------- */
.explore { background: var(--ivory); }
.dest {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  min-height: 78vh;
}
.dest + .dest { border-top: 1px solid var(--stone); }
.dest__media { overflow: hidden; }
.dest__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.dest:hover .dest__media img { transform: scale(1.05); }
.dest__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(3.5rem, 8vw, 9rem); }
.dest__num { font-family: var(--sans); font-size: .72rem; font-weight: 500; color: var(--gold); letter-spacing: .28em; }
.dest__name { font-size: clamp(2.6rem, 4.8vw, 4.2rem); margin: 1.4rem 0 0.5rem; color: var(--emerald); }
.dest__tag { font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.7rem); color: var(--charcoal); margin-bottom: 2rem; }
.dest__copy { max-width: 40ch; color: #4a463f; font-size: 1.02rem; line-height: 1.8; }
.dest__copy.fit {
  display: block; margin-top: 2rem; padding-top: 1.4rem;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  position: relative;
}
.dest__copy.fit::before { content: ""; position: absolute; top: 0; left: 0; width: 42px; height: 1px; background: var(--gold); }
.dest--rev .dest__media { order: 2; }

/* ---------- Journal ---------- */
.journal { background: var(--emerald-deep); color: var(--ivory); }
.journal .section-head h2 { color: var(--ivory); }
.journal .section-head .lede { color: rgba(248,245,239,0.7); }
.journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); margin-top: clamp(2.5rem,5vw,4rem); }
.cover { display: block; group: cover; }
.cover__media { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.cover__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.cover:hover .cover__media img { transform: scale(1.06); }
.cover__media::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(11,51,41,.72), transparent 55%); }
.cover__kicker { position: absolute; top: 1.4rem; left: 1.4rem; z-index: 2; font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-soft); }
.cover__title { position: absolute; bottom: 1.4rem; left: 1.4rem; right: 1.4rem; z-index: 2; font-family: var(--serif); font-size: clamp(1.5rem, 2vw, 1.9rem); line-height: 1.15; color: var(--ivory); }
.cover__excerpt { margin-top: 1.2rem; color: rgba(248,245,239,0.66); font-size: .96rem; }
.cover__more { margin-top: .8rem; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }

/* ---------- Contact ---------- */
/* ============ INQUIRY ============ */
.inquiry { background: var(--ivory); }

/* Spam honeypot — kept out of sight and out of the tab order */
.hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }

.inquiry__head { max-width: 40ch; margin: 0 auto; text-align: center; }
.inquiry__head h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); margin: 1.4rem 0 1.8rem; }
.inquiry__sub { color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.18rem); line-height: 1.7; }

/* ---- Three-step process ---- */
.process {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 1040px; margin: clamp(4rem, 9vh, 7rem) auto 0;
}
.process__step { position: relative; padding-left: 0; }
.process:not(.opts) .process__step + .process__step { }
.process__step + .process__step::before {
  content: ""; position: absolute; left: calc(-1 * clamp(1rem, 2.5vw, 2.25rem)); top: 4px; bottom: 4px;
  width: 1px; background: rgba(45,45,45,0.10);
}
.process__icon { display: block; width: 40px; height: 40px; color: var(--emerald); }
.process__icon svg { width: 100%; height: 100%; display: block; }
.process__num { display: block; margin: 1.4rem 0 .5rem; font-family: var(--sans); font-size: .7rem; font-weight: 500; letter-spacing: .28em; color: var(--gold); }
.process__step h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.3rem, 1.9vw, 1.6rem); color: var(--emerald); line-height: 1.25; }
.process__step p { margin-top: .8rem; color: #55514a; font-size: .95rem; line-height: 1.65; }
.process__list { list-style: none; margin: .9rem 0 0; padding: 0; }
.process__list li { position: relative; padding-left: 1.1rem; margin-bottom: .45rem; color: #55514a; font-size: .9rem; line-height: 1.5; }
.process__list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 5px; height: 5px; border: 1px solid var(--gold); border-radius: 50%; }

/* ---- Divider ---- */
.rule { border: 0; height: 1px; background: rgba(45,45,45,0.12); max-width: 760px; margin: clamp(4rem, 9vh, 7rem) auto; }
.rule--soft { background: rgba(45,45,45,0.09); margin: clamp(2rem, 4vh, 3rem) auto; }

/* ---- Form ---- */
.iform { max-width: 760px; margin: 0 auto; }
.q { margin-bottom: clamp(2.2rem, 4vh, 3rem); border: 0; padding: 0; }
.q__label { display: block; font-family: var(--serif); font-size: clamp(1.25rem, 1.9vw, 1.55rem); font-weight: 500; color: var(--emerald); line-height: 1.3; margin-bottom: 1rem; }
.q__hint { font-family: var(--sans); font-size: .7rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-left: .5rem; white-space: nowrap; }
.q__help { margin: -.4rem 0 1.1rem; color: var(--muted); font-size: .9rem; line-height: 1.6; max-width: 54ch; }

.iform input[type=text], .iform input[type=email], .iform input[type=tel], .iform select, .iform textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--charcoal);
  background: #FCFAF5; border: 1px solid var(--stone); border-radius: 7px;
  padding: .85rem 1rem; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.iform input::placeholder, .iform textarea::placeholder { color: #a8a297; }
.iform textarea { resize: vertical; min-height: 96px; line-height: 1.6; }
.iform input:focus, .iform select:focus, .iform textarea:focus {
  outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(15,71,58,0.07);
}

/* Custom select chevron */
.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 1.05rem; top: 50%; width: 8px; height: 8px;
  border-right: 1.5px solid var(--emerald); border-bottom: 1.5px solid var(--emerald);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.iform select { cursor: pointer; padding-right: 2.4rem; }

/* Radio / checkbox options */
.opts { display: flex; }
.opts--stack { flex-direction: column; gap: .5rem; }
.opts--wrap { flex-wrap: wrap; gap: .7rem; }
.opt { position: relative; cursor: pointer; }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }

/* Stacked list rows (Q3) */
.opts--stack .opt span {
  display: block; padding: .85rem 1.1rem .85rem 2.9rem; position: relative;
  border: 1px solid var(--stone); border-radius: 7px; background: #FCFAF5;
  font-size: .98rem; color: var(--charcoal); transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.opts--stack .opt span::before {
  content: ""; position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; border: 1.5px solid #c3bcae; border-radius: 50%; transition: border-color .25s var(--ease);
}
.opts--stack .opt span::after {
  content: ""; position: absolute; left: calc(1.1rem + 4px); top: 50%; transform: translateY(-50%) scale(0);
  width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); transition: transform .2s var(--ease);
}
.opt input:checked + span { border-color: var(--emerald); background: rgba(15,71,58,0.045); }
.opts--stack .opt input:checked + span::before { border-color: var(--emerald); }
.opts--stack .opt input:checked + span::after { transform: translateY(-50%) scale(1); }
.opt:hover span { border-color: #b7ae9c; }
.opt input:focus-visible + span { box-shadow: 0 0 0 3px rgba(15,71,58,0.10); }

/* Pills (Q4, Q5) */
.opt--pill span {
  display: inline-block; padding: .62rem 1.15rem; border: 1px solid var(--stone); border-radius: 999px;
  background: #FCFAF5; font-size: .92rem; color: var(--charcoal);
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.opt--pill input:checked + span { border-color: var(--emerald); background: var(--emerald); color: var(--ivory); }
.opt--pill input:disabled + span { opacity: .38; cursor: not-allowed; }
.opt--pill:hover input:not(:disabled) + span { border-color: var(--emerald); }

/* Contact grid */
.q__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 3vw, 2.4rem); }
.q__grid .q { margin-bottom: 0; }
.phone { display: grid; grid-template-columns: minmax(0, 1fr) 1.4fr; gap: .6rem; }

.iform__foot { margin-top: clamp(2.4rem, 5vh, 3.4rem); text-align: center; }
.iform__foot .btn { min-width: 280px; }
.form__note { margin-top: 1rem; font-size: .85rem; color: var(--muted); }

/* ---- Confirmation ---- */
.confirm { max-width: 46ch; margin: 0 auto; text-align: center; padding: clamp(1rem, 4vh, 3rem) 0; }
.confirm__mark { display: inline-block; width: 56px; height: 56px; color: var(--gold); margin-bottom: 1.8rem; }
.confirm__mark svg { width: 100%; height: 100%; }
.confirm h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 1.2rem 0 1.6rem; }
.confirm p { color: var(--muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.2rem; }

/* ---------- Footer ---------- */
.footer { background: var(--emerald-deep); color: var(--ivory); padding: clamp(3.5rem,7vw,5.5rem) 0 2.5rem; }
.footer .grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer__brand { font-family: var(--serif); font-size: 1.8rem; letter-spacing: .12em; }
.footer__brand span { color: var(--gold); }
.footer__tag { margin-top: 1rem; max-width: 34ch; color: rgba(248,245,239,0.66); font-size: .96rem; }
.footer h4 { font-family: var(--sans); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); font-weight: 500; margin-bottom: 1.2rem; }
.footer a { display: block; color: rgba(248,245,239,0.8); font-size: .95rem; margin-bottom: .7rem; transition: color .3s; }
.footer a:hover { color: var(--gold-soft); }
.footer__bottom { margin-top: 3.5rem; padding-top: 1.6rem; border-top: 1px solid rgba(248,245,239,0.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .78rem; color: rgba(248,245,239,0.5); letter-spacing: .04em; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 1.4s var(--ease), transform 1.4s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .14s; } .reveal.d2 { transition-delay: .28s; } .reveal.d3 { transition-delay: .42s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav__links { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 2rem;
    background: var(--emerald); transform: translateX(100%); transition: transform .5s var(--ease); }
  body.menu-open .nav__links { transform: none; }
  .nav__links a, .nav.scrolled .nav__links a { color: var(--ivory); font-size: 1rem; }
  .nav__cta, .nav.scrolled .nav__cta { color: var(--ivory); }
  .nav__toggle { display: block; z-index: 101; }
  body.menu-open .nav__toggle span { background: var(--ivory) !important; }

  .split, .founder .grid { grid-template-columns: 1fr; }
  .split__inset { position: static; width: 60%; margin: -3rem 0 0 auto; border-width: 6px; }
  .founder .grid { gap: 2.5rem; }
  .founder__portrait img { aspect-ratio: 4/3; }

  .process { grid-template-columns: 1fr; max-width: 440px; gap: 2.6rem; }
  .process__step + .process__step::before { display: none; }
  .q__grid { grid-template-columns: 1fr; }

  .dest { grid-template-columns: 1fr; min-height: 0; }
  .dest__media { aspect-ratio: 3/2; }
  .dest--rev .dest__media { order: 0; }

  .journal__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .footer .grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .split__inset { display: none; }
  .phone { grid-template-columns: 1fr; }
  .iform__foot .btn { min-width: 0; width: 100%; }
}

/* =========================================================
   JOURNEYS  (index + itinerary detail pages)
   ========================================================= */

/* ---- Journeys index ---- */
.jindex-head { text-align: center; max-width: 44ch; margin: 0 auto; }
.jindex-head h1 { font-size: clamp(2.6rem, 6vw, 5rem); color: var(--emerald); margin: 1.4rem 0 1.6rem; }
.jindex-head p { color: var(--muted); font-size: clamp(1.12rem, 1.5vw, 1.3rem); line-height: 1.7; }

.jgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 460px)); justify-content: center; gap: clamp(2rem, 4vw, 3.4rem); margin-top: clamp(2.2rem, 4.5vh, 3.5rem); }
.jcard { display: block; }
.jcard__media { overflow: hidden; }
.jcard__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: var(--grade); transition: transform 1.4s var(--ease); }
.jcard:hover .jcard__media img { transform: scale(1.04); }
.jcard__num { display: inline-block; margin: 1.5rem 0 .7rem; font-family: var(--sans); font-size: .7rem; font-weight: 500; letter-spacing: .28em; color: var(--gold); }
.jcard__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--emerald); line-height: 1.1; }
.jcard__tag { font-family: var(--serif); font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--charcoal); margin-top: .4rem; }
.jcard__meta { margin-top: 1rem; font-size: .8rem; color: var(--muted); letter-spacing: .04em; }
.jcard__more { display: inline-block; margin-top: 1.3rem; font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--emerald); padding-bottom: .35rem; border-bottom: 1px solid var(--gold); transition: color .4s var(--ease); }
.jcard:hover .jcard__more { color: var(--gold); }
.jindex-note { text-align: center; margin-top: clamp(3rem, 7vh, 5rem); font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2vw, 1.6rem); color: var(--emerald); }

/* ---- Journey detail: hero ---- */
.jhero { position: relative; min-height: 58vh; display: flex; align-items: flex-end; color: var(--ivory); overflow: hidden; }
.jhero__media { position: absolute; inset: 0; }
.jhero__media img { width: 100%; height: 100%; object-fit: cover; filter: var(--grade); }
.jhero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,28,24,0.74) 0%, rgba(12,28,24,0.14) 46%, rgba(12,28,24,0.30) 100%); }
.jhero__inner { position: relative; z-index: 2; width: var(--page); margin: 0 auto; padding-bottom: clamp(3rem, 8vh, 6rem); }
.jhero .eyebrow { color: var(--gold-soft); }
.jhero__title { font-size: clamp(3rem, 8vw, 6.5rem); line-height: 1.02; margin: 1.1rem 0 1.3rem; }
.jhero__sub { max-width: 42ch; font-size: clamp(1.05rem, 1.5vw, 1.32rem); line-height: 1.6; color: rgba(248,245,239,0.92); }

/* ---- Journey detail: overview + facts ---- */
.journey-intro { padding: clamp(3.2rem, 6vh, 5rem) 0 clamp(1.4rem, 2.5vh, 2.2rem); }
.journey-intro .wrap { width: min(1240px, 90vw); max-width: none; }
.journey-lead { max-width: 30ch; margin: 0 auto; text-align: center; font-family: var(--serif); font-size: clamp(1.55rem, 2.4vw, 2.1rem); line-height: 1.45; color: var(--emerald); }
@media (min-width: 700px) { .journey-lead { max-width: 62ch; } }
.jmeta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: clamp(1.8rem, 3.5vh, 2.6rem); padding: clamp(1.3rem, 2.2vh, 1.8rem) 0; border-top: 1px solid rgba(45,45,45,0.14); border-bottom: 1px solid rgba(45,45,45,0.14); text-align: center; }
.jmeta__k { display: block; font-family: var(--sans); font-size: .7rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.jmeta__v { font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.5rem); color: var(--emerald); line-height: 1.2; }

/* ---- Journey detail: days ---- */
.days { padding-bottom: clamp(1.5rem, 3vh, 2.5rem); }
.days .wrap { width: min(1240px, 90vw); max-width: none; }
.day { padding: clamp(2.2rem, 4.5vh, 3.4rem) 0; }
.day + .day { border-top: 1px solid rgba(45,45,45,0.12); }
.day__num { display: block; font-family: var(--sans); font-size: .78rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.day__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 3.4vw, 2.9rem); color: var(--emerald); line-height: 1.12; margin: .6rem 0 1.1rem; }
.day__text { max-width: none; }
.day__text p { margin-bottom: 1rem; color: #3a362f; font-size: 1.2rem; line-height: 1.75; }
.day__text em { font-style: italic; }
.day__media { margin-top: clamp(1.4rem, 2.8vh, 2rem); display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(.6rem, 1.2vw, 1rem); }
.day__media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: var(--grade); }

/* ---- Journey detail: closing CTA ---- */
.jcta { background: var(--emerald); color: var(--ivory); text-align: center; padding: clamp(3.8rem, 8vh, 6rem) 0; }
.jcta .wrap { max-width: 620px; }
.jcta h2 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); margin-bottom: 1.6rem; }
.jcta p { color: rgba(248,245,239,0.85); font-size: 1.15rem; line-height: 1.7; margin-bottom: 2.4rem; }
.jback { display: inline-block; margin-top: clamp(2.5rem,6vh,4rem); font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); transition: color .4s var(--ease); }
.jback:hover { color: var(--emerald); }

@media (max-width: 820px) {
  .jmeta { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .day__media { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .jhero { min-height: 52vh; }
  .jhero__title { font-size: clamp(3rem, 15vw, 4rem); }
  .journey-lead { font-size: 1.4rem; line-height: 1.45; }
  .day__title { font-size: clamp(1.8rem, 7vw, 2.2rem); }
  .day__text p { font-size: 1.16rem; line-height: 1.7; }
  .day__media { grid-template-columns: repeat(2, 1fr); gap: .55rem; }
}

/* ---- Journey signature sections ---- */
.sig { padding: clamp(3rem, 6vh, 5rem) 0; }
.sig--warm { background: var(--ivory-warm); }
.sig__inner { max-width: 62ch; margin: 0 auto; text-align: center; }
.sig__inner .eyebrow { display: block; margin-bottom: 1.1rem; }
.sig h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--emerald); margin-bottom: 1.4rem; }
.sig p { font-size: 1.2rem; line-height: 1.75; color: #3a362f; margin: 0 auto 1rem; }
.sig p:last-child { margin-bottom: 0; }

/* Come-away-with split */
.gains .wrap { width: min(1240px, 90vw); max-width: none; }
.gains__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.gains__head .eyebrow { display: block; margin-bottom: 1rem; }
.gains__head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--emerald); margin-bottom: 1.7rem; line-height: 1.15; }
.gains__list { list-style: none; }
.gains__list li { position: relative; padding-left: 1.8rem; margin-bottom: 1.1rem; font-size: 1.18rem; line-height: 1.55; color: #3a362f; }
.gains__list li:last-child { margin-bottom: 0; }
.gains__list li::before { content: ""; position: absolute; left: 2px; top: .5em; width: 8px; height: 8px; border: 1px solid var(--gold); transform: rotate(45deg); }
.gains__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: var(--grade); }

@media (max-width: 820px) {
  .gains__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .gains__media { order: -1; }
  .gains__media img { aspect-ratio: 3/2; }
}
