/* ============================================================
   Incredible Luxury Holidays — B2B Portal
   ============================================================ */

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--midnight);
  color: var(--ivory);
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section { padding: 110px 0; position: relative; }
.section + .section { border-top: 1px solid var(--gold-border); }

/* tunable tweak vars (overwritten by panel) */
:root {
  --motion: 1;
  --hero-scale: 1;
  --card-bg: var(--midnight);
}

/* ---------- section header ---------- */
.sec-head { margin-bottom: 56px; max-width: 720px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .section-rule { margin-left: auto; margin-right: auto; }
.sec-head .section-title { font-size: 46px; }
.sec-head p.lead {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic;
  color: var(--text-muted); font-size: 22px; line-height: 1.5; margin: 22px 0 0; max-width: 560px;
}
.sec-head.center p.lead { margin-left: auto; margin-right: auto; }

/* ============================================================
   NAVBAR — floating pill
   ============================================================ */
.navbar {
  position: fixed; top: 16px; left: 24px; right: 24px; z-index: 200;
  max-width: var(--max-width); margin: 0 auto; height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px 0 22px;
  background: rgba(var(--hero-wash-rgb), 0.62);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  box-shadow: 0 16px 44px -22px rgba(6,14,26,0.45);
  transition: background .4s ease, box-shadow .4s ease, top .4s ease;
}
.navbar.scrolled {
  background: rgba(var(--hero-wash-rgb), 0.9);
  top: 10px;
  box-shadow: 0 18px 50px -20px rgba(6,14,26,0.5);
}
.nav-logo {
  cursor: pointer; display: flex; align-items: center; gap: 12px;
}
.logo-mark { width: 58px; height: 48px; overflow: hidden; display: block; flex: none; }
.logo-mark img { width: 58px; height: auto; display: block; object-fit: cover; object-position: top; }
.logo-word {
  display: flex; flex-direction: column; gap: 3px;
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ivory); line-height: 1; white-space: nowrap;
}
.logo-word em { color: var(--gold); font-style: normal; }
.logo-word .lw-2 { letter-spacing: 0.46em; font-size: 12px; color: var(--text-muted); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-link {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); cursor: pointer; transition: color .3s; position: relative; padding: 4px 0;
}
.nav-link::after {
  content:''; position:absolute; left:0; bottom:-2px; height:1px; width:100%;
  background: var(--gold); transform: scaleX(0); transform-origin:left; transition: transform .3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta { padding: 11px 24px !important; }
.nav-toggle { display:none; }

/* ============================================================
   HERO — Editorial Split (Direction A)
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  padding-top: var(--nav-height); overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-inner { flex: 1; display: flex; max-width: var(--max-width); margin: 0 auto; width: 100%; padding: 0 40px; }
.hero-left {
  flex: 1.05; display: flex; flex-direction: column; justify-content: center;
  padding: 60px 40px 60px 0; max-width: 580px;
  position: relative; z-index: 2;
}
.hero-left h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; color: var(--ivory);
  font-size: calc(60px * var(--hero-scale)); line-height: 1.0; letter-spacing: 0.005em; margin: 0;
}
.hero-left h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic;
  color: var(--text-muted); font-size: 22px; line-height: 1.5; margin: 28px 0 40px; max-width: 460px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* hero full-bleed living image */
.hero-bg {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  z-index: 0; overflow: hidden; will-change: transform; cursor: pointer;
}
.hero-slides { position:absolute; inset:0; }
.hero-slides .hs {
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0; transition: opacity 1.6s ease;
}
.hero-slides .hs.active { opacity:1; }
@media (prefers-reduced-motion: no-preference) {
  .hero-slides .hs.active { animation: kenburns 9s ease-in-out forwards; }
}
@keyframes kenburns { 0%{transform:scale(1.04)} 100%{transform:scale(1.14)} }
.hero-bg-wash {
  position:absolute; inset:0; pointer-events:none; z-index: 2;
  /* Full-bleed: dark overlay on the left (content area), clear on the right */
  background:
    linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.62) 38%, rgba(0,0,0,0.18) 62%, rgba(0,0,0,0) 78%),
    linear-gradient(to top,   rgba(0,0,0,0.55) 0%, rgba(0,0,0,0)    22%),
    linear-gradient(to bottom,rgba(0,0,0,0.35) 0%, rgba(0,0,0,0)    18%);
}
.hero-bg-scrim {
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background: rgba(6,14,26,0); transition: background .4s ease;
}
.hero-bg:hover .hero-bg-scrim { background: rgba(6,14,26,0.26); }
.hero-explore {
  position:absolute; left:70%; top:48%; z-index:3;
  transform:translate(-50%,-50%) translateY(12px); opacity:0; pointer-events:none; cursor:pointer;
  background: var(--gold); color: var(--midnight); border:none;
  font-family:'Montserrat',sans-serif; font-size:10.5px; font-weight:700; letter-spacing:0.18em; text-transform:uppercase;
  padding:16px 30px; border-radius:10px; box-shadow:0 18px 40px -16px rgba(0,0,0,0.6);
  display:inline-flex; align-items:center; gap:9px;
  transition: opacity .4s ease, transform .4s cubic-bezier(.2,.8,.2,1);
}
.hero-explore span { transition: transform .3s ease; }
.hero-bg:hover .hero-explore { opacity:1; transform:translate(-50%,-50%); }
.hero-bg:hover .hero-explore span { transform: translateX(4px); }
.hero-cap {
  position:absolute; right:34px; bottom:150px; z-index:3;
  display:inline-flex; align-items:center; gap:11px;
  font-size:12px; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:#fff;
  background: rgba(6,14,26,0.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border:1px solid rgba(255,255,255,0.28); border-radius:999px; padding:11px 20px;
  text-shadow:0 1px 10px rgba(0,0,0,0.35);
}
.hero-cap::before { content:''; width:8px; height:8px; border-radius:50%; background:var(--gold); display:inline-block; box-shadow:0 0 0 4px rgba(193,155,72,0.25); }

/* floating accent cards over the image */
.hero-right { flex: 1; position: relative; z-index: 2; display: flex; align-items: center; justify-content: flex-end; padding-right: 5%; pointer-events: none; }

/* full-width stat band — dark glass over the full-bleed image */
.hero-statbar {
  position: relative; z-index: 2; width: 100%;
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-statbar .statband { border: none; }
.hero-statbar .sb { padding: 22px 26px; gap: 7px; }
.hero-statbar .sb-num { font-size: 33px; color: var(--gold) !important; }
.hero-statbar .sb-label { font-size: 10.5px; letter-spacing: 0.04em; color: rgba(250,246,238,0.75) !important; }
.hero-statbar .sb + .sb::before { height: 44px; background: rgba(255,255,255,0.15) !important; }
.statband-section { padding: 0; }
.statband {
  display: flex;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.sb {
  flex: 1; padding: 54px 30px; position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 13px; text-align: center;
}
.sb + .sb::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 74px; background: var(--gold-border);
}
.sb-num {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 58px; line-height: 1;
  color: var(--ivory); letter-spacing: -0.015em; display: flex; align-items: baseline;
}
.sb-num em { color: var(--gold); font-style: normal; font-size: 0.7em; margin-left: 2px; }
.sb-label {
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em; color: var(--text-muted);
}
.float-card {
  position: absolute; will-change: transform; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.55); transition: transform .25s cubic-bezier(.2,.8,.2,1);
  border-radius: var(--r-card); box-shadow: 0 24px 60px -28px rgba(0,0,0,0.55);
}
.float-card .ph-label { font-size: 8.5px; }
.float-card img { width:100%; height:100%; object-fit:cover; display:block; }
.fc-cap { position:absolute; left:0; right:0; bottom:0; z-index:2; font-size:8px; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:#fff; background:linear-gradient(to top, rgba(5,11,20,0.85), transparent); padding:18px 12px 9px; }
.fc-b { width: 210px; height: 264px; bottom: 12%; right: 30%; top:auto; }
.fc-c {
  width: 156px; height: 188px; top: 8%; right: 4%; background: rgba(6,14,26,0.82); backdrop-filter: blur(4px);
  border-color: var(--gold); display:flex; align-items:center; justify-content:center; text-align:center;
}
.fc-c .bm-num { font-family:'Cormorant Garamond',serif; font-size:46px; font-weight:300; color:var(--gold); line-height:1; }
.fc-c .bm-lbl { font-size:8px; letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.7); margin-top:6px; }

/* stat bar */
.stat-bar {
  display: flex; border-top: 1px solid var(--gold-border);
  max-width: var(--max-width); margin: 0 auto; width: 100%;
}
.stat { flex: 1; padding: 30px 40px; border-left: 1px solid var(--gold-border); display: flex; flex-direction: column; gap: 8px; }
.stat:first-child { border-left: none; padding-left: 40px; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 44px; line-height: 1; color: var(--ivory); }
.stat-num em { color: var(--gold); font-style: normal; font-size: 28px; }
.stat-label { font-size: 8.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }

/* scroll cue */
.scroll-cue { position:absolute; bottom: 42px; right: 48px; display:flex; flex-direction:column; align-items:center; gap:10px; z-index:4; }
.scroll-cue span { font-size:8px; letter-spacing:0.3em; text-transform:uppercase; color:var(--text-dim); writing-mode: vertical-rl; }
.scroll-cue .line { width:1px; height:48px; background: linear-gradient(var(--gold), transparent); }

/* ============================================================
   DESTINATIONS GRID
   ============================================================ */
.dest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dest-card {
  position: relative; overflow: hidden; cursor: pointer;
  min-height: 340px; display: flex; align-items: flex-end;
  background: var(--deep-navy); border-radius: var(--r-card);
}
.dest-img-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
.dest-card:hover .dest-img-bg { transform: scale(1.07); }
.dest-overlay {
  position: absolute; inset: 0; transition: opacity .4s;
  background: linear-gradient(to top, rgba(5,11,20,0.93) 0%, rgba(5,11,20,0.55) 42%, rgba(5,11,20,0.12) 100%);
}
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(5,11,20,0.95) 0%, rgba(5,11,20,0.45) 55%, rgba(5,11,20,0.15) 100%); }
.dest-content { position: relative; z-index: 2; padding: 30px 28px; width: 100%; }
.dest-num { font-family:'Cormorant Garamond',serif; font-size:46px; font-weight:300; color:rgba(255,255,255,0.32); line-height:1; }
.dest-card:hover .dest-num { color: var(--gold); transition: color .4s; }
.dest-name { font-size:13px; font-weight:700; letter-spacing:0.24em; text-transform:uppercase; color:#fff; margin-top: 10px; }
.dest-tagline { font-family:'Cormorant Garamond',serif; font-weight:300; font-style:italic; font-size:17px; color:rgba(255,255,255,0.78); margin-top:8px; line-height:1.4; }
.dest-explore { font-size:8.5px; font-weight:600; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold); margin-top:16px; display:flex; align-items:center; gap:8px; opacity:0; transform: translateY(6px); transition: all .4s ease; }
.dest-card:hover .dest-explore { opacity:1; transform: translateY(0); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.svc-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:16px; }
.svc-card { background: var(--card-bg); border:1px solid var(--gold-border); border-radius: var(--r-card); position:relative; min-height: 250px; transition: background .4s, border-color .4s, transform .4s cubic-bezier(.2,.8,.2,1); overflow:hidden; }
.svc-card:hover { background: var(--deep-navy); border-color: var(--gold-border); transform: translateY(-5px); }
.svc-img { height: 170px; position:relative; overflow:hidden; background: var(--deep-navy); }
.svc-img img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-img::after { content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(5,11,20,0.55), transparent 60%); pointer-events:none; }
.svc-body { padding: 28px 30px 34px; }
.svc-num { position:absolute; top:14px; right:16px; z-index:2; font-family:'Montserrat',sans-serif; font-size:9px; font-weight:700; letter-spacing:0.2em; color:#fff; background:rgba(5,11,20,0.5); padding:6px 10px; border-radius: var(--r-chip); }
.svc-title { font-family:'Cormorant Garamond',serif; font-weight:400; font-size:26px; color:var(--ivory); margin:0 0 14px; line-height:1.1; }
.svc-desc { font-size:12px; line-height:1.8; color:var(--text-muted); font-weight:400; }
.svc-tags { margin-top:18px; display:flex; flex-wrap:wrap; gap:8px; }
.badge { font-size:8px; font-weight:600; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); border:1px solid rgba(193,155,72,0.3); padding:5px 11px; border-radius: var(--r-chip); }

/* ============================================================
   POPULAR ITINERARIES (signature packages)
   ============================================================ */
.pkg-row { display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.pkg-card { background: var(--card-bg); border:1px solid var(--gold-border); border-radius: var(--r-card); cursor:pointer; overflow:hidden; transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s; will-change: transform; }
.pkg-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.pkg-img { height: 200px; position: relative; overflow: hidden; background: var(--deep-navy); }
.pkg-img img { width:100%; height:100%; object-fit:cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.pkg-card:hover .pkg-img img { transform: scale(1.06); }
.pkg-imgtag { position:absolute; left:0; bottom:0; font-size:8px; letter-spacing:0.16em; text-transform:uppercase; color:rgba(255,255,255,0.9); background:linear-gradient(to top, rgba(5,11,20,0.8), transparent); padding:18px 14px 8px; right:0; }
.pkg-body { padding: 22px 22px 24px; }
.pkg-meta { display:flex; justify-content:space-between; align-items:center; }
.pkg-loc { font-size:8.5px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); }
.pkg-dur { font-size:8.5px; letter-spacing:0.14em; text-transform:uppercase; color:var(--text-muted); }
.pkg-name { font-family:'Cormorant Garamond',serif; font-weight:400; font-size:23px; color:var(--ivory); margin:12px 0 10px; line-height:1.15; }
.pkg-price { font-family:'Cormorant Garamond',serif; font-weight:300; font-size:16px; color:var(--text-muted); }
.pkg-price strong { color:var(--gold); font-weight:400; }

/* ============================================================
   ITINERARY GENERATOR
   ============================================================ */
.builder { display:grid; grid-template-columns: 0.85fr 1.15fr; gap:16px; }
.builder-form { background: var(--card-bg); border:1px solid var(--gold-border); border-radius: var(--r-panel); padding: 44px 42px; }
.builder-output { background: var(--deep-navy); border:1px solid var(--gold-border); border-radius: var(--r-panel); padding: 44px 42px; position:relative; min-height: 560px; }

/* ---- minimal highlight: faint section tint + soft lift + thin accent ---- */
#itinerary { background: rgba(224,123,44,0.045); }
.builder-form, .builder-output { box-shadow: 0 26px 64px -42px rgba(6,14,26,0.4); }
.builder-form { position: relative; border-color: rgba(224,123,44,0.32); }
.builder-form::before {
  content:''; position:absolute; top:0; left:42px; right:42px; height:3px;
  background: var(--gold); border-radius: 0 0 3px 3px;
}

.bf-step { font-size:8.5px; font-weight:700; letter-spacing:0.24em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.bf-label { font-size:9px; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; color:var(--text-muted); margin:26px 0 12px; display:block; }
.bf-label:first-of-type { margin-top: 18px; }

.opt-grid { display:flex; flex-wrap:wrap; gap:8px; }
.opt {
  font-size:9px; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:var(--text-muted);
  border:1px solid var(--gold-border); padding:11px 16px; cursor:pointer; transition: all .25s; background:transparent; font-family:'Montserrat',sans-serif;
  border-radius: var(--r-chip);
}
.opt:hover { border-color: var(--gold); color: var(--ivory); }
.opt.sel { background: var(--gold); color: var(--midnight); border-color: var(--gold); }

.bf-row { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display:flex; flex-direction:column; }
.field input, .field select {
  background: transparent; border:none; border-bottom:1px solid var(--gold-border);
  color: var(--ivory); font-family:'Cormorant Garamond',serif; font-size:18px; padding:10px 0; outline:none; transition: border-color .3s;
  border-radius: 0;
}
.field input::placeholder { color: var(--text-dim); font-style: italic; }
.field input:focus, .field select:focus { border-bottom-color: var(--gold); }
.field select option { background: var(--midnight); color: var(--ivory); }
.field .field-cap { font-size:8px; letter-spacing:0.18em; text-transform:uppercase; color:var(--text-dim); margin-top:6px; }

.stepper { display:flex; align-items:center; border:1px solid var(--gold-border); width:fit-content; border-radius: var(--r-chip); overflow:hidden; }
.trav-group { display:flex; flex-direction:column; }
.trav-row { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0; border-bottom:1px solid var(--gold-line); }
.trav-row:last-child { border-bottom:none; }
.trav-info { display:flex; flex-direction:column; gap:3px; }
.trav-name { font-size:13px; font-weight:600; letter-spacing:0.04em; color:var(--ivory); }
.trav-note { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:13px; color:var(--text-muted); }
.stepper button { background:transparent; border:none; color:var(--gold); width:42px; height:44px; font-size:18px; cursor:pointer; font-family:'Cormorant Garamond',serif; }
.stepper button:hover { background: var(--gold-subtle); }
.stepper .val { font-family:'Cormorant Garamond',serif; font-size:20px; color:var(--ivory); width:54px; text-align:center; }

.btn-generate { margin-top: 34px; width:100%; justify-content:center; padding:17px; }

/* generated itinerary output */
.output-empty { display:flex; flex-direction:column; align-items:center; justify-content:center; height:100%; text-align:center; gap:18px; }
.output-empty .oe-mark { font-family:'Cormorant Garamond',serif; font-size:64px; font-weight:300; color: rgba(193,155,72,0.18); }
.output-empty p { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:19px; color:var(--text-muted); max-width:300px; line-height:1.5; }

.itin { animation: fadeUp .6s both; }
.itin-head { border-bottom:1px solid var(--gold-border); padding-bottom: 22px; margin-bottom: 24px; }
.itin-eyebrow { font-size:8.5px; font-weight:700; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold); }
.itin-title { font-family:'Cormorant Garamond',serif; font-weight:300; font-size:34px; color:var(--ivory); margin:10px 0 6px; line-height:1.05; }
.itin-summary { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:16px; color:var(--text-muted); }
.itin-days { display:flex; flex-direction:column; }
.day { display:grid; grid-template-columns: 64px 1fr; gap:20px; padding: 20px 0; border-bottom:1px solid rgba(193,155,72,0.10); }
.day:last-child { border-bottom:none; }
.day-no { font-family:'Cormorant Garamond',serif; font-weight:300; font-size:15px; color:var(--gold); letter-spacing:0.1em; padding-top:3px; }
.day-no small { display:block; font-family:'Montserrat'; font-size:7.5px; letter-spacing:0.2em; color:var(--text-dim); margin-top:3px; }
.day-title { font-size:10px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--ivory); margin-bottom:8px; }
.day-acts { list-style:none; padding:0; margin:0; }
.day-acts li { font-family:'Cormorant Garamond',serif; font-size:16px; color:var(--text-muted); line-height:1.6; padding-left:16px; position:relative; }
.day-acts li::before { content:'—'; position:absolute; left:0; color:var(--gold); }
.itin-foot { margin-top:24px; padding-top:22px; border-top:1px solid var(--gold-border); display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.itin-est { flex:1; }
.itin-est .el { font-size:8px; letter-spacing:0.2em; text-transform:uppercase; color:var(--text-dim); }
.itin-est .ev { font-family:'Cormorant Garamond',serif; font-size:24px; color:var(--ivory); margin-top:2px; }
.itin-est .ev em { color:var(--gold); font-style:normal; }

/* ============================================================
   QUOTE / CONTACT FORM (capture)
   ============================================================ */
.quote { display:grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items:start; }
.quote-aside h3 { font-family:'Cormorant Garamond',serif; font-weight:300; font-size:40px; color:var(--ivory); line-height:1.05; margin:0 0 20px; }
.quote-aside h3 em { color:var(--gold); font-style:italic; }
.quote-aside p { font-size:12px; line-height:1.9; color:var(--text-muted); max-width:360px; }
.quote-points { list-style:none; padding:0; margin:30px 0 0; }
.quote-points li { font-size:11px; letter-spacing:0.04em; color:var(--text-muted); padding:12px 0 12px 24px; position:relative; border-top:1px solid var(--gold-border); }
.quote-points li::before { content:''; position:absolute; left:0; top:18px; width:7px; height:7px; background:var(--gold); }

.quote-form { border:1px solid var(--gold-border); padding: 6px; border-radius: var(--r-panel); overflow:hidden; }
.qf-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--gold-line); border-radius: calc(var(--r-panel) - 6px); overflow:hidden; }
.qf-field { background: var(--card-bg); padding:18px 22px; transition: background .3s; }
.qf-field.full { grid-column: 1 / -1; }
.qf-field:focus-within { background: var(--deep-navy); }
.qf-field label { font-size:8px; font-weight:600; letter-spacing:0.2em; text-transform:uppercase; color:var(--text-dim); display:block; margin-bottom:6px; }
.qf-field input, .qf-field select, .qf-field textarea {
  width:100%; background:transparent; border:none; outline:none; color:var(--ivory);
  font-family:'Cormorant Garamond',serif; font-size:18px; padding:0; resize:none; border-radius:0;
}
.qf-field input::placeholder, .qf-field textarea::placeholder { color:var(--text-dim); font-style:italic; }
.qf-field select option { background:var(--midnight); }
.qf-submit-row { padding: 22px; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.qf-note { font-size:9px; letter-spacing:0.04em; color:var(--text-dim); max-width:300px; line-height:1.6; }
.qf-attached { font-size:8.5px; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); display:flex; align-items:center; gap:8px; margin-top:6px; }

.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(140px);
  opacity: 0; visibility: hidden; pointer-events: none;
  background: var(--gold); color: var(--midnight); padding: 18px 34px; z-index: 500; max-width: 90vw;
  font-size:9px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase;
  transition: transform .5s cubic-bezier(.2,.9,.2,1), opacity .4s ease, visibility .4s;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; visibility: visible; }

/* ============================================================
   BLOG (light linen section)
   ============================================================ */
.section.light { background: var(--linen); color: var(--midnight); }
.section.light .section-title { color: var(--midnight); }
.section.light .sec-head p.lead { color: rgba(6,14,26,0.55); }
.blog-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.blog-card { cursor:pointer; }
.blog-card .b-img { height: 240px; margin-bottom:20px; position:relative; overflow:hidden; background: var(--deep-navy); border-radius: var(--r-card); }
.blog-card .b-img img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.blog-card:hover .b-img img { transform: scale(1.05); }
.blog-card.feature .b-img { height: 360px; }
.b-img .ph-label { color: rgba(6,14,26,0.4); }
.b-cat { font-size:8.5px; font-weight:700; letter-spacing:0.22em; text-transform:uppercase; color:#9a7b2e; }
.b-title { font-family:'Cormorant Garamond',serif; font-weight:400; font-size:24px; color:var(--midnight); margin:10px 0; line-height:1.2; }
.blog-card.feature .b-title { font-size:34px; }
.b-excerpt { font-size:11.5px; line-height:1.8; color:rgba(6,14,26,0.6); }
.b-meta { font-size:8.5px; letter-spacing:0.14em; text-transform:uppercase; color:rgba(6,14,26,0.4); margin-top:14px; }
.section.light .section-rule { background:#9a7b2e; }
.section.light .eyebrow { color:#9a7b2e; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap:16px; }
.test-card { background: var(--card-bg); border:1px solid var(--gold-border); border-radius: var(--r-card); padding: 44px 42px; position:relative; }
.test-quote-mark { font-family:'Cormorant Garamond',serif; font-size:80px; color:rgba(193,155,72,0.14); line-height:0.6; height:36px; }
.test-text { font-family:'Cormorant Garamond',serif; font-weight:300; font-style:italic; font-size:24px; line-height:1.5; color:var(--ivory); margin:14px 0 26px; }
.test-author { font-size:9px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); }
.test-trip { font-size:9px; letter-spacing:0.14em; text-transform:uppercase; color:var(--text-dim); margin-top:6px; }

/* ============================================================
   WHY / LEADERSHIP
   ============================================================ */
.why { display:grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items:center; }
.why-copy p { font-size:12.5px; line-height:2; color:var(--text-muted); margin: 0 0 18px; }
.why-copy p strong { color:var(--ivory); font-weight:600; }
.leaders { display:flex; flex-direction:column; gap:12px; }
.leader { background:var(--card-bg); border:1px solid var(--gold-border); border-radius: var(--r-card); padding:30px 32px; display:grid; grid-template-columns: 84px 1fr; gap:24px; align-items:center; }
.leader .l-portrait { width:84px; height:104px; border-radius: var(--r-img); }
.leader .l-name { font-family:'Cormorant Garamond',serif; font-size:24px; color:var(--ivory); }
.leader .l-role { font-size:8.5px; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin:6px 0 12px; }
.leader .l-bio { font-size:11px; line-height:1.7; color:var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--midnight); border-top:1px solid var(--gold-border); padding: 80px 0 40px; }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; }
.f-logo { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:500; letter-spacing:0.22em; text-transform:uppercase; color:var(--ivory); }
.f-logo em { color:var(--gold); font-style:normal; }
.f-tag { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:17px; color:var(--text-muted); margin-top:18px; max-width:280px; line-height:1.5; }
.f-col h4 { font-size:9px; font-weight:700; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold); margin:0 0 20px; }
.f-col ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:12px; }
.f-col li { font-size:11px; letter-spacing:0.04em; color:var(--text-muted); cursor:pointer; transition:color .3s; }
.f-col li:hover { color:var(--gold); }
.f-office { font-size:10.5px; line-height:1.7; color:var(--text-muted); margin-bottom:18px; }
.f-office strong { color:var(--ivory); font-weight:600; font-size:8.5px; letter-spacing:0.18em; text-transform:uppercase; display:block; margin-bottom:5px; }
.footer-bot { margin-top:64px; padding-top:28px; border-top:1px solid var(--gold-border); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.footer-bot p { font-size:9px; letter-spacing:0.12em; color:var(--text-dim); margin:0; }
.f-social { display:flex; gap:10px; }
.f-social a { width:36px; height:36px; border:1px solid var(--gold-border); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--gold); transition: all .3s; }
.f-social a svg { display:block; }
.f-social a:hover { background:var(--gold); color:var(--midnight); border-color:var(--gold); transform: translateY(-2px); }

/* ============================================================
   DESTINATION DETAIL MODAL
   ============================================================ */
.modal-overlay { position:fixed; inset:0; z-index:400; background:rgba(3,7,13,0.82); backdrop-filter:blur(10px); opacity:0; pointer-events:none; transition:opacity .4s; display:flex; align-items:center; justify-content:center; padding:40px; }
.modal-overlay.open { opacity:1; pointer-events:auto; }
.modal { background:var(--midnight); border:1px solid var(--gold-border); border-radius: var(--r-panel); max-width:980px; width:100%; max-height:88vh; overflow:hidden auto; transform: translateY(30px); transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-hero { height: 340px; position:relative; overflow:hidden; border-radius: var(--r-panel) var(--r-panel) 0 0; }
.modal-hero-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.modal-hero::after { content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(6,14,26,0.55), transparent 55%); pointer-events:none; }
.modal-hero .m-close { position:absolute; top:18px; right:18px; z-index:3; width:40px; height:40px; border:1px solid var(--gold-border); background:rgba(6,14,26,0.7); color:var(--gold); font-size:16px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition: all .3s; border-radius: 50%; }
.modal-hero .m-close:hover { background:var(--gold); color:var(--midnight); }
.modal-hero .m-num { position:absolute; left:34px; bottom:20px; z-index:3; font-family:'Cormorant Garamond',serif; font-size:90px; font-weight:300; color:rgba(255,255,255,0.85); line-height:0.8; }
.modal-body { padding: 40px 44px 48px; }
.m-name { font-family:'Cormorant Garamond',serif; font-weight:300; font-size:48px; color:var(--ivory); line-height:1; }
.m-tag { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:20px; color:var(--gold); margin:10px 0 0; }
.m-desc { font-size:12.5px; line-height:2; color:var(--text-muted); margin:26px 0 0; max-width:640px; }
.m-section-label { font-size:9px; font-weight:700; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold); margin:34px 0 18px; }
.m-highlights { display:grid; grid-template-columns: repeat(2,1fr); gap:12px; }
.m-hl { background:var(--card-bg); border:1px solid var(--gold-border); border-radius: var(--r-img); padding:18px 20px; }
.m-hl .hl-t { font-size:9.5px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--ivory); }
.m-hl .hl-d { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:15px; color:var(--text-muted); margin-top:6px; }
.m-actions { margin-top:34px; display:flex; gap:14px; flex-wrap:wrap; }

/* ============================================================
   ANIMATIONS / REVEAL
   ============================================================ */
@keyframes fadeUp { from { opacity:0; transform: translateY(26px); } to { opacity:1; transform:none; } }

/* Hero entrance — resting state is ALWAYS visible (opacity:1, no JS, no
   fill-mode dependency). Entrance is transform-only (slide), so frozen /
   print / hidden / reduced-motion contexts all render the content. */
.hero-rev { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .hero-rev   { animation: heroSlide .85s cubic-bezier(.2,.8,.2,1) both; }
  .hero-rev.d1 { animation-delay: .10s; }
  .hero-rev.d2 { animation-delay: .20s; }
  .hero-rev.d3 { animation-delay: .30s; }
  .hero-rev.d4 { animation-delay: .42s; }
  .float-card { animation: floatSlide 1.1s cubic-bezier(.2,.8,.2,1) both; }
  .fc-b { animation-delay:.16s; } .fc-c { animation-delay:.28s; }
}
@keyframes heroSlide { from { transform: translateY(22px); } to { transform: none; } }
@keyframes floatSlide { from { transform: translateY(38px) scale(.97); } to { transform: none; } }
@media print {
  .hero-rev, .float-card, .reveal { opacity:1 !important; transform:none !important; animation:none !important; }
}
@keyframes floatIn { from { opacity:0; transform: translateY(40px) scale(.96); } to { opacity:1; transform:none; } }

.reveal { opacity:0; transform: translateY(34px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity:1; transform:none; }
.reveal.d1 { transition-delay:.08s; } .reveal.d2 { transition-delay:.16s; } .reveal.d3 { transition-delay:.24s; }
.reveal.d4 { transition-delay:.32s; } .reveal.d5 { transition-delay:.40s; } .reveal.d6 { transition-delay:.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
  *, *::before, *::after { animation-duration: .001s !important; }
}

/* ============================================================
   LIGHT MODE (tweak) — token + palette driven
   Background palettes evoke travel (sky / sea-glass / eucalyptus
   / stone) instead of a warm gold cast. Navy + gold stay as accents.
   ============================================================ */
body.light {
  /* ---- palette tokens (defaults = "Mist" / cool cloud white) ---- */
  --page-bg:   #EEF2F3;   /* whole-page background */
  --panel-2:   #E2E9EB;   /* secondary surfaces, hovers, builder output */
  --footer-bg: #DEE6E8;
  --ph-fill:   #D7E0E2;   /* image placeholder fill */
  --ink:       #14242E;   /* primary text / headings */

  /* remap core tokens so every element flips automatically */
  --ivory: var(--ink);
  --deep-navy: var(--panel-2);
  --card-bg: #ffffff;
  --gold-line: rgba(154,123,46,0.22);
  --gold-border: rgba(154,123,46,0.34);
  --gold-subtle: rgba(154,123,46,0.07);
  --text-muted: rgba(20,36,46,0.62);
  --text-dim: rgba(20,36,46,0.40);
  background: var(--page-bg);
  color: var(--ivory);
}
/* ---- travel background palettes (applied alongside .light) ---- */
body.light.pal-mist      { --page-bg:#E7EEF1; --panel-2:#D8E4E8; --footer-bg:#D1E0E5; --ph-fill:#C7D8DE; --ink:#13242C; --hero-wash-rgb:231,238,241; }
body.light.pal-eucalyptus{ --page-bg:#E6EDDF; --panel-2:#D8E3CE; --footer-bg:#D1DEC6; --ph-fill:#C8D6BB; --ink:#1B2A20; --hero-wash-rgb:230,237,223; }
body.light.pal-seaglass  { --page-bg:#E0EDEA; --panel-2:#CFE3DE; --footer-bg:#C7DED8; --ph-fill:#BBD7CF; --ink:#122625; --hero-wash-rgb:224,237,234; }
body.light.pal-stone     { --page-bg:#EFEFEB; --panel-2:#E4E3DC; --footer-bg:#DFDED5; --ph-fill:#D7D5CB; --ink:#1E1E1B; --hero-wash-rgb:239,239,235; }
body.light.pal-sand      { --page-bg:#F2EDE4; --panel-2:#E7DFD0; --footer-bg:#E2D9C8; --ph-fill:#DACFBC; --ink:#221E16; --hero-wash-rgb:242,237,228; }
/* Saffron: predominantly white, saffron used only as a minor accent */
body.light.pal-saffron   {
  --page-bg:#FFFFFF; --panel-2:#F6F3EE; --footer-bg:#F4F0EA; --ph-fill:#EFEAE1; --ink:#22201B; --hero-wash-rgb:255,255,255;
  --gold-line: rgba(224,123,44,0.16); --gold-border: rgba(224,123,44,0.26); --gold-subtle: rgba(224,123,44,0.06);
}

/* surfaces that are explicitly dark (use --midnight) -> make light */
body.light .footer { background: var(--footer-bg); }
body.light .modal { background: #ffffff; }
body.light .m-hl { background: #ffffff; }
body.light .nav-links.open { background: var(--page-bg); }
body.light .field select option,
body.light .qf-field select option { background: #ffffff; color: var(--ink); }
/* navbar — translucent neutral that works on any palette */
body.light .navbar.scrolled { background: rgba(255,255,255,0.82); }
/* decorative ghost numerals */
body.light .modal-hero .m-num { color: rgba(20,36,46,0.10); }
/* placeholder & texture fills tuned for light */
body.light .hero-texture-layer { background: repeating-linear-gradient(-45deg, transparent, transparent 28px, rgba(154,123,46,0.06) 28px, rgba(154,123,46,0.06) 29px); }
body.light .ph { background: repeating-linear-gradient(135deg, transparent, transparent 9px, rgba(20,36,46,0.05) 9px, rgba(20,36,46,0.05) 10px), var(--ph-fill); }
body.light .ph-label { color: rgba(20,36,46,0.45); }
body.light .ph::before { border-color: rgba(154,123,46,0.16); }
/* the light "Journal" section sits as pure white against the page */
body.light .section.light { background: #ffffff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1140px) {
  .logo-word { display: none; }
  .nav-links { gap: 20px; }
}
@media (max-width: 920px) {
  .nav-links { display:none; }
  .nav-links.open {
    display:flex; position:fixed; top:88px; left:24px; right:24px; flex-direction:column;
    background: rgb(var(--hero-wash-rgb)); border:1px solid var(--gold-border); border-radius:20px; padding:24px; gap:20px;
    box-shadow: 0 20px 50px -24px rgba(6,14,26,0.5);
  }
  .nav-toggle { display:flex; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; }
  .nav-toggle span { width:24px; height:1.5px; background:var(--gold); display:block; }
  .logo-word { display:flex; font-size:12px; }
  .logo-word .lw-2 { font-size:10px; }
}
@media (max-width: 1080px) {
  .dest-grid, .svc-grid { grid-template-columns: repeat(2,1fr); }
  .pkg-row { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .builder, .quote, .why { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  /* keep the hero image visible at mid widths, just tighten the text column */
  .hero-left { max-width: 440px; padding-right: 24px; }
  .hero-left h1 { font-size: calc(54px * var(--hero-scale)); }
  .hero-sub { font-size: 19px; margin: 22px 0 30px; }
  .sb { padding: 44px 22px; }
  .sb-num { font-size: 46px; }
}
@media (max-width: 760px) {
  /* true mobile — text only */
  .hero-right { display:none; }
  .hero-bg { display:none; }
  .hero-left { max-width: none; padding-right:0; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 22px; }
  .navbar { padding: 0 22px; }
  .hero-left h1 { font-size: calc(52px * var(--hero-scale)); }
  .stat-bar { flex-wrap:wrap; }
  .stat { flex: 1 1 50%; border-left:none; border-top:1px solid var(--gold-border); }
  .dest-grid, .svc-grid, .pkg-row, .blog-grid, .test-grid { grid-template-columns: 1fr; }
  .bf-row, .qf-grid, .m-highlights { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .sec-head .section-title { font-size: 34px; }
  .section { padding: 70px 0; }
  .scroll-cue { display:none; }
  .sb { padding: 30px 10px; gap: 8px; }
  .sb-num { font-size: 28px; }
  .sb-label { font-size: 9.5px; letter-spacing: 0.02em; }
  .sb + .sb::before { height: 50px; }
}

/* ---- Define missing tokens ---- */
:root { --text-main: var(--ivory); --text-body: var(--text-muted); }

/* ---- Hero always renders on dark image — force light text regardless of theme ---- */
.hero-left h1           { color: #FAF6EE !important; }
.hero-left h1 em        { color: var(--gold) !important; }
.hero-left .hero-sub    { color: rgba(250,246,238,0.80) !important; }
.hero-left .eyebrow     { color: var(--gold) !important; }
.hero-left .scroll-cue  { color: rgba(250,246,238,0.55) !important; }
.navbar { background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
body.light .navbar:not(.scrolled) { background: rgba(255,255,255,0.96); }

/* ---- Blog single post ---- */
.blog-single-wrap { padding-top: 80px; min-height: 70vh; }
.bs-hero { position: relative; margin-bottom: 60px; }
.bs-feat-img img { width:100%; max-height:500px; object-fit:cover; display:block; }
.bs-hero-inner { padding: 50px 0 30px; }
.bs-cats { margin-bottom: 14px; }
.bs-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,5vw,58px); font-weight:400; line-height:1.15; margin-bottom:14px; color: var(--text-main); }
.bs-meta { font-family: 'Montserrat', sans-serif; font-size: 12px; letter-spacing:.1em; color: var(--text-dim); text-transform:uppercase; }
.bs-body { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.8; color: var(--text-body); }
.bs-body p, .bs-body h2, .bs-body h3, .bs-body ul, .bs-body ol, .bs-body blockquote { margin-bottom: 1.4em; }
.bs-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight:400; color: var(--text-main); }
.bs-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight:400; color: var(--text-main); }
.bs-body blockquote { border-left: 3px solid var(--gold); padding-left: 24px; font-style:italic; color: var(--text-dim); }
.bs-body img { max-width:100%; border-radius: 8px; margin: 24px 0; }
.bs-back { max-width: 760px; margin: 50px auto 80px; }

/* Blog card link fix */
.b-link { display:block; color: inherit; text-decoration:none; }
.b-link:hover .b-title { color: var(--gold); }

/* Leader portrait */
.l-portrait { width: 72px; height: 72px; border-radius: 50%; object-fit:cover; flex-shrink:0; }
