/* =========================================================================
   White Mountain Camp - static rebuild
   Tokens matched to the live site (computed-style audit):
   Fonts: Cormorant (serif, everything) + Jost (sans, UI/nav/buttons)
   Accent: taupe #85745C · Ground: #FFFFFF · Ink: #000000
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Jost:wght@400;500;600&display=swap');

:root {
  --paper:  #FFFFFF;
  --ink:    #000000;
  --stone:  #5C564C;   /* muted body in dark/contrast spots */
  --mist:   #9A9486;
  --line:   #E7E3DB;
  --taupe:  #85745C;   /* brand accent */
  --taupe-d:#6E6049;
  --gold:   #C2A878;   /* warm gold (itinerary accent) */
  --gold-d: #B0945F;   /* deeper gold for hover/active */
  --deep:   #1B1813;   /* dark itinerary band */

  --serif: 'Cormorant', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', system-ui, -apple-system, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 60px);
  --section: clamp(64px, 9vw, 120px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--taupe); color: #fff; }

/* ---- type ---------------------------------------------------------------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.12; }

.eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--taupe);
  margin-bottom: 18px;
}
.lede { font-size: clamp(20px, 2.2vw, 24px); line-height: 1.5; }
p + p { margin-top: 1em; }
strong { font-weight: 600; }

/* ---- buttons (Jost, square, uppercase) ----------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 18px 40px; border: 1px solid var(--ink);
  background: var(--ink); color: #fff; border-radius: 0;
  cursor: pointer; transition: background .3s, color .3s, border-color .3s;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { background: transparent; color: #fff; border-color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--gold { background: var(--gold); color: #000; border-color: var(--gold); }
.btn--gold:hover { background: transparent; color: var(--gold); border-color: var(--gold); }

/* ---- shell --------------------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.measure { max-width: 820px; margin-inline: auto; }
.center { text-align: center; }

/* =========================================================================
   Announcement + header (centred wordmark · nav left · icons right)
   ========================================================================= */
.announce {
  background: var(--taupe); color: #fff; text-align: center;
  font-family: var(--serif); font-size: 14px; letter-spacing: normal;
  padding: 9px 16px; font-weight: 400;
}

.site-header { position: sticky; top: 0; z-index: 60; transition: background .3s, border-color .3s; }
.nav {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 16px; height: 76px;
}
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; justify-self: start; min-width: 0; }
.nav-links a {
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.02em; padding: 6px 0; position: relative; white-space: nowrap;
}
@media (max-width: 1100px){ .nav-links { gap: 16px; } .nav-links a { font-size: 11px; letter-spacing: 0.01em; } }
@media (max-width: 1024px){ .nav-links { display: none; } }
.wordmark {
  justify-self: center; text-align: center;
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
}
.nav-icons { justify-self: end; display: flex; align-items: center; gap: 20px; }
.nav-icons a { display: inline-flex; align-items: center; font-family: var(--sans); font-size: 12px; }
.nav-icons svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; color: inherit; }

/* ---- mobile menu (hamburger, CSS-only) ------------------------------------ */
.nav-check { display: none; }
.nav-toggle svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.home .site-header .nav-toggle { color: #fff; }
.home .site-header.scrolled .nav-toggle { color: var(--ink); }
@media (max-width: 1024px){ .nav-toggle { display: inline-flex; align-items: center; } }
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 70;
  background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 8px 0 16px; box-shadow: 0 14px 32px rgba(0,0,0,.08);
}
.mobile-menu a {
  display: block; padding: 14px var(--gutter); color: var(--ink);
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.mobile-menu a:hover { color: var(--taupe); }
.nav-check:checked ~ .mobile-menu { display: block; }
.nav-check:checked ~ .wrap .nav-toggle { color: var(--taupe); }

/* transparent over hero on home; solid after scroll / on inner pages */
.home .site-header { position: absolute; left: 0; right: 0; top: var(--announce-h, 40px); background: transparent; color: #fff; }
.home .site-header .nav-links a, .home .site-header .wordmark, .home .site-header .nav-icons a { color: #fff; }
.home .site-header.scrolled { position: fixed; top: 0; background: rgba(255,255,255,.96); color: var(--ink);
  border-bottom: 1px solid var(--line); backdrop-filter: blur(8px); }
.home .site-header.scrolled .nav-links a,
.home .site-header.scrolled .wordmark,
.home .site-header.scrolled .nav-icons a { color: var(--ink); }
.inner .site-header { background: var(--paper); color: var(--ink); border-bottom: 1px solid var(--line); }
.nav-links a:hover { color: var(--taupe); }

/* =========================================================================
   Hero - text in lower third
   ========================================================================= */
.hero { position: relative; height: clamp(620px, 100vh, 1040px); overflow: hidden; }
.hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero::after { content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.05) 45%, rgba(0,0,0,.45) 100%); }
.hero-inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  text-align: center; color: #fff; padding: 0 var(--gutter) clamp(70px, 11vh, 130px);
}
.hero h1 { font-size: clamp(34px, 5vw, 48px); font-weight: 400; max-width: 22ch; text-wrap: balance; }
.hero .sub { font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 2vw, 22px); margin-top: 16px; }
.hero .btn { margin-top: 34px; }

/* =========================================================================
   Story + testimonials
   ========================================================================= */
.story h2 { font-size: clamp(26px, 3vw, 30px); margin-bottom: 26px; }
.story p { font-size: 20px; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: clamp(56px, 8vw, 96px); }
.quote { text-align: center; padding: 0 12px; }
.stars { color: var(--ink); letter-spacing: 3px; font-size: 14px; margin-bottom: 22px; }
.quote p { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.45; }
.quote cite { display: block; margin-top: 20px; font-style: normal; font-size: 18px; color: var(--ink); }

/* =========================================================================
   Feature band
   ========================================================================= */
.band { background: var(--paper); }
.band > .wrap > h2 { font-size: clamp(24px, 3vw, 28px); text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }

.lodge-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px);
  align-items: center; margin-bottom: clamp(36px, 5vw, 60px); }
.lodge-feature img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.lodge-feature h3 { font-size: 26px; margin-bottom: 14px; }
.lodge-feature p { font-size: 18px; }

.amenities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.amenity { background: var(--paper); border: 1px solid var(--line); padding: 32px clamp(20px, 2.4vw, 32px); }
.amenity h3 { font-size: 22px; margin-bottom: 12px; }
.amenity p { font-size: 16px; line-height: 1.5; color: var(--stone); }

/* =========================================================================
   Route + figures
   ========================================================================= */
.route h2 { font-size: clamp(26px, 3vw, 30px); margin-bottom: 24px; }
.route-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: clamp(40px, 6vw, 64px); }
.route-imgs img { width: 100%; object-fit: contain; }
.figure-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.figure-pair img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }

/* =========================================================================
   Itinerary
   ========================================================================= */
.itinerary { background: var(--deep); color: #EDE9E1; }
.itinerary .eyebrow { color: #C2A878; }
.day { display: grid; grid-template-columns: 190px 1fr; gap: clamp(20px, 4vw, 52px);
  padding-block: clamp(34px, 4.5vw, 54px); border-top: 1px solid rgba(255,255,255,.12); }
.day:first-of-type { border-top: 0; }
.day-label { font-family: var(--sans); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #C2A878; font-weight: 500; padding-top: 8px; }
.day h3 { font-size: clamp(22px, 2.6vw, 28px); color: #fff; margin-bottom: 16px; }
.day p { color: #C9C3B7; font-size: 18px; }
.day strong { color: #fff; font-weight: 500; }

/* =========================================================================
   Service / community
   ========================================================================= */
.service h2 { font-size: clamp(24px, 3vw, 28px); text-align: center; margin-bottom: 22px; }
.community h2 { font-size: clamp(24px, 3vw, 30px); margin-bottom: 24px; }

/* =========================================================================
   Newsletter + footer
   ========================================================================= */
.newsletter { text-align: center; }
.newsletter h3 { font-family: var(--serif); font-size: clamp(24px, 3vw, 30px); margin-bottom: 10px; }
.newsletter p { color: var(--stone); margin-bottom: 26px; font-size: 18px; }
.subscribe { display: flex; max-width: 440px; margin-inline: auto; border: 1px solid var(--ink); }
.subscribe input { flex: 1; border: 0; background: transparent; padding: 15px 18px;
  font-family: var(--sans); font-size: 14px; color: var(--ink); }
.subscribe input:focus { outline: none; }
.subscribe button { border: 0; background: var(--ink); color: #fff; padding: 0 24px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; }

.site-footer { border-top: 1px solid var(--line); padding-block: 40px; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 26px; list-style: none; }
.footer-links a { font-family: var(--sans); font-size: 12px; color: var(--taupe); }
.footer-links a:hover { color: var(--ink); }
.copyright { font-family: var(--sans); font-size: 12px; color: var(--mist); }

/* =========================================================================
   Product / expedition
   ========================================================================= */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.product-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product h1 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 16px; }
.price { font-family: var(--serif); font-size: 28px; margin-bottom: 4px; }
.price small { font-family: var(--sans); font-size: 12px; color: var(--stone); letter-spacing: .02em; text-transform: uppercase; }
.field { margin-top: 28px; }
.field-label { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--taupe); font-weight: 500; margin-bottom: 12px; }
.options { display: flex; flex-direction: column; gap: 10px; }
.option { display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--line); padding: 14px 18px; font-size: 17px; }
.option .status { font-family: var(--sans); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mist); }
.product .btn { width: 100%; margin-top: 26px; }
.spec { margin-top: 36px; border-top: 1px solid var(--line); padding-top: 28px; }
.spec h2 { font-family: var(--serif); font-size: 24px; margin-bottom: 14px; }
.spec ul { list-style: none; }
.spec li { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 17px;
  display: flex; justify-content: space-between; gap: 16px; }
.spec li span:last-child { color: var(--taupe); }
.fine { font-family: var(--sans); font-size: 13px; color: var(--stone); margin-top: 16px; line-height: 1.6; }

/* =========================================================================
   Contact + policy
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 76px); align-items: start; }
.contact-intro h1 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--stone); margin-bottom: 8px; }
.form-field input, .form-field textarea { width: 100%; border: 1px solid var(--line); background: var(--paper);
  padding: 13px 15px; font-family: var(--sans); font-size: 15px; color: var(--ink); }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--taupe); }
.form-field textarea { min-height: 150px; resize: vertical; }

.doc { max-width: 800px; }
.doc h1 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 26px; }
.doc h2 { font-family: var(--serif); font-size: 24px; margin: 32px 0 12px; }
.doc p { margin-bottom: 1em; }

/* =========================================================================
   Responsive + a11y
   ========================================================================= */
@media (max-width: 860px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; justify-self: start; }
  .wordmark { font-size: 18px; letter-spacing: 0.12em; }
  .quotes { grid-template-columns: 1fr; gap: 48px; }
  .lodge-feature, .amenities, .route-imgs, .figure-pair { grid-template-columns: 1fr; }
  .day { grid-template-columns: 1fr; gap: 10px; }
  .product, .contact-grid, .form-row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--taupe); outline-offset: 3px; }

/* ---- self-hosted imagery added post-launch ------------------------------- */
.route-map { margin-top: clamp(40px, 6vw, 64px); }
.route-map img { width: 100%; height: auto; }
.camp-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.camp-pair img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
@media (max-width: 860px){ .camp-pair { grid-template-columns: 1fr; } }

/* ---- community: founder + guide paired with the copy --------------------- */
.community-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.community-figure { margin: 0; position: sticky; top: 100px; }
.community-figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.community-figure figcaption { font-family: var(--sans); font-size: 12px; color: var(--stone); margin-top: 10px; letter-spacing: 0.02em; }
.community-copy h2 { margin-bottom: 24px; }
@media (max-width: 860px){ .community-grid { grid-template-columns: 1fr; } .community-figure { position: static; } }

/* ---- feature band: alternating image/text rows + balanced 3-card row ----- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; margin-bottom: clamp(36px, 5vw, 64px); }
.feature-row .feature-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/2; }
.feature-row .feature-text h3 { font-size: 26px; margin-bottom: 14px; }
.feature-row .feature-text p { font-size: 18px; }
.feature-row.reverse .feature-media { order: 2; }
.amenities-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: clamp(8px, 2vw, 20px); }
@media (max-width: 860px){
  .feature-row { grid-template-columns: 1fr; gap: 18px; }
  .feature-row.reverse .feature-media { order: 0; }
  .amenities-3 { grid-template-columns: 1fr; }
}

/* ---- full-bleed route map ------------------------------------------------ */
.route-fullbleed { width: 100%; margin-top: clamp(40px, 6vw, 64px); }
.route-fullbleed img { width: 100%; height: auto; display: block; }

/* drop the white gap so the full-bleed route map meets the dark itinerary flush */
.section.route { padding-bottom: 0; }

/* ---- upcoming expeditions accordion (light) ------------------------------ */
#expeditions { scroll-margin-top: 92px; }
.expeditions h2 { font-size: clamp(24px, 3vw, 30px); text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.exp-list { display: flex; flex-direction: column; gap: 10px; max-width: 980px; margin: 0 auto; }
.exp-item { border: 0; }
.exp-banner {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; background: var(--gold); color: #000; border: 1px solid var(--gold); padding: 22px 28px;
  transition: border-color .25s ease, background .25s ease;
}
.exp-banner::-webkit-details-marker { display: none; }
.exp-banner:hover { background: var(--gold-d); border-color: var(--gold-d); }
.exp-item[open] .exp-banner { background: var(--gold-d); border-color: var(--gold-d); }
.exp-date { font-family: var(--serif); font-size: 22px; color: var(--ink); display: inline-flex; align-items: baseline; }
.exp-date em { font-family: var(--sans); font-style: normal; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); margin-left: 14px; }
.exp-meta { display: flex; align-items: center; gap: 20px; }
.exp-route { font-family: var(--sans); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(0,0,0,.62); }
.exp-chevron { width: 9px; height: 9px; border-right: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); transform: rotate(45deg); transition: transform .3s ease; margin-top: -4px; }
.exp-item[open] .exp-chevron { transform: rotate(-135deg); margin-top: 2px; }

/* panel: full-width uncropped image, details below */
.exp-panel { background: #fff; border: 1px solid var(--line); border-top: 0; }
.exp-media img { width: 100%; height: auto; display: block; }
.exp-detail { padding: clamp(24px, 3.2vw, 44px); }
.exp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 52px); }
.exp-price { font-family: var(--serif); font-size: 24px; line-height: 1.25; }
.exp-price + .exp-price { margin-top: 2px; }
.exp-price span { font-family: var(--sans); font-size: 12px; color: var(--stone); text-transform: uppercase; letter-spacing: 0.02em; }
.exp-detail h4 { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 12px; }
.exp-detail ul { list-style: none; }
.exp-detail li { padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.exp-fine { font-family: var(--sans); font-size: 13px; color: var(--stone); margin: 16px 0; line-height: 1.6; }
.exp-detail .btn { margin-top: 6px; }
@media (max-width: 860px){
  .exp-cols { grid-template-columns: 1fr; gap: 8px; }
  .exp-banner { padding: 18px 20px; }
  .exp-date { font-size: 18px; }
  .exp-meta { gap: 12px; }
}

/* smooth, medium-speed expand/contract for the expedition panels */
:root { interpolate-size: allow-keywords; }
.exp-item::details-content {
  block-size: 0;
  overflow: clip;
  opacity: 0;
  transition: block-size .9s cubic-bezier(.22, 1, .36, 1), opacity .85s ease .08s, content-visibility .9s allow-discrete;
}
.exp-item[open]::details-content {
  block-size: auto;
  opacity: 1;
}
.exp-chevron { transition: transform .9s cubic-bezier(.22, 1, .36, 1); }

/* ---- expedition enquiry modal -------------------------------------------- */
.enq-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(14,20,23,.6); display: none; align-items: flex-start; justify-content: center; padding: 5vh 16px; overflow-y: auto; }
.enq-overlay.is-open { display: flex; }
.enq-modal { background: #fff; width: 100%; max-width: 700px; padding: clamp(28px, 4vw, 48px); position: relative; border: 1px solid var(--line); }
.enq-close { position: absolute; top: 14px; right: 18px; background: none; border: 0; font-size: 28px; line-height: 1; cursor: pointer; color: var(--ink); }
.enq-close:hover { color: var(--taupe); }
.enq-modal h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3.4vw, 34px); }
.enq-sub { font-family: var(--sans); font-size: 13.5px; color: var(--stone); margin: 8px 0 26px; line-height: 1.5; }
.enq-section { margin-bottom: 24px; }
.enq-legend { display: block; font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--taupe); margin-bottom: 18px; }
.enq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enq-row-3 { display: grid; grid-template-columns: 1.1fr 0.8fr 1fr; gap: 16px; }
.enq-field { margin-bottom: 16px; }
.enq-field label { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--stone); margin-bottom: 8px; }
.enq-field input, .enq-field select, .enq-field textarea { width: 100%; border: 1px solid var(--line); background: var(--paper); padding: 13px 15px; font-family: var(--sans); font-size: 15px; color: var(--ink); border-radius: 0; }
.enq-field input:focus, .enq-field select:focus, .enq-field textarea:focus { outline: none; border-color: var(--taupe); }
.enq-field select:disabled { background: #F3F1EC; color: var(--stone); cursor: not-allowed; }
.enq-field textarea { min-height: 150px; resize: vertical; }
.enq-guest { border: 1px solid var(--line); padding: 18px; margin-bottom: 12px; background: var(--paper); }
.enq-guest-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.enq-guest-title { font-family: var(--serif); font-size: 18px; }
.enq-remove { background: none; border: 0; font-family: var(--sans); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--taupe); cursor: pointer; }
.enq-remove:hover { color: var(--ink); }
.enq-lock { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.02em; text-transform: none; color: var(--taupe); }
.enq-add { background: none; border: 1px dashed var(--mist); width: 100%; padding: 14px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); cursor: pointer; transition: border-color .2s, background .2s; }
.enq-add:hover:not(:disabled) { border-color: var(--ink); background: var(--paper); }
.enq-add:disabled { color: var(--mist); border-color: var(--line); cursor: not-allowed; }
.enq-msg { font-family: var(--sans); font-size: 13px; color: #9a3a2a; margin-bottom: 14px; display: none; line-height: 1.5; }
.enq-msg.show { display: block; }
.enq-msg.ok { color: #2e6b3e; }
.enq-submit { width: 100%; justify-content: center; }
@media (max-width: 560px){ .enq-row, .enq-row-3 { grid-template-columns: 1fr; } }

/* ---- corporate team building CTA (dark) ---------------------------------- */
.corporate { background: var(--deep); color: #EDE9E1; text-align: center; }
.corporate-inner { max-width: 760px; margin: 0 auto; }
.corporate .eyebrow { color: var(--gold); }
.corporate h2 { color: #fff; margin: 10px 0 20px; }
.corporate p { font-size: 16px; line-height: 1.75; color: rgba(237,233,225,.82); margin-bottom: 34px; }
.corporate .btn { margin: 0 auto; }

/* ---- inline form status message (contact page) --------------------------- */
.form-msg { font-family: var(--sans); font-size: 13px; line-height: 1.5; color: #9a3a2a; margin: 4px 0 14px; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { color: #2e6b3e; }

/* ---- policy / legal document pages --------------------------------------- */
.doc { max-width: 760px; margin: 0 auto; }
.doc h1 { font-size: clamp(30px, 4vw, 40px); font-weight: 400; margin-bottom: 6px; }
.doc .updated { font-family: var(--sans); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--taupe); margin-bottom: 38px; }
.doc h2 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 40px 0 14px; }
.doc h3 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--taupe); margin: 26px 0 10px; }
.doc p { font-size: 15.5px; line-height: 1.75; color: var(--ink); margin-bottom: 16px; }
.doc ul { margin: 0 0 18px; padding-left: 20px; }
.doc li { font-size: 15.5px; line-height: 1.7; color: var(--ink); margin-bottom: 9px; }
.doc a { color: var(--taupe); text-decoration: underline; }
.doc strong { font-weight: 600; }

/* ---- sold-out / waitlist tag on an expedition banner --------------------- */
.exp-soldout { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: #8a2f2a; white-space: nowrap; }
@media (max-width: 620px){ .exp-soldout { font-size: 9.5px; letter-spacing: 0.04em; } .exp-meta { gap: 10px; } }

/* inset (newspaper-style) figure that body text wraps around */
.inset-figure { float: right; width: clamp(220px, 40%, 430px); margin: 6px 0 18px 30px; }
.inset-figure img { width: 100%; height: auto; display: block; }
.inset-figure figcaption { font-family: var(--sans); font-size: 12px; color: var(--stone); margin-top: 9px; letter-spacing: 0.02em; line-height: 1.5; }
@media (max-width: 640px){ .inset-figure { float: none; width: 100%; margin: 0 0 20px; } }

/* ---- guide prev / next navigation ---------------------------------------- */
.guide-nav { display: flex; justify-content: space-between; gap: 20px; max-width: 980px; margin: 0 auto;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; }
.guide-nav a { font-family: var(--sans); font-size: 12px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--taupe); max-width: 47%; }
.guide-nav a:hover { color: var(--ink); }
.guide-nav .next { margin-left: auto; text-align: right; }
.guide-nav .gn-label { display: block; font-size: 10px; color: var(--mist); margin-bottom: 5px; letter-spacing: 0.08em; }
