/* ==========================================================================
   Legendary Travel — v3 (light, editorial luxury — the blc-travel direction)
   One light look. One accent (sage). One dark band (charcoal). Serif caps with
   italic emphasis, a small tracked sans for everything else.
   ========================================================================== */

:root {
  --cream: #faf9f6;
  --cream-deep: #f1eee7;
  --ink: #1f1d1a;
  --ink-soft: #5f5c57;
  --ink-faint: #8f8b84;
  --rule: #e4dfd6;
  --sage: #7c908e;
  --sage-deep: #6c807e;
  --charcoal: #24211d;
  --charcoal-2: #2e2a25;
  --white: #ffffff;

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

  --text-xs: 0.82rem;
  --text-sm: 1.0rem;
  --text-base: 1.15rem;
  --text-lg: 1.36rem;
  --text-xl: 1.5rem;
  --text-2xl: clamp(1.9rem, 2.4vw + 1rem, 2.9rem);
  --text-3xl: clamp(2.6rem, 4.2vw + 1rem, 4.6rem);
  --text-4xl: clamp(3.2rem, 6.5vw + 1rem, 7rem);

  --track: 0.18em;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --space-7: 8.5rem;

  --measure: 68ch;
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
html, body { min-height: 100%; overflow-x: clip; }
main, footer, header { overflow-x: clip; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--ink); color: var(--cream);
  padding: 0.6rem 1rem; z-index: 200; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.narrow { width: min(100% - 2 * var(--gutter), 760px); margin-inline: auto; }

/* Type ------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track);
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow--light { color: var(--cream); }
.eyebrow--serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--text-xl);
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.98;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}
.display--xl { font-size: var(--text-4xl); }
.display--lg { font-size: var(--text-3xl); }
.display--md { font-size: var(--text-2xl); line-height: 1.05; }
.display--sm { font-size: var(--text-xl); line-height: 1.15; }

.lede {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2vw + 1.1rem, 2.1rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
}
.lede em { font-style: italic; font-weight: 300; }

.body { max-width: var(--measure); color: var(--ink-soft); }
.body + .body { margin-top: var(--space-2); }
.body strong { color: var(--ink); font-weight: 500; }

.center { text-align: center; }
.center .body, .center .lede { margin-inline: auto; }

.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track);
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.5rem;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn::after { content: "\2192"; font-family: var(--font-body); }
.btn:hover { background: var(--ink); color: var(--cream); }
.btn--light { color: var(--cream); }
.btn--light:hover { background: var(--cream); color: var(--ink); }
.btn--solid { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--solid:hover { background: var(--cream); color: var(--ink); }

.link {
  font-size: var(--text-xs); font-weight: 500; letter-spacing: var(--track);
  text-transform: uppercase; text-decoration: none;
  display: inline-flex; gap: 0.6em; align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.link::after { content: "\2192"; }
.link:hover { border-bottom-color: currentColor; }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.site-header.is-scrolled { border-bottom-color: var(--rule); }
.site-header .container {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  min-height: 72px;
}
.wordmark {
  font-family: var(--font-display); text-decoration: none; color: var(--ink);
  font-size: 1.7rem; line-height: 1; letter-spacing: 0.04em;
  display: inline-flex; align-items: baseline; gap: 0.25em;
  justify-self: center;
}
.wordmark em { font-style: italic; font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 1.05em; }
.wordmark span { text-transform: uppercase; font-weight: 400; }

.main-nav ul { display: flex; gap: clamp(1.25rem, 3vw, 3rem); }
.main-nav--left ul { justify-content: flex-end; padding-right: clamp(1.5rem, 4vw, 4rem); }
.main-nav--right ul { justify-content: flex-start; padding-left: clamp(1.5rem, 4vw, 4rem); }
.main-nav a {
  font-size: var(--text-xs); font-weight: 500; letter-spacing: var(--track);
  text-transform: uppercase; text-decoration: none; color: var(--ink);
  padding: 0.5rem 0; border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { border-bottom-color: var(--ink); }

.nav-toggle {
  display: none; background: none; border: 0; padding: 0.5rem; cursor: pointer;
  width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px;
  justify-self: start;
}
.nav-toggle span { display: block; height: 1px; width: 26px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }

.mobile-nav {
  display: none; position: fixed; inset: 72px 0 0 0; z-index: 90;
  background: var(--cream); padding: var(--space-4) var(--gutter);
  flex-direction: column; gap: var(--space-2);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 2rem; text-transform: uppercase;
  text-decoration: none; letter-spacing: 0.04em; padding: 0.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.mobile-nav .btn { align-self: flex-start; margin-top: var(--space-3); font-family: var(--font-body); font-size: var(--text-xs); text-transform: uppercase; border-bottom: 1px solid currentColor; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .site-header .container { grid-template-columns: 44px 1fr 44px; }
  .nav-toggle { display: flex; }
  .wordmark { font-size: 1.4rem; }
}

/* Sections --------------------------------------------------------------- */
section { padding-block: var(--space-6); }
section.tight { padding-block: var(--space-5); }
section.flush { padding-block: 0; }
@media (max-width: 720px) { section { padding-block: var(--space-5); } }

/* Photos ----------------------------------------------------------------- */
.ph { overflow: hidden; background: var(--cream-deep); }
.ph img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.82) contrast(0.96) sepia(0.06) brightness(1.02);
}
.ph--45 { aspect-ratio: 4 / 5; }
.ph--34 { aspect-ratio: 3 / 4; }
.ph--23 { aspect-ratio: 2 / 3; }
.ph--sq { aspect-ratio: 1; }
.ph--land { aspect-ratio: 5 / 4; }

.photo-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  width: min(100% - 2 * var(--gutter), 1400px); margin-inline: auto;
  padding-top: var(--space-2);
}
.photo-pair .ph { aspect-ratio: 4 / 5; }
@media (max-width: 720px) {
  .photo-pair { grid-template-columns: 1fr; }
  .photo-pair .ph:nth-child(2) { display: none; }
  .photo-pair .ph { aspect-ratio: 3 / 4; }
}

/* Statement -------------------------------------------------------------- */
.statement { text-align: center; }
.statement .display { max-width: 16ch; margin-inline: auto; }
.statement .body { margin: var(--space-4) auto 0; max-width: 52ch; }

/* Collage ---------------------------------------------------------------- */
.collage {
  display: grid; grid-template-columns: 1fr 1.6fr 1fr; gap: var(--space-4);
  align-items: start;
}
.collage-section { padding-block: var(--space-2) var(--space-6); }
.collage .ph:nth-child(1) { margin-top: 18%; }
.collage .ph:nth-child(2) { aspect-ratio: 3 / 4; }
.collage .ph:nth-child(3) { margin-top: -8%; aspect-ratio: 1; }
@media (max-width: 720px) {
  .collage { grid-template-columns: 1fr 1fr; }
  .collage .ph:nth-child(2) { grid-column: 1 / -1; order: -1; }
  .collage .ph:nth-child(1), .collage .ph:nth-child(3) { margin-top: 0; }
}

/* Bands ------------------------------------------------------------------ */
.band { position: relative; color: var(--cream); isolation: isolate; }
.band--photo { background-size: cover; background-position: center; }
.band--photo::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, rgba(31, 29, 26, 0.72), rgba(31, 29, 26, 0.45));
}
.band--photo .display, .band--photo .eyebrow { color: var(--cream); }
.band--photo .body { color: rgba(250, 249, 246, 0.9); }
.band--sage { background: var(--sage); color: var(--ink); }
.band--sage .display { color: var(--cream); }
.band--sage .eyebrow { color: var(--ink); }
.band--sage .body { color: var(--ink); }
.band--charcoal { background: var(--charcoal); color: var(--cream); }
.band--charcoal .display, .band--charcoal .eyebrow { color: var(--cream); }
.band--charcoal .body { color: rgba(250, 249, 246, 0.82); }
.band--deep { background: var(--cream-deep); }

/* Services band with polaroid stack --------------------------------------- */
.services-band { padding-block: var(--space-7); }
.services-band .container {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--space-5); align-items: center;
}
.service-list { margin-top: var(--space-3); }
.service-list li {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem); line-height: 1.15;
  padding: 0.35em 0; border-bottom: 1px solid rgba(250, 249, 246, 0.25);
}
.service-list li:last-child { border-bottom: 0; }
.service-list li em { font-style: italic; text-transform: none; font-weight: 300; opacity: 0.85; }
.services-band .body { margin-top: var(--space-3); }
.services-band .btn { margin-top: var(--space-4); }

.polaroid-stack { position: relative; aspect-ratio: 1; }
.polaroid {
  position: absolute; width: 62%;
  background: var(--white); padding: 4% 4% 12%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transform: rotate(var(--r, 0deg));
  transition: transform 0.6s var(--ease-out);
}
.polaroid .ph { aspect-ratio: 1; }
.polaroid figcaption {
  position: absolute; left: 0; right: 0; bottom: 3%;
  text-align: center; font-family: var(--font-display); font-style: italic;
  color: var(--ink-soft); font-size: 1rem;
}
.polaroid:nth-child(1) { top: 0; right: 4%; --r: 6deg; z-index: 1; }
.polaroid:nth-child(2) { top: 24%; left: 2%; --r: -5deg; z-index: 2; }
.polaroid:nth-child(3) { bottom: 0; right: 10%; --r: 3deg; z-index: 3; }
.polaroid-stack:hover .polaroid { transform: rotate(0deg); }
@media (max-width: 900px) {
  .services-band .container { grid-template-columns: 1fr; }
  .polaroid-stack { max-width: 360px; margin-inline: auto; }
}
@media (max-width: 600px) {
  .polaroid-stack { aspect-ratio: auto; height: auto; }
  .polaroid { position: relative; width: 78%; margin-inline: auto; }
  .polaroid:nth-child(1), .polaroid:nth-child(2) { display: none; }
  .polaroid:nth-child(3) { --r: -3deg; bottom: auto; right: auto; }
}

/* Split ------------------------------------------------------------------ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: center;
}
.split--text-first .split-text { order: 0; }
.split .display { margin-top: var(--space-2); }
.split .body { margin-top: var(--space-3); }
.split .link, .split .btn { margin-top: var(--space-3); }
.split-photo { position: relative; }
.split-photo .ph--inset {
  position: absolute; width: 42%; right: -8%; bottom: -10%;
  box-shadow: 0 20px 40px rgba(31, 29, 26, 0.18);
}
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .split-photo .ph--inset { display: none; }
}

.name-display { font-size: clamp(3rem, 8vw, 6.5rem); line-height: 0.92; }

/* Placeholder tags -------------------------------------------------------- */
.tag {
  display: inline-block; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-soft); border: 1px dashed var(--ink-faint);
  padding: 0.3rem 0.6rem; margin-top: var(--space-2); background: rgba(250, 249, 246, 0.85);
}
.band--sage .tag, .band--photo .tag, .band--charcoal .tag { color: var(--ink); background: rgba(250, 249, 246, 0.9); }

/* Testimonial ------------------------------------------------------------ */
.testimonial { text-align: center; padding-block: var(--space-6); }
.testimonial blockquote { max-width: 34ch; margin-inline: auto; }
.testimonial .display--lg { font-size: clamp(2.2rem, 3.6vw + 0.5rem, 4rem); }
.testimonial .body { margin: var(--space-3) auto 0; max-width: 46ch; }
.testimonial cite {
  display: block; margin-top: var(--space-3);
  font-family: var(--font-display); font-style: italic; font-size: var(--text-lg); color: inherit;
}

/* Google reviews strip ---------------------------------------------------- */
.greviews { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.greviews-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: var(--space-2);
}
.stars { color: var(--ink); letter-spacing: 0.12em; font-size: 1.1rem; }
.rating { font-family: var(--font-display); font-size: 2rem; line-height: 1; margin-right: 0.4rem; }
.greviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-4); }
.greview {
  border: 1px dashed var(--rule); padding: var(--space-3); min-height: 180px;
  display: flex; flex-direction: column; justify-content: space-between; color: var(--ink-faint);
  font-style: italic; font-family: var(--font-display); font-size: 1.15rem; line-height: 1.4;
}
.greview { color: var(--ink-soft); }
.link--muted { color: var(--ink-soft); cursor: default; }
.greview span { font-family: var(--font-body); font-style: normal; font-size: var(--text-xs); letter-spacing: var(--track); text-transform: uppercase; }
.greviews .note { margin-top: var(--space-3); font-size: var(--text-sm); color: var(--ink-soft); max-width: var(--measure); }
@media (max-width: 800px) { .greviews-grid { grid-template-columns: 1fr; } }

/* Numbered list (process, beliefs, tiers) --------------------------------- */
.numbered { counter-reset: n; }
.numbered > li {
  display: grid; grid-template-columns: 3.5rem 1fr; gap: var(--space-2); align-items: baseline;
  padding-block: var(--space-2); border-bottom: 1px solid var(--rule);
}
.numbered > li::before {
  counter-increment: n; content: counter(n, decimal-leading-zero);
  font-size: var(--text-xs); letter-spacing: var(--track); font-weight: 500; color: inherit; opacity: 0.8;
}
.numbered--big > li { padding-block: var(--space-3); border-color: rgba(250, 249, 246, 0.25); }
.numbered--big > li .display { font-size: clamp(1.6rem, 3vw, 2.8rem); line-height: 1.1; }
.numbered--big > li:last-child { border-bottom: 0; }
.numbered h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; line-height: 1.2; }
.numbered p { margin-top: 0.35rem; color: var(--ink-soft); max-width: 52ch; }

/* Service tiers (services page) ------------------------------------------- */
.tier {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: center;
  padding-block: var(--space-5); border-top: 1px solid var(--rule);
}
.tier:nth-child(even) .tier-text { order: -1; }
.tier .no { font-size: var(--text-xs); letter-spacing: var(--track); color: var(--ink-soft); font-weight: 500; }
.tier .no strong { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; letter-spacing: 0; margin-left: 0.3rem; vertical-align: -0.15em; color: var(--ink); }
.tier .display { margin-top: 0; }
.tier .tagline { font-family: var(--font-display); font-style: italic; font-size: var(--text-xl); margin-top: var(--space-2); color: var(--ink); }
.tier .body { margin-top: var(--space-3); }
.tier .btn { margin-top: var(--space-3); }
@media (max-width: 800px) {
  .tier { grid-template-columns: 1fr; }
  .tier:nth-child(even) .tier-text { order: 0; }
}

/* Cards (More to explore) ------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); align-items: start; }
.card { text-decoration: none; display: block; }
.card:nth-child(2) { margin-top: var(--space-4); }
.card .ph { transition: transform 0.6s var(--ease-out); }
.card:hover .ph img { transform: scale(1.03); }
.card h3 {
  font-family: var(--font-display); font-weight: 400; font-size: var(--text-xl);
  margin-top: var(--space-2); line-height: 1.2;
}
.card .eyebrow { margin-top: var(--space-1); }
.ph img { transition: transform 0.8s var(--ease-out); }
@media (max-width: 720px) {
  .cards { grid-template-columns: 1fr; }
  .card:nth-child(2) { margin-top: 0; }
}

/* Journeys grid ----------------------------------------------------------- */
.journeys { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5) var(--space-4); }
.journey { text-decoration: none; display: block; }
.journey:nth-child(even) { margin-top: var(--space-5); }
.journey .place { font-family: var(--font-display); font-style: italic; font-size: var(--text-lg); margin-top: var(--space-2); color: var(--ink-soft); }
.journey h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.03em; font-size: clamp(1.5rem, 2.4vw, 2.2rem); line-height: 1.08; margin-top: 0.3rem; }
.journeys--4 { grid-template-columns: repeat(4, 1fr); }
.journeys--4 .journey:nth-child(even) { margin-top: var(--space-4); }
@media (max-width: 900px) { .journeys--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .journeys, .journeys--4 { grid-template-columns: 1fr; }
  .journey:nth-child(even), .journeys--4 .journey:nth-child(even) { margin-top: 0; }
}

/* CTA band ---------------------------------------------------------------- */
.cta-band { padding-block: var(--space-7); text-align: center; }
.cta-band.band--photo::before { background: rgba(31, 29, 26, 0.62); }
.cta-band .display { max-width: 14ch; margin-inline: auto; }
.cta-band .body { margin: var(--space-3) auto 0; max-width: 46ch; }
.cta-band .btn { margin-top: var(--space-4); }

/* Page hero (interior) ---------------------------------------------------- */
.page-hero { padding-block: var(--space-7); }
.page-hero .display { max-width: 14ch; }
.page-hero .display--sentence { max-width: 24ch; } /* About opening line: a full sentence, not a page title */
.page-hero.band--photo { min-height: 62vh; display: flex; align-items: flex-end; }
.page-hero.band--photo::before { background: linear-gradient(to top, rgba(31, 29, 26, 0.7), rgba(31, 29, 26, 0.2)); }

/* Manifesto --------------------------------------------------------------- */
.manifesto .display { max-width: 22ch; margin-inline: auto; line-height: 1.12; font-size: clamp(1.7rem, 3vw, 2.8rem); }

/* Polaroid row (memories) ------------------------------------------------- */
.polaroid-row { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-3); margin-top: var(--space-4); }
.polaroid-row .polaroid { position: static; width: min(240px, 44%); }
.polaroid-row .polaroid:nth-child(1) { --r: -4deg; }
.polaroid-row .polaroid:nth-child(2) { --r: 3deg; margin-top: 1.5rem; }
.polaroid-row .polaroid:nth-child(3) { --r: -2deg; }
.polaroid-row .polaroid:nth-child(4) { --r: 5deg; margin-top: 2rem; }
.polaroid-row .polaroid { display: block; }

/* Accordion (FAQ) --------------------------------------------------------- */
.faq { border-top: 1px solid var(--rule); counter-reset: q; }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none; cursor: pointer; display: grid; grid-template-columns: 3.5rem 1fr 2rem; gap: var(--space-2);
  align-items: baseline; padding-block: var(--space-3);
  font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 400; line-height: 1.25;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { counter-increment: q; content: counter(q, decimal-leading-zero); font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: var(--track); font-weight: 500; color: var(--ink-soft); }
.faq summary::after { content: "+"; font-family: var(--font-body); font-weight: 300; font-size: 1.6rem; line-height: 1; text-align: right; color: var(--ink-soft); transition: transform 0.3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 0 var(--space-3) 3.5rem; padding-left: calc(3.5rem + var(--space-2)); color: var(--ink-soft); max-width: calc(var(--measure) + 5rem); }
@media (max-width: 600px) {
  .faq summary { grid-template-columns: 2.4rem 1fr 1.5rem; }
  .faq .answer { padding-left: calc(2.4rem + var(--space-2)); }
}

/* Contact ----------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-6); align-items: start; }
.contact-details dl { display: grid; gap: var(--space-3); margin-top: var(--space-4); }
.contact-details dt { font-size: var(--text-xs); letter-spacing: var(--track); text-transform: uppercase; font-weight: 500; color: var(--ink-soft); }
.contact-details dd { font-family: var(--font-display); font-size: var(--text-xl); margin-top: 0.2rem; }
.contact-details dd a { text-decoration: none; border-bottom: 1px solid var(--rule); }
.contact-details dd a:hover { border-bottom-color: var(--ink); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.form { display: grid; gap: var(--space-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.field label { display: block; font-size: var(--text-xs); letter-spacing: var(--track); text-transform: uppercase; font-weight: 500; color: var(--ink-soft); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: transparent;
  border: 0; border-bottom: 1px solid var(--ink-faint); padding: 0.6rem 0; border-radius: 0;
}
.field textarea { min-height: 7rem; resize: vertical; }
.form-note { font-size: var(--text-sm); color: var(--ink-soft); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Footer ------------------------------------------------------------------ */
.site-footer { border-top: 1px solid var(--rule); padding-top: var(--space-5); }
.ig-head { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-2); flex-wrap: wrap; }
.ig-head .display { font-size: var(--text-2xl); }
.ig-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; margin-top: var(--space-3); }
.ig-strip .ph { aspect-ratio: 1; }
@media (max-width: 720px) { .ig-strip { grid-template-columns: repeat(3, 1fr); } .ig-strip .ph:nth-child(n + 4) { display: none; } }

.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-4);
  padding-block: var(--space-5); margin-top: var(--space-5); border-top: 1px solid var(--rule);
}
.footer-grid h4 { font-size: var(--text-xs); letter-spacing: var(--track); text-transform: uppercase; font-weight: 500; color: var(--ink-soft); margin-bottom: var(--space-2); }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { text-decoration: underline; }
.footer-grid li + li { margin-top: 0.4rem; }
.footer-brand .body { margin-top: var(--space-2); max-width: 38ch; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2);
  padding-block: var(--space-3); border-top: 1px solid var(--rule);
  font-size: var(--text-sm); color: var(--ink-soft);
}
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }
.credit { font-size: var(--text-xs); color: var(--ink-soft); }
.credit a { color: var(--ink-soft); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

/* Reveal ------------------------------------------------------------------ */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal--d1 { transition-delay: 0.12s; }
.js .reveal--d2 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* Utilities --------------------------------------------------------------- */
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ==========================================================================
   Motion layer (2026-08-24): parallax, book-flip reveals
   ========================================================================== */

/* Parallax: photo bands carry their image on a taller inner layer that the
   script moves at a fraction of scroll speed. Without JS it just sits still. */
.band--photo { background-image: none !important; }
.band-bg {
  position: absolute; left: 0; right: 0; top: -18%; bottom: -18%; z-index: -2;
  background-size: cover; background-position: center;
  will-change: transform;
}
.band--photo::before { z-index: -1; }
.band--photo { overflow: hidden; }

/* Photos that drift: the image is scaled up slightly so it can move without gaps. */
.ph[data-drift] img { transform: scale(1.06); will-change: transform; }

/* Book-flip: the tier photo turns in from the spine as it enters. */
.js .flip {
  opacity: 0;
  transform: perspective(1400px) rotateY(-28deg) translateX(-24px);
  transform-origin: left center;
  transition: opacity 0.9s var(--ease-out), transform 1.1s var(--ease-out);
}
.js .flip--right { transform: perspective(1400px) rotateY(28deg) translateX(24px); transform-origin: right center; }
.js .flip.is-visible { opacity: 1; transform: perspective(1400px) rotateY(0) translateX(0); }
.tier { perspective: 1400px; }
@media (prefers-reduced-motion: reduce) { .js .flip { opacity: 1; transform: none; } }

.ph { position: relative; }

/* Spacing: give the numbered tiers more air. */
.tier { padding-block: var(--space-6); gap: var(--space-6); }
.tier .tagline { margin-top: var(--space-3); }
.tier .body { margin-top: var(--space-4); }
.tier .btn { margin-top: var(--space-4); }
.statement { padding-block: var(--space-7); }

/* ==========================================================================
   v4 (2026-08-25): logo header, blue accent theme, hover preview, advisors,
   additional offerings, how-we-work
   ========================================================================== */
:root[data-theme="blue"] { --sage: #004d88; --sage-deep: #003c6b; }
:root[data-theme="blue"] .band--charcoal { background: #0b2f4d; }
:root[data-theme="blue"] .link, :root[data-theme="blue"] .btn:hover { }
:root[data-theme="blue"] .tier .no strong { color: #007ec4; }
:root[data-theme="blue"] .band--sage, :root[data-theme="blue"] .band--sage .eyebrow, :root[data-theme="blue"] .band--sage .body, :root[data-theme="blue"] .band--sage cite, :root[data-theme="blue"] .band--sage .numbered > li::before { color: var(--cream); }

.logo { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--ink); justify-self: center; }
.logo img { height: 46px; width: auto; display: block; }
.logo .wordmark { font-size: 1.35rem; justify-self: auto; }
.site-footer .logo img { height: 64px; }
@media (max-width: 900px) { .logo img { height: 38px; } .logo .wordmark { font-size: 1.1rem; } }
@media (max-width: 420px) { .logo .wordmark { font-size: 1rem; } .logo img { height: 36px; } }

/* Hover preview in the services band */
.services-band .container { grid-template-columns: 1fr 1.05fr; }
.service-list li { cursor: pointer; transition: opacity .25s; }
.service-list li a { text-decoration: none; display: block; transition: transform .3s var(--ease-out); }
.service-list li.is-active a { transform: translateX(0.4em); }
.service-list li:not(.is-active) { opacity: 0.55; }
.service-list:not(:hover) li:not(.is-active) { opacity: 0.55; }
.svc-preview { position: relative; min-height: 420px; }
.svc-card {
  position: absolute; inset: 0; display: grid; grid-template-rows: 1fr auto; gap: var(--space-2);
  opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity .5s var(--ease-out), transform .6s var(--ease-out), visibility 0s .5s;
  pointer-events: none;
}
.svc-card.is-active { opacity: 1; visibility: visible; transform: none; pointer-events: auto; transition-delay: 0s; }
.svc-card .ph { height: 100%; min-height: 300px; }
.svc-card .svc-tag { font-family: var(--font-display); font-style: italic; font-size: var(--text-xl); color: var(--cream); }
.svc-card .body { color: rgba(250,249,246,.9); max-width: 44ch; }
.svc-card .link { color: var(--cream); margin-top: 0.3rem; }
@media (max-width: 900px) { .svc-preview { min-height: 0; margin-top: var(--space-4); } .svc-card { position: relative; display: none; } .svc-card.is-active { display: grid; } .svc-card .ph { min-height: 220px; aspect-ratio: 4/3; } }

/* Advisors two-up */
.advisors { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.advisor .name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.05; margin-top: var(--space-3); }
.advisor .role { font-family: var(--font-display); font-style: italic; font-size: var(--text-lg); color: var(--ink-soft); margin-top: .3rem; }
.advisor .body { margin-top: var(--space-2); }
.advisor--text { align-self: center; }
@media (max-width: 720px) { .advisors { grid-template-columns: 1fr; } }

/* Additional offerings */
.offerings { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-4); }
.offering { border-top: 1px solid var(--rule); padding-top: var(--space-2); }
.offering h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--text-xl); line-height: 1.2; }
.offering p { color: var(--ink-soft); font-size: var(--text-sm); margin-top: .3rem; }
@media (max-width: 800px) { .offerings { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .offerings { grid-template-columns: 1fr; } }

/* Opener options on About */
.options { display: grid; gap: var(--space-3); margin-top: var(--space-4); }
.option { border: 1px dashed rgba(250,249,246,.4); padding: var(--space-3); }
.option .display { font-size: clamp(1.6rem, 3.4vw, 3rem); }
.option .eyebrow { color: rgba(250,249,246,.7); margin-bottom: .5rem; }

/* Social links */
.social { display: flex; gap: 0.75rem; align-items: center; }
.social a.icon { display: inline-flex; width: 38px; height: 38px; flex: 0 0 38px; align-items: center; justify-content: center; border: 1px solid var(--rule); border-radius: 50%; text-decoration: none; color: var(--ink); }
.social a.icon:hover { background: var(--ink); color: var(--cream); }
.social .link { margin-left: .5rem; white-space: nowrap; }
.social svg { width: 18px; height: 18px; fill: currentColor; }

/* giraffe / full-body frames: keep subject in frame */
.ph--fit img { object-position: center bottom; }

.services-band.band--photo::before { background: rgba(31,29,26,.64); }

/* Beyond the itinerary: heading + photo left, numbered list right (BLC-style) */
.extras { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-6); align-items: start; }
.extras-left .display { font-size: clamp(2.2rem, 4vw, 3.6rem); }
.extras-left .ph { margin-top: var(--space-4); max-width: 380px; }
.extras-list { margin: 0; padding: 0; list-style: none; }
.extras-list li { display: block; padding: var(--space-3) 0; border-bottom: 1px solid var(--rule); }
.extras-list li:last-child { border-bottom: 0; }

.extras-list h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 2.1vw, 2rem); line-height: 1.15; color: var(--sage); }
.extras-list p { color: var(--ink-soft); font-size: var(--text-sm); margin-top: .35rem; max-width: 46ch; }
.extras-list .link { margin-top: .6rem; }
@media (max-width: 800px) { .extras { grid-template-columns: 1fr; gap: var(--space-4); } .extras-left .ph { max-width: 100%; aspect-ratio: 4/5; } }

/* Blue accent: touchpoints that exist on every page, so the toggle is visible everywhere */
:root[data-theme="blue"] .display em { color: #004d88; }
:root[data-theme="blue"] .band--sage .display em, :root[data-theme="blue"] .band--charcoal .display em, :root[data-theme="blue"] .band--photo .display em, :root[data-theme="blue"] .cta-band .display em { color: inherit; }
:root[data-theme="blue"] .eyebrow { color: #004d88; }
:root[data-theme="blue"] .btn { border-color: #004d88; color: #004d88; }
:root[data-theme="blue"] .btn:hover, :root[data-theme="blue"] .btn--solid { background: #004d88; border-color: #004d88; color: var(--cream); }
:root[data-theme="blue"] .btn--light { border-color: currentColor; color: var(--cream); }
:root[data-theme="blue"] .btn--light:hover { background: var(--cream); color: #004d88; }
:root[data-theme="blue"] .link:hover, :root[data-theme="blue"] .main-nav a:hover, :root[data-theme="blue"] .main-nav a[aria-current="page"] { border-bottom-color: #004d88; color: #004d88; }
:root[data-theme="blue"] .tagline, :root[data-theme="blue"] .eyebrow--serif { color: #004d88; }
/* Eyebrows on dark bands stay cream in the blue theme: the navy accent (#004d88) on the navy band (#0b2f4d) was 1.6:1 */
:root[data-theme="blue"] .band--charcoal .eyebrow, :root[data-theme="blue"] .band--photo .eyebrow, :root[data-theme="blue"] .cta-band .eyebrow, :root[data-theme="blue"] .band--charcoal .eyebrow--serif { color: var(--cream); }
:root[data-theme="blue"] .stars { color: #007ec4; }

/* What we arrange: solid band, framed portrait preview (no photo-on-photo) */
.services-band.band--solid { background: var(--charcoal); color: var(--cream); }
.services-band.band--solid::before { display: none; }
.services-band.band--solid .eyebrow, .services-band.band--solid .display { color: var(--cream); }
.services-band.band--solid .body { color: rgba(250,249,246,.82); }
.services-band.band--solid .service-list li { border-bottom-color: rgba(250,249,246,.18); }
.services-band.band--solid .service-list li.is-active::before { content: "\2014"; margin-right: .5em; opacity: .7; }
:root[data-theme="blue"] .services-band.band--solid { background: #0b2f4d; }
.svc-card--framed { grid-template-rows: none; grid-template-columns: 240px 1fr; gap: var(--space-4); align-items: start; }
.svc-card--framed .ph { aspect-ratio: 4 / 5; height: auto; min-height: 0; padding: 10px; background: var(--cream); box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.svc-card--framed .ph img { filter: saturate(.9) contrast(.98); }
.svc-card--framed .svc-no { font-size: var(--text-xs); letter-spacing: var(--track); text-transform: uppercase; color: rgba(250,249,246,.7); font-weight: 500; }
.svc-card--framed .svc-tag { margin-top: .4rem; }
.svc-card--framed .body { margin-top: var(--space-2); }
:root[data-theme="blue"] .svc-card--framed .svc-no { color: #7fc0ea; }
@media (max-width: 900px) { .svc-card--framed { grid-template-columns: 1fr; } .svc-card--framed .ph { max-width: 260px; aspect-ratio: 4 / 5; } }

@media (max-width: 900px) {
  .services-band .container { grid-template-columns: 1fr; }
  .services-band.band--solid .service-list li.is-active::before { content: none; }
  .services-band.band--solid .service-list li.is-active { padding-left: 0; border-left: 2px solid rgba(250,249,246,.6); padding-left: .6em; }
  .svc-card--framed { grid-template-columns: 1fr; }
  .svc-card--framed .ph { max-width: 220px; }
}

/* Softer crossfade for the service preview */
.svc-card { transition: opacity 1.1s cubic-bezier(.4,0,.2,1), transform 1.2s cubic-bezier(.16,1,.3,1), filter 1.1s cubic-bezier(.4,0,.2,1), visibility 0s 1.1s; transform: translateY(10px) scale(.985); filter: blur(6px); }
.svc-card.is-active { transform: none; filter: blur(0); transition-delay: 0s, 0s, 0s, 0s; }
.svc-card--framed .ph { transition: box-shadow 1s cubic-bezier(.16,1,.3,1); }
.service-list li { transition: opacity .7s cubic-bezier(.4,0,.2,1); }
.service-list li a { transition: transform .6s cubic-bezier(.16,1,.3,1); }
@media (prefers-reduced-motion: reduce) { .svc-card { filter: none; transform: none; transition: opacity .3s; } }

/* R9-01 (2026-09-14): footer Instagram strip — her own photos, each tile links to the profile. */
.ig-strip a.ph { display: block; color: inherit; }
.ig-strip a.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ig-strip a.ph:hover img, .ig-strip a.ph:focus-visible img { transform: scale(1.04); }
.ig-strip a.ph:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }

/* ==========================================================================
   v5 (2026-09-14): changes from the Sept 14 website sync
   ========================================================================== */
/* R10-08 seller-of-travel notice */
.footer-bottom .legal { flex-basis: 100%; font-size: var(--text-xs); color: var(--ink-soft); line-height: 1.6; max-width: 90ch; }
.footer-bottom .legal .tag { margin-left: .5rem; vertical-align: middle; }

/* R10-01 hero: headline, then the photo pair as an accent, then the introduction */
.statement--hero { padding-bottom: var(--space-4); }
.statement--hero.band--charcoal { padding-bottom: var(--space-7); } /* R12-04: the home headline sits on the blue band above the photo pair */
.statement .display--sentence { max-width: 24ch; } /* a full sentence, not a title */
.photo-pair--accent { width: min(100% - 2 * var(--gutter), 960px); gap: 4px; padding-top: var(--space-6); } /* R12-06: breathing room under the blue hero band */
@media (max-width: 720px) { .photo-pair--accent { padding-top: var(--space-5); } }
.photo-pair--accent .ph { aspect-ratio: 4 / 3; }
.statement--intro { padding-top: var(--space-5); }
.statement--intro .body--lg { font-size: var(--text-lg); max-width: 58ch; margin-top: 0; line-height: 1.65; }
@media (max-width: 720px) { .photo-pair--accent .ph { aspect-ratio: 4 / 3; } }

/* R10-02 "What we arrange" preview: image on top, copy beneath at reading size */
.svc-card--framed { grid-template-columns: 1fr; grid-template-rows: auto auto; gap: var(--space-3); }
.svc-card--framed .ph { aspect-ratio: 16 / 10; width: 100%; max-width: none; padding: 8px; }
.svc-card--framed .svc-tag { font-size: var(--text-xl); margin-top: 0; }
.svc-card--framed .body { font-size: var(--text-base); max-width: 52ch; margin-top: var(--space-1); }
.svc-card--framed .link { font-size: var(--text-sm); }
.svc-preview { min-height: 520px; }
@media (max-width: 900px) { .svc-card--framed .ph { max-width: none; aspect-ratio: 4 / 3; } .svc-preview { min-height: 0; } }

/* R10-03 Google reviews section */
.greviews-rating { display: flex; align-items: center; gap: .5rem; }
.greviews-count { font-size: var(--text-sm); color: var(--ink-soft); }
.greviews-grid--live { align-items: start; }
.greview--live { border: 1px solid var(--rule); font-style: normal; font-family: var(--font-body); font-size: var(--text-base); line-height: 1.6; color: var(--ink); justify-content: flex-start; gap: var(--space-2); min-height: 0; background: var(--cream); }
.greview-head { display: flex; justify-content: space-between; align-items: center; }
.greview--live .stars { font-size: 1rem; letter-spacing: .08em; color: var(--sage); }
.stars--off { color: var(--ink-faint); }
.gmark { font-family: "Product Sans", "Google Sans", Arial, sans-serif; font-weight: 700; font-size: .95rem; letter-spacing: -.01em; }
.gmark span:nth-child(1) { color: #4285F4; } .gmark span:nth-child(2) { color: #EA4335; } .gmark span:nth-child(3) { color: #FBBC05; }
.gmark span:nth-child(4) { color: #4285F4; } .gmark span:nth-child(5) { color: #34A853; } .gmark span:nth-child(6) { color: #EA4335; }
.greview-text { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.45; }
.greview-text--clamp { display: -webkit-box; -webkit-line-clamp: 8; -webkit-box-orient: vertical; overflow: hidden; }
.greview--live .greview-meta { font-size: var(--text-sm); color: var(--ink-soft); font-family: var(--font-body); font-style: normal; letter-spacing: 0; text-transform: none; }
.greview--live .greview-meta a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rule); }
.greview--live .greview-more { margin-top: auto; }

/* R10-13 "More" expander for a longer bio */
.more { margin-top: var(--space-2); }
.more summary { list-style: none; cursor: pointer; display: inline-block; }
.more summary::-webkit-details-marker { display: none; }
.more summary .link::after { content: " \2193"; }
.more[open] summary .link::after { content: " \2191"; }
/* R14-04 open: the control moves to the end of the text and reads "Less" */
.more__open { display: none; }
.more[open] { display: flex; flex-direction: column; }
.more[open] summary { order: 1; align-self: flex-start; margin-top: var(--space-2); }
.more[open] .more__closed { display: none; }
.more[open] .more__open { display: inline; }

/* R10-18 Inquire: single-column form with the logo beneath it */
.contact-grid--single { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; gap: var(--space-4); }
.form-logo { text-align: center; padding-block: var(--space-6) var(--space-7); margin: 0; }
.form-logo img { width: 280px; max-width: 70%; height: auto; display: inline-block; }
@media (max-width: 720px) { .form-logo { padding-block: var(--space-5) var(--space-6); } .form-logo img { width: 220px; } }

/* R10-09 cookie consent bar (sits under the review widget's z-index 300, clear of its corner hints) */
.consent { position: fixed; left: 50%; bottom: 84px; transform: translate(-50%, 24px); z-index: 250; width: min(100% - 32px, 720px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-2);
  padding: var(--space-2) var(--space-3); background: var(--ink); color: var(--cream); box-shadow: 0 18px 40px rgba(0,0,0,.25);
  opacity: 0; transition: opacity .4s var(--ease-out), transform .5s var(--ease-out); }
.consent.is-in { opacity: 1; transform: translate(-50%, 0); }
.consent.is-leaving { opacity: 0; transform: translate(-50%, 12px); }
.consent-text { font-size: var(--text-sm); line-height: 1.5; max-width: 52ch; margin: 0; }
.consent-text a { color: var(--cream); }
.consent-actions { display: flex; gap: .5rem; }
.consent .btn { padding: .55rem 1.1rem; font-size: var(--text-xs); border-color: rgba(250,249,246,.5); color: var(--cream); }
.consent .btn--solid { background: var(--cream); color: var(--ink); border-color: var(--cream); }
@media (max-width: 720px) { .consent { bottom: 72px; } }
@media (prefers-reduced-motion: reduce) { .consent { transition: none; } }

/* R10-03/R10-01 fixes: [hidden] must win over display rules; the accent pair has no parallax */
[hidden] { display: none !important; }

/* R10-29 "What we arrange" preview: the active card sets the height (no more 520px pin), image 16:9 */
.svc-preview { min-height: 0; }
.svc-card.is-active { position: relative; }
.svc-card--framed { grid-template-rows: auto auto; gap: var(--space-3); }
.svc-card--framed .ph { aspect-ratio: 16 / 9; height: auto; min-height: 0; box-shadow: 0 12px 28px rgba(0,0,0,.3); }
.svc-card--framed > div:last-child { position: relative; z-index: 1; padding-top: 2px; }

/* R10-30 Home introduction sits on the blue band so the page is not all white until "What we arrange" */
.band.statement--intro { padding-block: var(--space-6); }
.band.statement--intro .body--lg { color: var(--cream); opacity: .92; }

/* R10-32 Services: tighter tiers with 4:3 images, and Beyond the itinerary on the blue band */
.tier { padding-block: var(--space-5); gap: var(--space-5); }
.tier .ph { aspect-ratio: 4 / 3; }
.extras-band { padding-block: var(--space-6); }
.extras-band .extras-list h3 { color: var(--cream); }
.extras-band .extras-list p { color: rgba(250,249,246,.82); }
.extras-band .extras-list li { border-bottom-color: rgba(250,249,246,.18); }
.extras-band .extras-list .link { color: var(--cream); }
.extras-band .extras-left .display { color: var(--cream); }

/* R10-33 breathing room around the blue introduction band */
.band.statement--intro { margin-block: var(--space-6) var(--space-5); padding-block: var(--space-6); }
@media (max-width: 720px) { .band.statement--intro { margin-block: var(--space-5) var(--space-4); } }

/* Production additions (2026-09-22): live inquiry form states. */
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.field--turnstile { min-height: 65px; }
.form-status { font-size: var(--text-sm); color: var(--ink-soft); margin: 0; }
.form-status--error { color: #9b1c1c; }
.form-success { display: grid; gap: var(--space-3); padding: var(--space-5) 0; }
.form-success .btn { justify-self: start; }
.btn[disabled] { opacity: 0.6; cursor: wait; }
