/* =====================================================================
   BEYOND ARRIVAL — Travel Advisory
   Shared design system
   Palette: warm charcoal · ivory · sand · muted gold · forest · slate
   Type: Fraunces (display serif) + Hanken Grotesk (sans)
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --charcoal:   #16161A;
  --charcoal-2: #202024;
  --ink:        #23242A;
  --ivory:      #F5F5F4;
  --ivory-2:    #EAEBEA;
  --sand:       #CFCEC8;
  --sand-deep:  #B7B6AE;
  --gold:       #B0894A;
  --gold-lt:    #CBA567;
  --forest:     #36463B;
  --slate:      #455A6C;

  --paper:      #F5F5F4;
  --text:       #20211F;
  --text-soft:  #5B5C58;
  --line:       rgba(30,30,28,0.14);
  --line-2:     rgba(30,30,28,0.08);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 4px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(72px, 11vw, 150px); }
.section--tight { padding-block: clamp(56px, 8vw, 110px); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-soft); max-width: 60ch; line-height: 1.7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1.05em 1.9em;
  border-radius: 100px;
  transition: all 0.45s var(--ease);
  white-space: nowrap;
}
.btn .arr { transition: transform 0.45s var(--ease); display: inline-block; }
.btn:hover .arr { transform: translateX(4px); }

.btn--gold { background: var(--gold); color: var(--ivory); }
.btn--gold:hover { background: var(--charcoal); color: var(--ivory); }

.btn--dark { background: var(--charcoal); color: var(--ivory); }
.btn--dark:hover { background: var(--gold); color: var(--ivory); }

.btn--ghost { border: 1px solid var(--line); color: var(--text); }
.btn--ghost:hover { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

.btn--outline-lt { border: 1px solid rgba(246,241,230,0.45); color: var(--ivory); }
.btn--outline-lt:hover { background: var(--ivory); color: var(--charcoal); border-color: var(--ivory); }

.btn--lt { background: var(--ivory); color: var(--charcoal); }
.btn--lt:hover { background: var(--gold); color: var(--ivory); }

/* link with animated underline */
.tlink { position: relative; font-weight: 500; }
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); transform-origin: left; }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding-block: 22px;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 500; letter-spacing: -0.01em;
  color: var(--ivory); transition: color 0.4s var(--ease);
}
.brand .dot { color: var(--gold); }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.nav a {
  font-size: 0.82rem; letter-spacing: 0.06em; font-weight: 500;
  color: rgba(246,241,230,0.82); transition: color 0.3s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--ivory); }
.nav a.active { color: var(--gold-lt); }

.head-cta { display: flex; align-items: center; gap: 14px; }

/* scrolled / solid header */
.site-head.solid {
  background: rgba(21,20,14,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 14px;
  border-bottom-color: rgba(246,241,230,0.1);
}

/* light header variant for inner pages (used on scroll) keeps same scheme */
.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; padding: 6px 0; }
.menu-toggle span { height: 1.5px; background: var(--ivory); border-radius: 2px; transition: 0.35s var(--ease); }

/* mobile: hide desktop nav, show hamburger */
@media (max-width: 920px){
  .nav { display: none; }
  .head-cta .btn--outline-lt { display: none; }
  .menu-toggle { display: flex; }
}

/* mobile nav panel */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--charcoal);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gut);
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-display); font-size: clamp(1.8rem, 8vw, 2.8rem);
  color: var(--ivory); padding-block: 0.28em;
  border-bottom: 1px solid rgba(246,241,230,0.12);
  transition: color 0.3s, padding-left 0.4s var(--ease);
}
.mobile-nav a:hover { color: var(--gold-lt); padding-left: 14px; }
.mobile-nav .m-cta { margin-top: 32px; width: 100%; justify-content: center; padding-inline: 1.2em; letter-spacing: 0.1em; }

/* =====================================================================
   IMAGE PLACEHOLDERS — mood gradients + caption
   (swap background-image to drop in real photography)
   ===================================================================== */
.ph {
  position: relative; overflow: hidden;
  background-color: var(--slate);
  background-image: var(--grad, linear-gradient(160deg,#27405e 0%,#9fc0d8 100%));
  background-size: cover; background-position: center;
  border-radius: var(--radius);
  isolation: isolate;
}
.ph::after { /* grain texture */
  content: ""; position: absolute; inset: 0; z-index: 1;
  opacity: 0.5; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.ph__cap {
  position: absolute; left: 14px; bottom: 14px; z-index: 3;
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: rgba(21,20,14,0.42);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 7px 12px; border-radius: 100px;
  max-width: calc(100% - 28px);
  display: inline-flex; align-items: center; gap: 7px;
}
.ph__cap::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-lt); flex: none; }

/* mood variants */
.ph--mountain  { --grad: linear-gradient(170deg,#243748 0%,#3c5366 32%,#7d8a8e 60%,#c8cdc7 88%,#e7e3d8 100%); }
.ph--peak      { --grad: linear-gradient(165deg,#1b2a3a 0%,#33475a 42%,#9aa1a0 70%,#d7d8cf 100%); }
.ph--desert    { --grad: linear-gradient(165deg,#3a2e1d 0%,#9c7c46 35%,#cda86a 62%,#e6cf9e 88%,#f1e4c4 100%); }
.ph--city      { --grad: linear-gradient(160deg,#161c24 0%,#2c3a48 40%,#46596b 70%,#8a96a1 100%); }
.ph--market    { --grad: linear-gradient(160deg,#2c1d14 0%,#7c4a2c 35%,#b5793f 62%,#d9a45c 100%); }
.ph--hotel     { --grad: linear-gradient(160deg,#221f17 0%,#3b4339 38%,#6f6a52 68%,#bdae8e 100%); }
.ph--coast     { --grad: linear-gradient(165deg,#16242b 0%,#2e4f57 38%,#4d8088 66%,#aecbc6 100%); }
.ph--europe    { --grad: linear-gradient(160deg,#23211c 0%,#4a4438 40%,#8a7f64 70%,#cfc3a2 100%); }
.ph--korea     { --grad: linear-gradient(160deg,#1b1f29 0%,#3a4253 42%,#6e7283 72%,#bdb3b8 100%); }
.ph--business  { --grad: linear-gradient(160deg,#13161b 0%,#283440 45%,#3f5161 78%,#737f8a 100%); }
.ph--brazil    { --grad: linear-gradient(160deg,#16261b 0%,#2f5236 38%,#6e8a3f 64%,#c9b25a 100%); }
.ph--green     { --grad: linear-gradient(160deg,#1b241d 0%,#36463b 42%,#5f6f54 72%,#aab491 100%); }
.ph--dusk      { --grad: linear-gradient(165deg,#1a1c26 0%,#3a3550 30%,#7a5360 58%,#c98f63 82%,#e6c089 100%); }

/* hero photo layer */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-color: var(--charcoal);
  background-image: var(--grad, none);
  background-size: cover; background-position: center;
}
.hero-bg::after { /* grain */
  content: ""; position: absolute; inset: 0; opacity: 0.35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: var(--ivory); overflow: hidden;
  padding-bottom: clamp(48px, 8vh, 96px);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(21,20,14,0.55) 0%, rgba(21,20,14,0.15) 35%, rgba(21,20,14,0.35) 70%, rgba(21,20,14,0.85) 100%),
    linear-gradient(90deg, rgba(21,20,14,0.45) 0%, rgba(21,20,14,0) 55%);
}
.hero__ghost {
  position: absolute; top: clamp(80px, 13vh, 150px); left: 0; right: 0; z-index: 1;
  text-align: center;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(4rem, 19vw, 19rem);
  letter-spacing: 0.02em; line-height: 0.8;
  color: rgba(246,241,230,0.1);
  background: linear-gradient(180deg, rgba(246,241,230,0.20), rgba(246,241,230,0.02));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none; user-select: none;
  white-space: nowrap;
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__eyebrow { color: var(--gold-lt); }
.hero__eyebrow::before { background: var(--gold-lt); }
.hero h1 {
  font-size: clamp(2.8rem, 8.5vw, 6.4rem);
  margin: 0.4em 0 0.32em;
  max-width: 16ch;
  text-shadow: 0 2px 40px rgba(0,0,0,0.25);
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  max-width: 54ch; color: rgba(246,241,230,0.9); line-height: 1.65;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* inner-page hero (shorter) */
.hero--page { min-height: 78svh; }
.hero--page h1 { max-width: 20ch; }

/* hero entrance animation */
.reveal-up { opacity: 0; transform: translateY(26px); }
.loaded .hero .reveal-up { animation: heroUp 1s var(--ease) forwards; }
.loaded .hero .d1 { animation-delay: 0.1s; }
.loaded .hero .d2 { animation-delay: 0.24s; }
.loaded .hero .d3 { animation-delay: 0.38s; }
.loaded .hero .d4 { animation-delay: 0.52s; }
@keyframes heroUp { to { opacity: 1; transform: translateY(0); } }

/* =====================================================================
   SCROLL REVEAL (sections)
   ===================================================================== */
.io { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.io.in { opacity: 1; transform: none; }
.io.d1 { transition-delay: 0.08s; }
.io.d2 { transition-delay: 0.16s; }
.io.d3 { transition-delay: 0.24s; }
.io.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .io { opacity: 1; transform: none; transition: none; }
  .reveal-up { opacity: 1; transform: none; }
}

/* =====================================================================
   SECTION HEADINGS
   ===================================================================== */
.sec-head { max-width: var(--maxw); }
.sec-head h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); margin-top: 0.5em; max-width: 18ch; }
.sec-head h2 em { font-style: italic; color: var(--gold); }
.sec-head .lede { margin-top: 1.1em; }
.sec-head--split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: end; }
@media (max-width: 820px){ .sec-head--split { grid-template-columns: 1fr; gap: 18px; } }

/* =====================================================================
   INTRO / STATEMENT
   ===================================================================== */
.statement {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.7rem); line-height: 1.22;
  letter-spacing: -0.01em; max-width: 26ch;
}
.statement em { font-style: italic; color: var(--gold); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,90px); align-items: center; }
@media (max-width: 880px){ .intro-grid { grid-template-columns: 1fr; gap: 34px; } }

/* =====================================================================
   CARDS — What We Do / Styles
   ===================================================================== */
.cards { display: grid; gap: 24px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){ .cards--3, .cards--4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .cards--3, .cards--4, .cards--2 { grid-template-columns: 1fr; } }

.card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px); background: rgba(255,255,255,0.35);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -28px rgba(21,20,14,0.4); background: #fff; }
.card__num {
  font-family: var(--font-display); font-size: 0.95rem; color: var(--gold);
  letter-spacing: 0.06em; display: block; margin-bottom: 20px;
}
.card h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: 14px; }
.card p { color: var(--text-soft); font-size: 0.98rem; line-height: 1.65; }
.card__icon {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gold);
  display: grid; place-items: center; margin-bottom: 22px; color: var(--gold);
}

/* style cards (with thin top rule + index) */
.style-card { border-top: 1px solid var(--line); padding-top: 26px; }
.style-card .idx { font-family: var(--font-display); color: var(--gold); font-size: 0.9rem; letter-spacing:0.1em; }
.style-card h3 { font-size: clamp(1.25rem,2vw,1.6rem); margin: 16px 0 10px; }
.style-card p { color: var(--text-soft); font-size: 0.95rem; }

/* =====================================================================
   DESTINATIONS GRID
   ===================================================================== */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1080px){ .dest-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .dest-grid { grid-template-columns: 1fr; } }

.dest {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 380px; display: flex; align-items: flex-end; color: var(--ivory);
  isolation: isolate;
}
.dest .ph { position: absolute; inset: 0; border-radius: 0; transition: transform 0.9s var(--ease); }
.dest:hover .ph { transform: scale(1.07); }
.dest::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(21,20,14,0) 30%, rgba(21,20,14,0.4) 60%, rgba(21,20,14,0.9) 100%);
}
.dest__body { position: relative; z-index: 3; padding: 26px; }
.dest__body h3 { font-size: 1.35rem; margin-bottom: 8px; }
.dest__body p { font-size: 0.85rem; color: rgba(246,241,230,0.82); line-height: 1.55; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.6s var(--ease), opacity 0.5s var(--ease), margin 0.6s var(--ease); }
.dest:hover .dest__body p { max-height: 200px; opacity: 1; }
.dest__tag { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-lt); font-weight: 600; }
.dest .ph__cap { display: none; }

/* large feature dest (destinations page) */
.dest-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,72px); align-items: center; }
.dest-feature:nth-child(even) .dest-feature__media { order: 2; }
@media (max-width: 880px){
  .dest-feature { grid-template-columns: 1fr; gap: 28px; }
  .dest-feature:nth-child(even) .dest-feature__media { order: 0; }
}
.dest-feature__media { min-height: 440px; border-radius: var(--radius); overflow: hidden; }
.dest-feature__media .ph { height: 100%; min-height: 440px; }
.dest-feature h3 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 22px; }
.df-row { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.df-row dt { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; padding-top: 3px; }
.df-row dd { color: var(--text-soft); font-size: 0.98rem; }
@media (max-width:480px){ .df-row { grid-template-columns: 1fr; gap: 4px; } }

/* =====================================================================
   WHY / STATS
   ===================================================================== */
.why { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px,6vw,84px); align-items: center; }
@media (max-width: 900px){ .why { grid-template-columns: 1fr; gap: 36px; } }
.why__media { min-height: 480px; border-radius: var(--radius); overflow:hidden; }
.why__media .ph { height: 100%; min-height: 480px; }
.checklist li {
  display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line);
  font-size: 1.05rem; align-items: flex-start;
}
.checklist li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 3px;
  border-radius: 50%; border: 1px solid var(--gold);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23B0894A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.stat-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
@media (max-width: 720px){ .stat-strip { grid-template-columns: repeat(2,1fr); } }
.stat { padding: clamp(28px,4vw,46px) 0; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
@media (max-width:720px){ .stat:nth-child(2){border-right:none} .stat:nth-child(1),.stat:nth-child(2){border-bottom:1px solid var(--line)} }
.stat__n { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.6rem); color: var(--charcoal); line-height: 1; }
.stat__n em { font-style: normal; color: var(--gold); }
.stat__l { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-soft); margin-top: 12px; font-weight: 600; }

/* =====================================================================
   DARK SECTIONS
   ===================================================================== */
.dark { background: var(--charcoal); color: var(--ivory); }
.dark .lede { color: rgba(246,241,230,0.74); }
.dark .sec-head h2 em { color: var(--gold-lt); }
.dark .eyebrow { color: var(--gold-lt); }
.dark .eyebrow::before { background: var(--gold-lt); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; color: var(--ivory); }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; background-image: var(--grad, none); }
.cta-band__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(21,20,14,0.78), rgba(21,20,14,0.86)); }
.cta-band__inner { position: relative; z-index: 2; text-align: center; padding-block: clamp(80px,12vw,150px); }
.cta-band h2 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); max-width: 18ch; margin: 0.4em auto 0.5em; }
.cta-band h2 em { font-style: italic; color: var(--gold-lt); }
.cta-band p { max-width: 56ch; margin: 0 auto 36px; color: rgba(246,241,230,0.85); font-size: 1.08rem; }
.cta-band .hero__eyebrow { color: var(--gold-lt); }

/* =====================================================================
   PROCESS / STEPS
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--line); }
@media (max-width: 900px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .steps { grid-template-columns: 1fr; } }
.step { padding: 36px clamp(20px,2.4vw,34px) 36px 0; border-right: 1px solid var(--line); }
.step:last-child { border-right: none; }
@media (max-width:900px){ .step:nth-child(2){border-right:none} }
.step__n { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); line-height:1; }
.step h3 { font-size: 1.3rem; margin: 18px 0 10px; }
.step p { color: var(--text-soft); font-size: 0.95rem; }

/* services list */
.svc-grid { columns: 2; column-gap: clamp(30px,5vw,80px); }
@media (max-width: 620px){ .svc-grid { columns: 1; } }
.svc-grid li {
  break-inside: avoid; padding: 16px 0; border-bottom: 1px solid var(--line);
  display: flex; gap: 14px; align-items: baseline; font-size: 1.02rem;
}
.svc-grid li::before { content: "—"; color: var(--gold); flex: none; }

/* =====================================================================
   HOSTED TRIP CARDS
   ===================================================================== */
.trip { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 360px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background:#fff; }
.trip:nth-child(even) .trip__media { order: 2; }
@media (max-width: 760px){ .trip { grid-template-columns: 1fr; } .trip:nth-child(even) .trip__media { order: 0; } }
.trip__media { min-height: 300px; }
.trip__media .ph { height: 100%; min-height: 300px; border-radius: 0; }
.trip__body { padding: clamp(28px,3.4vw,46px); display: flex; flex-direction: column; justify-content: center; }
.trip__body .num { color: var(--gold); font-family: var(--font-display); letter-spacing: 0.1em; }
.trip__body h3 { font-size: clamp(1.5rem,2.6vw,2.1rem); margin: 12px 0 14px; }
.trip__body p { color: var(--text-soft); }

/* =====================================================================
   ABOUT
   ===================================================================== */
.founder { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px,6vw,80px); align-items: center; }
@media (max-width:880px){ .founder { grid-template-columns: 1fr; gap: 34px; } }
.founder__media { min-height: 540px; border-radius: var(--radius); overflow:hidden; }
.founder__media .ph { height: 100%; min-height: 540px; }
.founder blockquote {
  font-family: var(--font-display); font-size: clamp(1.3rem,2.4vw,1.9rem);
  line-height: 1.35; margin: 0 0 26px; letter-spacing: -0.01em;
}
.founder blockquote::before { content: "“"; color: var(--gold); font-size: 1.4em; line-height: 0; vertical-align: -0.3em; margin-right: 0.06em; }
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 720px){ .values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px){ .values { grid-template-columns: 1fr; } }
.value { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.value h4 { font-size: 1.15rem; margin-bottom: 8px; }
.value p { color: var(--text-soft); font-size: 0.92rem; }

/* =====================================================================
   CONTACT FORM
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px,6vw,80px); }
@media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-aside h2 { font-size: clamp(1.8rem,3.4vw,2.6rem); margin-bottom: 22px; }
.contact-aside .lede { margin-bottom: 30px; }
.contact-meta { border-top: 1px solid var(--line); padding-top: 24px; }
.contact-meta div { padding: 12px 0; }
.contact-meta .k { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.contact-meta .v { font-size: 1.05rem; }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form .full { grid-column: 1 / -1; }
@media (max-width: 560px){ .form { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--text-soft); margin-bottom: 9px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,137,74,0.14);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23B0894A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.radio-row { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 4px; }
.radio-row label { display: flex; align-items: center; gap: 8px; text-transform: none; letter-spacing: 0; font-size: 0.95rem; color: var(--text); font-weight: 500; cursor: pointer; margin: 0; }
.radio-row input { width: auto; accent-color: var(--gold); }
.form-note { font-size: 0.85rem; color: var(--text-soft); margin-top: 6px; }
.form-success { background: var(--forest); color: var(--ivory); padding: 20px 24px; border-radius: var(--radius); display: none; }
.form-success.show { display: block; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-foot { background: var(--charcoal); color: var(--ivory); padding-block: clamp(60px,8vw,96px) 36px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(246,241,230,0.12); }
@media (max-width: 760px){ .foot-top { grid-template-columns: 1fr; gap: 34px; } }
.foot-brand .brand { font-size: 2rem; }
.foot-brand p { color: rgba(246,241,230,0.6); margin-top: 14px; max-width: 34ch; font-family: var(--font-display); font-size: 1.2rem; font-style: italic; }
.foot-col h4 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.foot-col a { display: block; padding: 7px 0; color: rgba(246,241,230,0.74); font-size: 0.95rem; transition: color 0.3s, padding-left 0.3s var(--ease); }
.foot-col a:hover { color: var(--ivory); padding-left: 6px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding-top: 28px; flex-wrap: wrap; }
.foot-bottom p { color: rgba(246,241,230,0.5); font-size: 0.82rem; }
.foot-bottom .links { display: flex; gap: 24px; }
.foot-bottom .links a { color: rgba(246,241,230,0.6); font-size: 0.82rem; }
.foot-bottom .links a:hover { color: var(--ivory); }

/* =====================================================================
   PAGE INTRO HELPERS
   ===================================================================== */
.alt { background: var(--ivory-2); }
.divider-label { display:flex; align-items:center; gap:18px; margin-bottom: 40px; }
.divider-label span { font-size:0.72rem; letter-spacing:0.24em; text-transform:uppercase; color:var(--gold); font-weight:700; }
.divider-label::after { content:""; flex:1; height:1px; background:var(--line); }

/* =====================================================================
   LUXURY + MOTION ENHANCEMENTS
   ===================================================================== */

/* --- Cinematic hero scene (homepage) --- */
.hero-scene { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-mountains {
  width: 100%; height: 100%; display: block;
  transform-origin: 58% 62%;
  animation: heroDrift 30s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.05); }
  to   { transform: scale(1.16) translateY(-1.4%); }
}

/* cinematic vignette over hero */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(125% 95% at 50% 28%, transparent 52%, rgba(9,8,5,0.55) 100%);
}

/* --- Hero scroll cue --- */
.hero__cue {
  position: absolute; left: 50%; bottom: 30px; z-index: 3;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(246,241,230,0.7);
  font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600;
  transition: color 0.4s var(--ease);
}
.hero__cue:hover { color: var(--ivory); }
.hero__cue-line { width: 1px; height: 46px; background: linear-gradient(rgba(246,241,230,0.7), rgba(246,241,230,0)); position: relative; overflow: hidden; }
.hero__cue-line::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%;
  background: var(--gold-lt); animation: cueRun 2.4s var(--ease) infinite;
}
@keyframes cueRun { 0% { transform: translateY(-100%); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(280%); opacity: 0; } }

/* --- Ghost wordmark slow shimmer --- */
.hero__ghost {
  background: linear-gradient(100deg,
    rgba(246,241,230,0.05) 0%, rgba(246,241,230,0.10) 38%,
    rgba(203,165,103,0.32) 50%, rgba(246,241,230,0.10) 62%, rgba(246,241,230,0.05) 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ghostShimmer 9s ease-in-out infinite alternate;
}
@keyframes ghostShimmer { from { background-position: 12% 0; } to { background-position: 88% 0; } }

/* --- Richer scroll reveal: gentle blur + lift --- */
.io { transform: translateY(42px); filter: blur(7px); transition: opacity 1.05s var(--ease), transform 1.05s var(--ease), filter 1.05s var(--ease); }
.io.in { filter: blur(0); }

/* --- Button sheen on hover --- */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-22deg); pointer-events: none;
}
.btn:hover::before { animation: sheen 0.95s var(--ease); }
@keyframes sheen { from { left: -130%; } to { left: 160%; } }

/* --- Card heading underline draw on hover --- */
.card h3 {
  display: inline-block;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat;
  padding-bottom: 3px; transition: background-size 0.55s var(--ease);
}
.card:hover h3 { background-size: 100% 1px; }
.card:hover { box-shadow: 0 30px 60px -30px rgba(21,20,14,0.5); }

/* --- Stat count-up baseline --- */
.stat__n .num { font-variant-numeric: tabular-nums; }

/* --- Destination card: refined caption lift + image ease already present --- */
.dest__body h3 { transition: transform 0.6s var(--ease); }
.dest:hover .dest__body h3 { transform: translateY(-2px); }

/* --- Reduced motion guards --- */
@media (prefers-reduced-motion: reduce) {
  .hero-mountains { animation: none; transform: none; }
  .hero__ghost { animation: none; }
  .hero__cue-line::after { animation: none; }
  .io { filter: none; transform: none; transition: none; }
  .btn:hover::before { animation: none; }
}

/* --- Photo hero (homepage real image) --- */
.hero--photo .hero-bg {
  animation: heroDrift 32s ease-in-out infinite alternate;
  transform-origin: 50% 42%;
  will-change: transform;
}
.hero--photo .hero__overlay {
  background:
    linear-gradient(180deg, rgba(10,11,15,0.50) 0%, rgba(10,11,15,0.10) 30%, rgba(10,11,15,0.38) 60%, rgba(10,11,15,0.90) 100%),
    linear-gradient(90deg, rgba(10,11,15,0.60) 0%, rgba(10,11,15,0) 60%);
}
@media (prefers-reduced-motion: reduce) {
  .hero--photo .hero-bg { animation: none; transform: none; }
}

/* =====================================================================
   v2 UPDATES — header clearance, vibrancy, parallax
   ===================================================================== */

/* --- Fix: inner-page hero content clearing the fixed header --- */
.hero--page { min-height: 84svh; padding-top: 134px; }
@media (max-width: 600px){ .hero--page { padding-top: 110px; } }

/* --- More vibrant mood gradients (placeholders + photo-ready slots) --- */
.ph--mountain  { --grad: linear-gradient(165deg,#15324f 0%,#2f6f9e 42%,#7fb4d4 72%,#e2edf2 100%); }
.ph--peak      { --grad: linear-gradient(165deg,#102a44 0%,#27577e 40%,#6f9ac0 70%,#e0eaf0 100%); }
.ph--desert    { --grad: linear-gradient(160deg,#5a2f12 0%,#c47a2a 40%,#e8b25a 70%,#f6dfa6 100%); }
.ph--city      { --grad: linear-gradient(160deg,#0d1320 0%,#27405e 42%,#4f7ba4 74%,#a9cae0 100%); }
.ph--market    { --grad: linear-gradient(160deg,#3a1410 0%,#a23f1f 38%,#d98a35 68%,#f3c977 100%); }
.ph--hotel     { --grad: linear-gradient(160deg,#1a2a1f 0%,#3f6b4a 40%,#ad9352 70%,#ecd9a4 100%); }
.ph--coast     { --grad: linear-gradient(165deg,#06303b 0%,#157f87 40%,#48bcb3 70%,#c3ece2 100%); }
.ph--europe    { --grad: linear-gradient(160deg,#213838 0%,#3f7a6e 40%,#9bb78c 70%,#e6dcb6 100%); }
.ph--korea     { --grad: linear-gradient(160deg,#181c38 0%,#46306b 42%,#a8456f 72%,#e88f6c 100%); }
.ph--business  { --grad: linear-gradient(160deg,#0b1422 0%,#23415e 44%,#3f7099 76%,#a3c6dd 100%); }
.ph--brazil    { --grad: linear-gradient(160deg,#0b3b2d 0%,#1f7a5a 38%,#5fb878 66%,#ecce55 100%); }
.ph--green     { --grad: linear-gradient(160deg,#0d2e1c 0%,#1f6b3a 42%,#5fae5f 72%,#d2e2a4 100%); }
.ph--dusk      { --grad: linear-gradient(165deg,#231540 0%,#6a2f6a 34%,#c05a4f 64%,#eaac5e 100%); }
/* domestic moods */
.ph--dc        { --grad: linear-gradient(160deg,#11203a 0%,#2f4f7a 42%,#7f9ec4 72%,#e9e5d8 100%); }
.ph--chicago   { --grad: linear-gradient(160deg,#0d1c2c 0%,#235a7a 42%,#4f9ab0 72%,#d2e6e2 100%); }
.ph--seattle   { --grad: linear-gradient(160deg,#11242a 0%,#2a5560 42%,#5f97a0 72%,#e1ece8 100%); }
.ph--nyc       { --grad: linear-gradient(160deg,#141322 0%,#3a3050 42%,#8a5a6a 70%,#e6ab6c 100%); }
.ph--sf        { --grad: linear-gradient(160deg,#2a1620 0%,#8a3f3a 40%,#d98a5a 70%,#f3d3a4 100%); }
.ph--nola      { --grad: linear-gradient(160deg,#1b1230 0%,#5a2f5a 40%,#a85f4f 70%,#ebc46e 100%); }

/* richer caption dot for vibrancy */
.ph__cap::before { background: linear-gradient(90deg,var(--gold-lt),#e08a6a); }

/* --- Scroll parallax for showcase images --- */
.media-pllx { position: relative; overflow: hidden; }
.media-pllx > .ph {
  position: absolute; top: -14%; left: 0; width: 100%; height: 128%;
  min-height: 0; border-radius: 0; will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .media-pllx > .ph { position: absolute; top: 0; height: 100%; transform: none !important; }
}

/* parallax containers (auto-applied to showcase media) */
.dest-feature__media, .why__media, .founder__media, .trip__media { position: relative; overflow: hidden; }
.dest-feature__media > .ph, .why__media > .ph, .founder__media > .ph, .trip__media > .ph {
  position: absolute; top: -14%; left: 0; width: 100%; height: 128%;
  min-height: 0; border-radius: 0; will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .dest-feature__media > .ph, .why__media > .ph, .founder__media > .ph, .trip__media > .ph {
    position: absolute; top: 0; height: 100%; transform: none !important;
  }
}
