/* ==========================================================================
   Whales Details — Design System
   Typography Path B: Lora (display serif) + Plus Jakarta Sans (body sans)
   Palette: Ivory Sand · Warm Linen · Lake Navy · Deep Tide · Brass Gold
   Register: warm luxury — Four Seasons / Cartier restraint, Vuori warmth
   ========================================================================== */

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

:root {
  /* Color system */
  --bg:        #F5F1E8;   /* Ivory Sand — primary background */
  --surface:   #FFFFFF;   /* Cards on ivory */
  --surface2:  #EDE8DC;   /* Warm Linen — alternate sections */
  --border:    #D8D0C0;   /* Hairlines */
  --text:      #1A1A18;   /* Near Black — headings on light */
  --body:      #4A4030;   /* Warm body copy on light */
  --muted:     #7A7060;   /* Captions, metadata */
  --navy:      #1B3A52;   /* Lake Navy — signature accent */
  --navy-dark: #0F2438;   /* Deep Tide — nav, hero, footer */
  --gold:      #A8844A;   /* Brass Gold — eyebrows, accents only */
  --on-dark:       rgba(255,255,255,0.92);
  --on-dark-soft:  rgba(255,255,255,0.60);
  --on-dark-faint: rgba(255,255,255,0.38);

  /* Type system */
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Rhythm */
  --pad-x: clamp(24px, 6vw, 80px);
  --section-y: clamp(72px, 9vw, 120px);
  --radius: 2px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  background: var(--bg);
  color: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: rgba(27,58,82,0.16); }

/* ---- Type roles ------------------------------------------------------- */
h1, h2, h3.serif {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text);
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--navy-dark);
  margin-bottom: 18px;
}
.section-title em { font-style: italic; font-weight: 400; }
.section-sub {
  font-size: 15px;
  color: var(--body);
  line-height: 1.8;
  max-width: 580px;
}
.on-dark .section-title { color: #fff; }
.on-dark .section-sub, .on-dark p { color: var(--on-dark-soft); }

/* ---- Buttons ----------------------------------------------------------- */
.btn-primary, .btn-ghost, .btn-ghost-dark {
  display: inline-block;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  border: none;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: #97753d; transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); }
.btn-ghost {
  background: transparent; color: var(--on-dark-soft);
  border: 1px solid rgba(255,255,255,0.30);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-dark {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost-dark:hover { background: var(--navy); color: #fff; }

/* ---- Reveal on scroll (unhurried, Four Seasons pacing) -----------------
   Content is visible by default (crawlers, no-JS, print). main.js adds
   .pre only to elements still below the fold, then reveals on intersect. */
.reveal.pre { opacity: 0; transform: translateY(18px); }
.reveal.in { opacity: 1; transform: none; transition: opacity 0.9s ease, transform 0.9s ease; }
@media (prefers-reduced-motion: reduce) {
  .reveal.pre { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---- NAV ---------------------------------------------------------------- */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 clamp(20px, 4vw, 48px);
  background: rgba(15,36,56,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.wordmark {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.10em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.wordmark .wm-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}
.nav-links {
  display: flex; align-items: center; gap: 26px;
  list-style: none; flex-wrap: nowrap;
}
.nav-links a {
  font-size: 11px; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--on-dark-faint);
  text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -18px; min-width: 220px;
  display: none; list-style: none; padding: 14px 0;
  background: rgba(15,36,56,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(8,18,28,0.45);
}
.nav-dropdown.open > .nav-dropdown-menu,
.nav-dropdown:focus-within > .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 10px 20px; font-size: 11px; }
.nav-phone { color: var(--gold) !important; font-weight: 500 !important; letter-spacing: 0.05em !important; text-transform: none !important; font-size: 13px !important; }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 20px; border-radius: var(--radius);
  font-weight: 500 !important;
  transition: all 0.25s !important;
}
.nav-cta:hover { background: var(--gold); color: #fff !important; }
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid rgba(168,132,74,0.5);
  color: var(--gold); border-radius: var(--radius);
  font-size: 18px; cursor: pointer; line-height: 1;
}
.nav-mobile-info { display: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- HERO (home) -------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: flex-end;
  padding: 140px var(--pad-x) 90px;
  background: linear-gradient(160deg, var(--navy-dark) 0%, #0c1d2e 100%);
  overflow: hidden;
}
.hero-photo {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 58%;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-dark) 0%, rgba(15,36,56,0.55) 35%, rgba(15,36,56,0.12) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 22px;
}
.hero-h1 em { font-style: italic; }
.hero-sub {
  font-size: 15px; color: var(--on-dark-soft);
  line-height: 1.8; max-width: 470px; margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-baseline {
  position: relative; z-index: 2;
  margin-top: 56px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; gap: 36px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--on-dark-faint);
}
.hero-baseline strong { color: var(--gold); font-weight: 500; }

/* ---- Page hero (subpages) ----------------------------------------------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, #0c1d2e 100%);
  padding: 170px var(--pad-x) 84px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 60%);
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 400;
  color: #fff;
  line-height: 1.14;
  letter-spacing: 0.01em;
  max-width: 880px;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; }
.page-hero .lede { font-size: 15px; color: var(--on-dark-soft); max-width: 560px; line-height: 1.8; }
.page-hero .page-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.breadcrumbs {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--on-dark-faint);
  margin-bottom: 28px;
}
.breadcrumbs a { color: var(--on-dark-faint); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold); }

/* ---- Sections ------------------------------------------------------------ */
section.band { padding: var(--section-y) var(--pad-x); }
.band-inner { max-width: 1240px; margin: 0 auto; }
.band.linen { background: var(--surface2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.band.dark { background: var(--navy-dark); }
.band.navy { background: var(--navy); }

/* ---- Member voices strip -------------------------------------------------- */
.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); }
.voice blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy-dark);
  margin-bottom: 14px;
}
.voice cite {
  font-style: normal; font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.voice cite strong { color: var(--gold); font-weight: 500; }

/* ---- Founders ------------------------------------------------------------- */
.founders-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px); align-items: start;
}
/* Original staggered pair from the first site iteration: overlapping 4:5
   cards, second card dropped low, name tags as gradient overlays. */
.founders-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  align-items: start;
  padding-top: 56px;
  padding-bottom: 290px; /* room for the dropped second card */
  position: relative;
}
.founder-card {
  aspect-ratio: 4/5; width: 116%;
  overflow: hidden; position: relative; margin: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 30px 60px rgba(26,26,24,0.22);
}
.founders-pair .founder-card:first-child { transform: translate(8%, -12px); z-index: 2; }
.founders-pair .founder-card:last-child { transform: translate(-8%, 280px); z-index: 1; }
.founder-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.name-tag {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(12,25,38,0.92), rgba(12,25,38,0));
  display: flex; flex-direction: column; gap: 2px;
}
.nt-name { font-family: var(--font-display); font-size: 18px; font-weight: 400; color: #fff; letter-spacing: 0.02em; }
.nt-role { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.founders-body p { margin-bottom: 18px; max-width: 600px; }
.founders-signature { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--border); }
.signature-name { font-family: var(--font-display); font-style: italic; font-size: 25px; color: var(--gold); margin-bottom: 4px; }
.signature-title { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ---- Promises --------------------------------------------------------------- */
.promises-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
.promise-block { padding-left: 24px; border-left: 1px solid rgba(168,132,74,0.55); }
.promise-title { font-family: var(--font-display); font-size: 21px; color: var(--navy-dark); margin-bottom: 10px; line-height: 1.3; }
.promise-body { font-size: 14px; line-height: 1.75; color: var(--body); }

/* ---- Services ------------------------------------------------------------------ */
.services-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 52px; flex-wrap: wrap; }
.services-tabs { display: flex; border: 1px solid var(--navy); border-radius: var(--radius); overflow: hidden; }
.tab-btn {
  padding: 13px 30px; font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: transparent; color: var(--navy); border: none; cursor: pointer;
  transition: all 0.2s;
}
.tab-btn.active { background: var(--navy); color: #fff; }
.tab-btn:not(.active):hover { background: rgba(27,58,82,0.07); }
.services-panel { display: none; }
.services-panel.active { display: block; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 22px 48px rgba(26,26,24,0.08); }
.service-card > img { width: 100%; height: 210px; object-fit: cover; }
.service-card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.service-tier { font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 10px; }
.service-name { font-family: var(--font-display); font-size: 23px; font-weight: 400; color: var(--navy-dark); margin-bottom: 4px; }
.service-from { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.service-features li { font-size: 13px; display: flex; align-items: center; gap: 10px; }
.service-features li::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.service-desc { font-size: 13px; line-height: 1.7; margin-bottom: 14px; }
.service-prices { font-size: 12px; color: var(--muted); margin-bottom: 18px; }
.service-cta {
  margin-top: auto; align-self: flex-start;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--navy); font-weight: 500; text-decoration: none;
  border-bottom: 1px solid var(--gold); padding-bottom: 3px;
  transition: color 0.2s;
}
.service-cta:hover { color: var(--gold); }
.services-note {
  margin-top: 36px; padding: 22px 28px;
  background: var(--surface); border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13px; line-height: 1.7;
}
.see-all-row { text-align: center; margin-top: 44px; }

/* ---- Gallery ------------------------------------------------------------------- */
.gallery-track {
  display: flex; gap: 18px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px var(--pad-x) 26px;
  scrollbar-width: thin; scrollbar-color: rgba(168,132,74,0.4) transparent;
}
.gallery-track::-webkit-scrollbar { height: 5px; }
.gallery-track::-webkit-scrollbar-thumb { background: rgba(168,132,74,0.35); border-radius: 3px; }
.gallery-card {
  flex: 0 0 300px; scroll-snap-align: start;
  aspect-ratio: 4/5; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.gallery-card:hover img { transform: scale(1.045); }
.gallery-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 36px 20px 18px;
  background: linear-gradient(to top, rgba(12,25,38,0.92), transparent);
  color: var(--on-dark);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
}
.gallery-label .tier { display: block; color: var(--gold); font-size: 9px; letter-spacing: 0.22em; margin-bottom: 4px; }
.gallery-arrows { display: flex; gap: 10px; justify-content: flex-end; padding: 14px var(--pad-x) 0; }
.gallery-arrow {
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.25);
  background: transparent; color: var(--on-dark-soft); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); transition: all 0.2s;
}
.gallery-arrow:hover { border-color: var(--gold); color: var(--gold); }

/* ---- Reviews ------------------------------------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.review-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 36px; position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute; top: 18px; right: 28px;
  font-family: var(--font-display); font-size: 72px; line-height: 1;
  color: rgba(168,132,74,0.18);
}
.review-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 16.5px; line-height: 1.7; color: var(--text);
  margin-bottom: 20px;
}
.review-author { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); font-weight: 500; }
.review-meta { font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }

/* ---- Packages -------------------------------------------------------------------- */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.package-card {
  border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius);
  padding: 42px 34px; position: relative;
  transition: border-color 0.3s;
  display: flex; flex-direction: column;
}
.package-card:hover { border-color: var(--gold); }
.package-card.featured { border-color: var(--gold); background: rgba(168,132,74,0.06); }
.package-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; padding: 4px 18px;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  white-space: nowrap; border-radius: var(--radius);
}
.package-name { font-family: var(--font-display); font-size: 27px; color: #fff; margin-bottom: 8px; }
.package-tagline { font-size: 13px; color: var(--on-dark-soft); margin-bottom: 26px; }
.package-from { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-faint); }
.package-price { font-family: var(--font-display); font-size: 46px; color: var(--gold); line-height: 1.1; margin-bottom: 26px; }
.package-price span { font-family: var(--font-body); font-size: 14px; color: var(--on-dark-soft); }
.package-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 34px; }
.package-features li { font-size: 13px; color: var(--on-dark-soft); display: flex; gap: 10px; align-items: center; }
.package-features li::before { content: ''; width: 5px; height: 1px; background: var(--gold); flex-shrink: 0; }
.package-cta {
  margin-top: auto; text-align: center; text-decoration: none;
  padding: 14px; border: 1px solid var(--gold); border-radius: var(--radius);
  color: var(--gold); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
  transition: all 0.25s; background: transparent; cursor: pointer; font-family: var(--font-body);
}
.package-cta:hover, .package-card.featured .package-cta { background: var(--gold); color: #fff; }

/* ---- Areas --------------------------------------------------------------------------- */
.areas-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 44px auto 0; max-width: 820px; }
.area-chip {
  padding: 11px 26px; border: 1px solid var(--border); border-radius: 100px;
  background: var(--surface);
  font-size: 13px; color: var(--body); text-decoration: none;
  transition: all 0.25s;
}
a.area-chip:hover { border-color: var(--navy); color: var(--navy); }
.area-chip.static { cursor: default; }

/* ---- FAQ ----------------------------------------------------------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 4px;
  font-family: var(--font-display); font-size: 19px; color: var(--navy-dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-body); font-weight: 300; font-size: 22px; color: var(--gold); transition: transform 0.25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 4px 26px; max-width: 720px; font-size: 14px; line-height: 1.8; }

/* ---- Booking ------------------------------------------------------------------------ */
.booking-band { background: var(--navy); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; max-width: 1240px; margin: 0 auto; }
.booking-info .section-title { color: #fff; }
.booking-info p { color: var(--on-dark-soft); }
.booking-call {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 28px 0 36px; padding: 14px 24px;
  border: 1px solid rgba(168,132,74,0.55); border-radius: var(--radius);
  color: var(--gold); text-decoration: none;
  font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; font-weight: 500;
  transition: all 0.25s;
}
.booking-call:hover { background: rgba(168,132,74,0.12); }
.booking-points { display: flex; flex-direction: column; gap: 18px; }
.booking-point { display: flex; gap: 16px; align-items: baseline; }
.booking-point::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.bp-title { font-weight: 500; color: var(--on-dark); font-size: 14px; }
.bp-sub { font-size: 13px; color: var(--on-dark-soft); }

.booking-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 500; }
.form-input {
  background: rgba(15,36,56,0.45);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px; color: #fff; font-family: var(--font-body); font-weight: 300;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: rgba(255,255,255,0.30); }
select.form-input { cursor: pointer; }
select.form-input option { background: var(--navy-dark); }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--gold); color: #fff;
  padding: 17px; border: none; border-radius: var(--radius); cursor: pointer;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.25s, transform 0.2s; margin-top: 4px;
}
.form-submit:hover { background: #97753d; transform: translateY(-1px); }
.form-success {
  border: 1px solid rgba(168,132,74,0.6); border-radius: var(--radius);
  padding: 46px 38px; text-align: center; background: rgba(15,36,56,0.45);
}
.form-success h3 { font-family: var(--font-display); font-weight: 400; font-size: 28px; color: #fff; margin-bottom: 12px; }
.form-success p { font-size: 14px; color: var(--on-dark-soft); line-height: 1.7; }
.form-error {
  margin: 4px 0 14px; padding: 12px 16px; border-radius: var(--radius);
  border: 1px solid rgba(200,90,70,0.55); background: rgba(120,40,30,0.28);
  font-size: 13px; color: #ffd9cf; line-height: 1.6;
}
.form-error a { color: var(--gold); font-weight: 600; }

/* ---- Copy / article pages -------------------------------------------------------------- */
.copy-block { max-width: 760px; }
.copy-block p { margin-bottom: 18px; }
.copy-block a { color: var(--navy); text-decoration: underline; text-decoration-color: rgba(168,132,74,0.6); text-underline-offset: 3px; }
.copy-block a:hover { color: var(--gold); }
article.post { max-width: 760px; margin: 0 auto; }
article.post p { margin-bottom: 20px; font-size: 15.5px; }
article.post h2 { font-family: var(--font-display); font-weight: 400; font-size: 28px; color: var(--navy-dark); margin: 36px 0 16px; }
article.post a { color: var(--navy); text-decoration: underline; text-decoration-color: rgba(168,132,74,0.6); text-underline-offset: 3px; }
article.post a.btn-primary { color: #fff; text-decoration: none; }
.post-meta { font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted); margin-bottom: 36px; }
.post-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 34px; display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.post-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 20px 44px rgba(26,26,24,0.07); }
.post-card h2 { font-family: var(--font-display); font-weight: 400; font-size: 23px; line-height: 1.3; color: var(--navy-dark); }
.post-card p { font-size: 14px; }
.post-card .read-more { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); font-weight: 500; }
.posts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* ---- Info cards (generic) ---------------------------------------------------------------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 44px; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 30px 32px; }
.info-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 21px; color: var(--navy-dark); margin-bottom: 10px; }
.info-card .price { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 8px; }
.info-card p { font-size: 14px; line-height: 1.75; }
.band.linen .info-card, .band.linen .review-card { background: var(--bg); }

/* ---- CTA banner --------------------------------------------------------------------------- */
.cta-banner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-banner .section-title { color: #fff; }
.cta-banner p { color: var(--on-dark-soft); margin-bottom: 34px; }

/* ---- FOOTER --------------------------------------------------------------------------------- */
footer.site-footer {
  background: var(--navy-dark);
  padding: 72px var(--pad-x) 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1240px; margin: 0 auto 52px; }
.footer-wordmark { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.08em; color: #fff; margin-bottom: 6px; }
.footer-tag { font-size: 9px; letter-spacing: 0.30em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 20px; }
.footer-brand-text { font-size: 13px; color: var(--on-dark-faint); line-height: 1.8; max-width: 300px; }
.footer-col-title { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 20px; font-weight: 500; }
.footer-links { display: flex; flex-direction: column; gap: 11px; list-style: none; }
.footer-links a { font-size: 13px; color: var(--on-dark-faint); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,0.30);
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ---- Responsive ------------------------------------------------------------------------------ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .voices { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  nav.site-nav { height: 68px; }
  .nav-toggle { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; }
  .nav-mobile-info { display: flex; flex-direction: row; align-items: center; gap: 12px; margin-left: auto; margin-right: 12px; }
  .nav-mobile-cta {
    font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--gold); text-decoration: none; white-space: nowrap;
    border: 1px solid var(--gold); border-radius: var(--radius); padding: 8px 14px;
  }
  .nav-mobile-phone { font-size: 12px; font-weight: 500; color: var(--gold); text-decoration: none; white-space: nowrap; }
  .wordmark { font-size: 16px; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: #0f2438; backdrop-filter: blur(16px);
    flex-direction: column; align-items: stretch; gap: 0; padding: 10px 0 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-height: calc(100vh - 68px); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 15px 28px; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.04); }
  /* Locations collapses behind its toggle so the menu fits one screen */
  .nav-dropdown-toggle::after { content: "▾"; margin-left: 8px; font-size: 10px; transition: transform 0.2s; display: inline-block; }
  .nav-dropdown.open .nav-dropdown-toggle::after { transform: rotate(180deg); }
  .nav-dropdown-menu { position: static; display: none; min-width: 0; padding: 0; background: rgba(27,58,82,0.35); border: 0; box-shadow: none; }
  /* On mobile the submenu is driven solely by the .open class (tap to toggle).
     The tapped toggle keeps focus, so :focus-within must NOT force it open —
     otherwise tapping again can't collapse it. */
  .nav-dropdown:not(.open):focus-within > .nav-dropdown-menu { display: none; }
  .nav-dropdown.open > .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { padding-left: 44px; font-size: 12px; }
  .nav-links .nav-cta { margin: 12px 28px 0; text-align: center; border-bottom: 1px solid var(--gold); }

  .hero { min-height: 0; padding: 130px 24px 64px; display: block; }
  .hero-photo { position: relative; width: calc(100% + 48px); margin: 0 -24px 36px; height: 380px; }
  .hero-photo::after { background: linear-gradient(to top, var(--navy-dark) 2%, rgba(15,36,56,0.05) 45%); }
  .hero-baseline { gap: 18px; }

  .page-hero { padding: 130px 24px 60px; }
  section.band { padding: 64px 24px; }
  .founders-grid, .booking-grid, .reviews-grid, .posts-grid { grid-template-columns: 1fr; }
  .founders-pair { padding-top: 0; padding-bottom: 56px; gap: 12px; }
  .founders-pair .founder-card:first-child { transform: none; }
  .founders-pair .founder-card:last-child { transform: translateY(36px); }
  .founder-card { width: 100%; }
  .promises-grid { grid-template-columns: 1fr; gap: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: stretch; }
  .services-tabs { width: 100%; }
  .tab-btn { flex: 1; padding: 13px 8px; }
  .packages-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .gallery-card { flex: 0 0 76%; }
}
@media (max-width: 480px) {
  .nav-mobile-phone { display: none; }
  .wordmark .wm-sub { letter-spacing: 0.18em; }
}
