/* ==========================================================================
   Safari and Soul Journeys — design system
   Tokens → fonts → base → typography → layout → components → utilities
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Palette (derived from the brand board) */
  --cream: #f5f1e8;
  --surface: #fbf9f4;
  --sand: #c9b58f;
  --sand-tint: #ede5d3;
  --olive: #6b7052;
  --olive-deep: #3c4a2e;
  --olive-ink: #2f3b24;
  --earth: #4a2e14;
  --safari-gold: #a57c3c;
  --gold-light: #c9a66b;
  --gold-pale: #e3d3b3;
  --gold-text: #7f5d2b; /* small text on light grounds, 5.3:1 on cream */
  --charcoal: #2b2e33;
  --muted-text: #6e6a62;
  --border: rgba(165, 124, 60, 0.28);
  --border-strong: rgba(165, 124, 60, 0.55);

  /* Semantic */
  --bg: var(--cream);
  --fg: var(--charcoal);
  --fg-muted: var(--muted-text);
  --accent: var(--safari-gold);
  --link: var(--olive-deep);

  /* Type */
  --ff-serif: 'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --ff-sans: 'Manrope', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ff-script: 'Caveat', 'Bradley Hand', 'Segoe Script', cursive;

  --fs-display: clamp(2.6rem, 1.6rem + 4.2vw, 4.75rem);
  --fs-h1: clamp(2.4rem, 1.5rem + 3.6vw, 4.25rem);
  --fs-h2: clamp(2rem, 1.3rem + 2.4vw, 3.1rem);
  --fs-h3: clamp(1.45rem, 1.2rem + 0.9vw, 1.9rem);
  --fs-h4: 1.25rem;
  --fs-lead: clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --fs-eyebrow: 0.75rem;
  --fs-script: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem);

  --lh-tight: 1.08;
  --lh-snug: 1.25;
  --lh-body: 1.65;
  --track-caps: 0.18em;

  /* Space */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --section: clamp(4rem, 8vw, 9rem);
  --section-tight: clamp(3rem, 5vw, 5.5rem);

  /* Layout */
  --container: 82.5rem; /* 1320px */
  --container-narrow: 46rem;
  --container-prose: 68ch;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 5rem;
  --utility-h: 2.25rem;

  /* Shape + motion */
  --radius: 4px;
  --radius-lg: 6px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 280ms;
  --dur-slow: 700ms;
  --shadow-sticky: 0 -6px 24px rgba(43, 46, 51, 0.12);

  color-scheme: light;
}

/* --------------------------------------------------------------------------
   2. Fonts (self-hosted, latin subsets)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/CormorantGaramond.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/CormorantGaramond-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/Manrope.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/Caveat.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------------------
   3. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
a {
  color: var(--link);
  text-decoration-color: var(--border-strong);
  text-underline-offset: 0.18em;
  transition: color var(--dur) var(--ease), text-decoration-color var(--dur) var(--ease);
}
a:hover {
  color: var(--safari-gold);
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
ul[role='list'],
.list-plain {
  list-style: none;
}
p {
  margin: 0 0 1.25em;
}
p:last-child {
  margin-bottom: 0;
}
hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: var(--space-5) 0;
}
:focus-visible {
  outline: 2px solid var(--safari-gold);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection {
  background: var(--gold-pale);
  color: var(--charcoal);
}
[hidden] {
  display: none !important;
}

/* --------------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
.display {
  font-family: var(--ff-serif);
  font-weight: 500;
  line-height: var(--lh-snug);
  letter-spacing: 0.005em;
  margin: 0 0 0.5em;
  color: inherit;
  text-wrap: balance;
}
h1,
.display {
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
}
.display {
  font-size: var(--fs-display);
}
h2 {
  font-size: var(--fs-h2);
}
h3 {
  font-size: var(--fs-h3);
}
h4 {
  font-size: var(--fs-h4);
  font-family: var(--ff-sans);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: var(--container-prose);
  text-wrap: pretty;
}
.section--olive .lead,
.section--dark .lead {
  color: var(--gold-pale);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--ff-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 0 0 1.25rem;
}
.eyebrow::before {
  color: var(--safari-gold);
  content: '';
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}
.eyebrow--plain::before {
  display: none;
}
.script {
  font-family: var(--ff-script);
  font-size: var(--fs-script);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  color: var(--safari-gold);
  margin: 0 0 0.6rem;
}
.caps {
  font-family: var(--ff-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
}
.small {
  font-size: var(--fs-small);
}
.muted {
  color: var(--fg-muted);
}
.prose {
  max-width: var(--container-prose);
  text-wrap: pretty;
}
.prose h2,
.prose h3 {
  margin-top: 1.6em;
}
.prose h2:first-child,
.prose h3:first-child {
  margin-top: 0;
}
.prose ul,
.prose ol {
  padding-left: 1.2em;
  margin: 0 0 1.25em;
}
.prose li + li {
  margin-top: 0.4em;
}
blockquote {
  margin: 0;
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
  line-height: 1.35;
  text-wrap: pretty;
}
.rule {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--safari-gold);
  margin: 0 0 1.5rem;
  transform-origin: left center;
}
.rule--center {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}
.rule-text {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
}
.rule-text::before,
.rule-text::after {
  content: '';
  flex: 0 0 auto;
  width: clamp(2rem, 6vw, 4rem);
  height: 1px;
  background: var(--safari-gold);
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   5. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow {
  max-width: var(--container-narrow);
}
.container--wide {
  max-width: calc(var(--container) + 8rem);
}
.section {
  padding-block: var(--section);
  position: relative;
}
.section--tight {
  padding-block: var(--section-tight);
}
.section--flush-top {
  padding-top: 0;
}
.section--olive {
  background: var(--olive-deep);
  color: var(--cream);
}
.section--olive .eyebrow {
  color: var(--gold-pale);
}
.section--olive .script {
  color: var(--gold-light);
}
.section--olive a {
  color: var(--cream);
}
.section--olive a:hover {
  color: var(--gold-light);
}
.section--olive .btn {
  color: var(--btn-fg); /* buttons keep their own foreground inside olive panels */
}
.section--olive .rule,
.section--olive .rule-text::before,
.section--olive .rule-text::after {
  background: var(--gold-light);
}
.section--sand {
  background: var(--sand-tint);
}
.section--surface {
  background: var(--surface);
}
.section-head {
  max-width: var(--container-narrow);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .eyebrow {
  justify-content: center;
}
.section-head--center .lead {
  margin-inline: auto;
}
.section-head h2 {
  margin-bottom: 0.6em;
}
.section-head--wide {
  max-width: none;
  display: grid;
  gap: var(--space-3) var(--space-6);
  align-items: end;
}
@media (min-width: 64em) {
  .section-head--wide {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
  .section-head--wide .section-head__aside {
    justify-self: end;
    text-align: right;
  }
}
.grid {
  display: grid;
  gap: var(--space-4);
}
.grid--2,
.grid--3 {
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 40em) {
  .grid--2,
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 64em) {
  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* Overlay cards read well small, so go two-up on phones */
@media (min-width: 22.5em) and (max-width: 39.99em) {
  .grid--overlay {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2);
  }
  .grid--overlay .card--overlay .card__body {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  .grid--overlay .card--overlay .card__title {
    font-size: 1.3rem;
  }
  .grid--overlay .card--overlay .card__meta {
    font-size: 0.75rem;
  }
  .grid--overlay .card--overlay .card__eyebrow {
    display: none;
  }
  .grid--overlay .card--overlay .media::after {
    background: linear-gradient(0deg, rgba(43, 46, 51, 0.82) 0%, rgba(43, 46, 51, 0.3) 45%, rgba(43, 46, 51, 0) 70%);
  }
}
.grid--4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 48em) {
  .grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.stack > * + * {
  margin-top: var(--space-3);
}
.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  align-items: center;
}
.center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-fg: var(--charcoal);
  --btn-bg: transparent;
  --btn-border: var(--safari-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 3rem;
  padding: 0.85rem 1.7rem;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-border);
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.btn .icon {
  width: 1rem;
  height: 1rem;
  transition: transform var(--dur) var(--ease);
}
.btn:hover,
.btn:focus-visible {
  --btn-bg: var(--safari-gold);
  --btn-fg: var(--cream);
  color: var(--btn-fg);
}
.btn:hover .icon,
.btn:focus-visible .icon {
  transform: translateX(4px);
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  --btn-fg: var(--cream);
  --btn-bg: var(--olive-deep);
  --btn-border: var(--olive-deep);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  --btn-bg: var(--olive-ink);
  --btn-border: var(--olive-ink);
  --btn-fg: var(--cream);
}
.btn--gold {
  --btn-fg: var(--charcoal);
  --btn-bg: var(--gold-light);
  --btn-border: var(--gold-light);
}
.btn--gold:hover,
.btn--gold:focus-visible {
  --btn-bg: var(--safari-gold);
  --btn-border: var(--safari-gold);
  --btn-fg: var(--cream);
}
.btn--light {
  --btn-fg: var(--cream);
  --btn-border: var(--gold-light);
}
.btn--light:hover,
.btn--light:focus-visible {
  --btn-bg: var(--gold-light);
  --btn-fg: var(--charcoal);
}
.btn--text {
  min-height: 0;
  padding: 0.35rem 0;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  border-radius: 0;
  background: transparent !important;
}
.btn--text:hover,
.btn--text:focus-visible {
  --btn-fg: var(--safari-gold);
  color: var(--safari-gold);
  border-bottom-color: var(--safari-gold);
}
.section--olive .btn--text {
  --btn-fg: var(--cream);
  border-bottom-color: var(--gold-light);
}
.section--olive .btn--text:hover {
  --btn-fg: var(--gold-light);
}
.btn--block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   7. Header, navigation, drawer, sticky CTA
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--olive-deep);
  color: var(--cream);
  border-radius: var(--radius);
  text-decoration: none;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus {
  top: 1rem;
}

.utility {
  display: none;
  background: var(--sand-tint);
  color: var(--olive-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.utility__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--utility-h);
  gap: var(--space-3);
}
.utility a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.utility a:hover {
  color: var(--safari-gold);
}
.utility .icon {
  width: 0.9rem;
  height: 0.9rem;
}
@media (min-width: 64em) {
  .utility {
    display: block;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.site-header.is-condensed {
  border-bottom-color: var(--border);
}
.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  gap: var(--space-3);
}
@media (min-width: 64em) {
  .header-bar {
    grid-template-columns: auto 1fr auto;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--charcoal);
  justify-self: center;
}
.brand__mark {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--safari-gold);
  flex: 0 0 auto;
}
.brand__type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.brand__sub {
  font-family: var(--ff-sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-top: 0.35rem;
  padding-left: 0.1em;
}
@media (max-width: 30em) {
  .brand__type {
    display: none;
  }
}
@media (min-width: 64em) {
  .brand {
    justify-self: start;
  }
  .brand__mark {
    width: 3.1rem;
    height: 3.1rem;
  }
  .brand__name {
    font-size: 1.15rem;
  }
}

.primary-nav {
  display: none;
}
@media (min-width: 64em) {
  .primary-nav {
    display: block;
    justify-self: center;
  }
  .primary-nav ul {
    display: flex;
    gap: clamp(1.25rem, 2.5vw, 2.5rem);
    list-style: none;
  }
  .primary-nav a {
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--charcoal);
  }
  .primary-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--safari-gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--dur-slow) var(--ease-out);
  }
  .primary-nav a:hover::after,
  .primary-nav a:focus-visible::after,
  .primary-nav a[aria-current='page']::after {
    transform: scaleX(1);
  }
  .primary-nav a[aria-current='page'] {
    color: var(--olive-deep);
  }
}

.header-cta {
  display: none;
}
@media (min-width: 64em) {
  .header-cta {
    display: inline-flex;
    justify-self: end;
  }
}

.nav-toggle {
  justify-self: start;
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: -0.5rem;
  border-radius: 50%;
  color: var(--charcoal);
}
.nav-toggle .icon {
  width: 1.5rem;
  height: 1.5rem;
}
.nav-toggle .icon--close {
  display: none;
}
.nav-toggle[aria-expanded='true'] .icon--menu {
  display: none;
}
.nav-toggle[aria-expanded='true'] .icon--close {
  display: block;
}
.header-mail {
  justify-self: end;
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -0.5rem;
  color: var(--charcoal);
}
.header-mail .icon {
  width: 1.35rem;
  height: 1.35rem;
}
@media (min-width: 64em) {
  .nav-toggle,
  .header-mail {
    display: none;
  }
}

.drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 40;
  background: var(--cream);
  overflow-y: auto;
  padding: var(--space-4) var(--gutter) var(--space-7);
  transform: translateY(-1rem);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    visibility 0s linear var(--dur);
}
.drawer.is-open {
  transform: none;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.drawer__nav ul {
  list-style: none;
}
.drawer__nav li + li {
  border-top: 1px solid var(--border);
}
.drawer__nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  font-family: var(--ff-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
}
.drawer__nav a .icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--safari-gold);
}
.drawer__nav a[aria-current='page'] {
  color: var(--olive-deep);
}
.drawer__footer {
  margin-top: var(--space-5);
  display: grid;
  gap: var(--space-3);
}
.drawer__footer .btn {
  width: 100%;
}
.drawer__strap {
  font-family: var(--ff-script);
  font-size: 1.6rem;
  color: var(--safari-gold);
}
body.drawer-open {
  overflow: hidden;
}
@media (min-width: 64em) {
  .drawer {
    display: none;
  }
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  padding: 0.75rem var(--gutter) calc(0.75rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--cream) 94%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-sticky);
  transform: translateY(0);
  transition: transform var(--dur) var(--ease);
}
.sticky-cta .btn {
  min-height: 2.9rem;
}
.sticky-cta .btn--icon {
  width: 2.9rem;
  padding: 0;
}
body.drawer-open .sticky-cta,
.sticky-cta.is-hidden {
  transform: translateY(110%);
}
@media (min-width: 64em) {
  .sticky-cta {
    display: none;
  }
}
@media (max-width: 63.99em) {
  body {
    padding-bottom: 4.6rem;
  }
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(calc(100svh - var(--header-h)), 60rem);
  color: var(--cream);
  background: var(--olive-ink);
  overflow: hidden;
  isolation: isolate;
}
.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus, 50% 55%);
  z-index: -2;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(43, 46, 51, 0.28) 0%, rgba(43, 46, 51, 0) 28%),
    linear-gradient(0deg, rgba(47, 59, 36, 0.82) 0%, rgba(47, 59, 36, 0.48) 40%, rgba(47, 59, 36, 0.18) 70%, rgba(47, 59, 36, 0.04) 100%);
}
.hero__content {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(4rem, 9vw, 8rem);
  max-width: 50rem;
}
.hero__script {
  color: var(--cream);
  opacity: 0.92;
}
.hero__title {
  font-size: var(--fs-display);
  color: var(--cream);
  margin-bottom: 0.45em;
  text-shadow: 0 2px 24px rgba(43, 46, 51, 0.35);
}
.hero__script,
.hero__lead {
  text-shadow: 0 1px 14px rgba(43, 46, 51, 0.45);
}
.hero__lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--gold-pale);
  max-width: 34rem;
  margin-bottom: 2rem;
  text-wrap: pretty;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  align-items: center;
}
.hero__strap {
  position: absolute;
  right: var(--gutter);
  bottom: 2.25rem;
  display: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  opacity: 0.9;
}
@media (min-width: 64em) {
  .hero__strap {
    display: block;
  }
}
.hero--compact {
  min-height: clamp(22rem, 55vh, 34rem);
}
.hero--compact .hero__content {
  padding-block: clamp(3rem, 6vw, 5rem);
}

/* Page hero (inner pages) */
.page-hero {
  padding-block: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 4vw, 3.5rem);
}
.page-hero .breadcrumb {
  margin-bottom: 1.5rem;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.breadcrumb li + li::before {
  content: '·';
  margin-right: 0.6rem;
  color: var(--safari-gold);
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--safari-gold);
}

/* --------------------------------------------------------------------------
   9. Cards, pillars, media
   -------------------------------------------------------------------------- */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand-tint);
}
.media picture {
  display: block;
  position: absolute;
  inset: 0;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, 50% 50%);
}
.media--3x4 {
  aspect-ratio: 3 / 4;
}
.media--4x5 {
  aspect-ratio: 4 / 5;
}
.media--4x3 {
  aspect-ratio: 4 / 3;
}
.media--16x9 {
  aspect-ratio: 16 / 9;
}
.media--21x9 {
  aspect-ratio: 21 / 9;
}
.media--square {
  aspect-ratio: 1;
}
.media--frame {
  padding: 0.5rem;
  border: 1px solid var(--border);
  background: transparent;
}
.media--frame picture {
  inset: 0.5rem;
}
.media--frame img {
  border-radius: 2px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: inherit;
  text-decoration: none;
}
.card .media img {
  transition: transform 1.2s var(--ease-out);
}
.card:hover .media img,
.card:focus-within .media img {
  transform: scale(1.035);
}
.card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.card__body .rule {
  margin-bottom: 0.6rem;
  transition: width var(--dur-slow) var(--ease-out);
}
.card:hover .card__body .rule {
  width: 4.5rem;
}
.card__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.card__title {
  font-size: var(--fs-h3);
  margin: 0;
}
.card__title a {
  color: inherit;
  text-decoration: none;
}
.card__title a::after {
  content: '';
  position: absolute;
  inset: 0;
}
.card__meta {
  color: var(--fg-muted);
  font-size: var(--fs-small);
}
.card__text {
  color: var(--fg-muted);
  margin: 0.25rem 0 0;
  text-wrap: pretty;
}
.card__cta {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-deep);
}
.card__cta .icon {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform var(--dur) var(--ease);
}
.card:hover .card__cta .icon {
  transform: translateX(4px);
}
.section--olive .card__meta,
.section--olive .card__text {
  color: var(--gold-pale);
}
.section--olive .card__cta,
.section--olive .card__eyebrow {
  color: var(--gold-pale);
}

/* Overlay card (destinations) */
.card--overlay .media {
  aspect-ratio: 3 / 4;
}
.card--overlay .media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(43, 46, 51, 0.7) 0%, rgba(43, 46, 51, 0.15) 45%, rgba(43, 46, 51, 0) 70%);
  transition: opacity var(--dur-slow) var(--ease);
}
.card--overlay .card__body {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  color: var(--cream);
  gap: 0.2rem;
}
.card--overlay .card__body .rule {
  background: var(--gold-light);
}
.card--overlay .card__eyebrow {
  color: var(--gold-pale);
}
.card--overlay .card__meta {
  color: var(--gold-pale);
}

/* Pillars */
.pillars {
  display: grid;
  gap: var(--space-4) var(--space-4);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 60em) {
  .pillars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.pillar__icon {
  width: 2rem;
  height: 2rem;
  color: var(--safari-gold);
}
.pillar__title {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0.25rem 0 0;
}
.pillar__text {
  color: var(--fg-muted);
  font-size: var(--fs-small);
  margin: 0;
  text-wrap: pretty;
}
.section--olive .pillar {
  border-top-color: rgba(201, 166, 107, 0.35);
}
.section--olive .pillar__icon {
  color: var(--gold-light);
}
.section--olive .pillar__text {
  color: var(--gold-pale);
}

/* Horizontal scroll strip (experiences) */
.strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(78vw, 20rem);
  gap: var(--space-3);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  padding-inline: var(--gutter);
  padding-bottom: 0.5rem;
  margin-inline: calc(-1 * var(--gutter));
  scrollbar-width: none;
}
.strip::-webkit-scrollbar {
  display: none;
}
.strip > * {
  scroll-snap-align: start;
}
@media (min-width: 64em) {
  .strip {
    grid-auto-columns: 22rem;
  }
}
.strip-nav {
  display: flex;
  gap: 0.5rem;
}
.strip-nav button {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--charcoal);
  transition:
    background-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}
.strip-nav button:hover {
  background: var(--safari-gold);
  color: var(--cream);
}
.strip-nav .icon {
  width: 1rem;
  height: 1rem;
}

/* --------------------------------------------------------------------------
   10. Editorial blocks
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 60em) {
  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(3rem, 7vw, 7rem);
  }
  .split--reverse > :first-child {
    order: 2;
  }
}
.split__media {
  position: relative;
}
.split__media--offset {
  padding: 0 0 2.5rem 2.5rem;
}
.split__media--offset::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 70%;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  z-index: 0;
}
.split__media--offset .media {
  position: relative;
  z-index: 1;
}
.split__body {
  max-width: 34rem;
}

.editorial {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(26rem, 70vh, 44rem);
  color: var(--cream);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.editorial__media,
.editorial__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, 50% 50%);
  z-index: -2;
}
.editorial__media img {
  transform: scale(1.08);
}
.editorial::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(47, 59, 36, 0.42);
}
.editorial__content {
  padding-block: var(--section);
  max-width: 44rem;
}
.editorial__content .script {
  font-size: clamp(2.2rem, 1.6rem + 2.8vw, 3.8rem);
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.editorial__content p:not(.script) {
  color: var(--gold-pale);
  font-size: var(--fs-lead);
}

/* Steps */
.steps {
  display: grid;
  gap: var(--space-4);
  counter-reset: step;
}
@media (min-width: 48em) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 64em) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.step {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.step__num {
  font-family: var(--ff-serif);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  color: var(--safari-gold);
  margin-bottom: 0.75rem;
}
.step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4em;
}
.step p {
  color: var(--fg-muted);
  font-size: var(--fs-small);
}
.section--olive .step {
  border-top-color: rgba(201, 166, 107, 0.35);
}
.section--olive .step__num {
  color: var(--gold-light);
}
.section--olive .step p {
  color: var(--gold-pale);
}

/* Testimonials */
.testimonial {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.testimonial__quote {
  font-size: clamp(1.25rem, 1.05rem + 0.7vw, 1.6rem);
}
.testimonial__quote::before {
  content: '\201C';
  display: block;
  font-size: 3rem;
  line-height: 0.6;
  color: var(--safari-gold);
  margin-bottom: 0.6rem;
  font-style: normal;
}
.testimonial__by {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.testimonial__by strong {
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.2rem;
}

/* CTA band */
.cta-band {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}
@media (min-width: 60em) {
  .cta-band {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: var(--space-6);
  }
}
.cta-band__roundel {
  width: clamp(7rem, 12vw, 10rem);
  color: var(--gold-light);
}
.cta-band h2 {
  margin-bottom: 0.4em;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
}

/* Fact list (destination facts) */
.facts {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
@media (min-width: 48em) {
  .facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .split .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4) var(--space-4);
  }
}
.fact dt {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.35rem;
}
.fact dd {
  margin: 0;
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  text-wrap: balance;
  font-weight: 500;
  line-height: 1.2;
}

/* Itinerary day list */
.days {
  list-style: none;
  border-top: 1px solid var(--border);
}
.days li {
  display: grid;
  gap: 0.5rem 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 48em) {
  .days li {
    grid-template-columns: 8rem minmax(0, 1fr);
  }
}
.days__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
  padding-top: 0.35rem;
}
.days h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3em;
}
.days p {
  color: var(--fg-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. Forms
   -------------------------------------------------------------------------- */
.form {
  display: grid;
  gap: 1.25rem;
}
.form__row {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 40em) {
  .form__row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.field {
  display: grid;
  gap: 0.45rem;
}
.field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-deep);
}
.field label .opt {
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--fg-muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  transition:
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.field textarea {
  min-height: 9rem;
  resize: vertical;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a57c3c' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--safari-gold);
  box-shadow: 0 0 0 3px rgba(165, 124, 60, 0.18);
}
.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #a4462d;
}
.field__hint {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.form__status {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--sand-tint);
  font-size: var(--fs-small);
}
.form__status[data-state='success'] {
  border-color: var(--olive);
  background: #e9ecdf;
  color: var(--olive-ink);
}
.form__status[data-state='error'] {
  border-color: #c98a75;
  background: #f6e5df;
  color: #6b2c1a;
}
.form__consent {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--olive-deep);
  color: var(--gold-pale);
  margin-top: auto;
}
.footer-main {
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: var(--space-5) var(--space-6);
}
@media (min-width: 48em) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 64em) {
  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}
.footer-brand {
  display: grid;
  gap: 1.25rem;
  max-width: 22rem;
}
.footer-brand__lockup {
  width: 12rem;
  color: var(--gold-light);
}
.footer-brand p {
  font-size: var(--fs-small);
  color: var(--gold-pale);
}
.footer-heading {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin: 0 0 1.1rem;
}
.footer-nav ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.footer-nav a,
.footer-contact a {
  color: var(--cream);
  text-decoration: none;
  font-size: var(--fs-small);
}
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}
.footer-contact {
  display: grid;
  gap: 0.6rem;
  font-size: var(--fs-small);
}
.footer-contact .icon {
  width: 1rem;
  height: 1rem;
  color: var(--gold-light);
  flex: 0 0 auto;
}
.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.social {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin-top: 0.5rem;
}
.social a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(201, 166, 107, 0.4);
  border-radius: 50%;
  color: var(--gold-light);
  transition:
    background-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}
.social a:hover {
  background: var(--gold-light);
  color: var(--olive-deep);
}
.social .icon {
  width: 1rem;
  height: 1rem;
}
.footer-base {
  background: var(--earth);
  color: #d9c8b1;
  font-size: 0.78rem;
}
.footer-base__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem var(--space-4);
  padding-block: 1.25rem;
}
.footer-base a {
  color: inherit;
  text-decoration: none;
}
.footer-base a:hover {
  color: var(--gold-light);
}
.footer-base ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
}

/* --------------------------------------------------------------------------
   13. Utilities + motion states
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.icon {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.icon--fill {
  fill: currentColor;
  stroke: none;
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mt-3 {
  margin-top: var(--space-3);
}
.mt-4 {
  margin-top: var(--space-4);
}
.mt-5 {
  margin-top: var(--space-5);
}

/* Reveal targets: hidden only when JS is present and motion is allowed.
   motion.js (GSAP) animates these in; without GSAP main.js falls back to
   IntersectionObserver. */
html.js.motion [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}
html.js.motion [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}
html.js.motion [data-reveal].is-visible[data-reveal-delay='1'] {
  transition-delay: 0.12s;
}
html.js.motion [data-reveal].is-visible[data-reveal-delay='2'] {
  transition-delay: 0.24s;
}
html.js.motion [data-reveal].is-visible[data-reveal-delay='3'] {
  transition-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .site-header,
  .utility,
  .sticky-cta,
  .drawer,
  .site-footer .social {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}

/* --------------------------------------------------------------------------
   14. Enquiry form (contact page) — additive, namespaced .enquiry*
   -------------------------------------------------------------------------- */
/* The sheet: paper laid on the cream desk. */
.enquiry {
  --enquiry-pad: clamp(1.25rem, 1rem + 2.2vw, 2.75rem);
  --enquiry-error: #a4462d;
  --enquiry-ring: 0 0 0 3px rgba(165, 124, 60, 0.18);
  --enquiry-rule: 1px solid var(--border);
  position: relative;
  gap: 1.5rem;
  padding: var(--enquiry-pad);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  min-width: 0;
}
.enquiry .field {
  align-content: start;
  min-width: 0;
}
/* Paired fields: labels may wrap to two lines; keep the inputs on one baseline. */
.enquiry .form__row--2 > .field,
.enquiry__dates > .field,
.enquiry__party > .field {
  align-content: stretch;
  grid-template-rows: minmax(0, 1fr) auto auto;
}

/* Chapter progress: "I · About you — II · Your journey" */
.enquiry__progress {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5rem;
  margin: 0 0 0.25rem;
  padding: 0;
  list-style: none;
  border-bottom: var(--enquiry-rule);
}
.enquiry__progress-step {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: -1px;
  padding: 0.35rem 0 0.9rem;
  border-bottom: 1px solid transparent;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition:
    color var(--dur) var(--ease),
    border-color var(--dur-slow) var(--ease-out);
}
.enquiry__progress-step[aria-current='step'] {
  color: var(--olive-deep);
  border-bottom-color: var(--safari-gold);
}
.enquiry__progress-step[aria-current='step'] .enquiry__numeral {
  color: var(--cream);
  background: var(--safari-gold);
  border-color: var(--safari-gold);
}
@media (max-width: 30em) {
  .enquiry__progress {
    gap: 0 1rem;
  }
  .enquiry__progress-step {
    gap: 0.45rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }
  .enquiry__progress .enquiry__numeral {
    width: 1.65rem;
    height: 1.65rem;
    font-size: 0.85rem;
  }
}

/* Small gold numerals used by the progress, the legends and the aside timeline */
.enquiry__numeral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid var(--safari-gold);
  border-radius: 50%;
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: none;
  color: var(--gold-text);
  transition:
    background-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}

/* Chapters, not steps */
.enquiry__section {
  position: relative;
  display: grid;
  gap: 1.35rem;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.enquiry__rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.5rem 0;
  color: var(--safari-gold);
}
.enquiry__rule::before,
.enquiry__rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.enquiry__rule .icon {
  width: 1rem;
  height: 1rem;
}
.enquiry[data-step='about'] .enquiry__rule {
  display: none;
}
.enquiry__legend {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0;
  margin: 0 0 0.35rem;
  font-family: var(--ff-serif);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: var(--lh-snug);
  color: var(--olive-deep);
}
.enquiry__legend .enquiry__numeral {
  width: 2.1rem;
  height: 2.1rem;
}
.enquiry__sub {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--fg-muted);
}

/* Labels: the site eyebrow, with handwritten margin notes for hints */
.enquiry .field > label,
.enquiry .field__label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0.6rem;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-deep);
}
.enquiry__note {
  font-family: var(--ff-script);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  color: var(--gold-text);
}

/* Inputs as ruled lines: quiet fill, hairline frame, weightier base line */
.enquiry .field input,
.enquiry .field select,
.enquiry .field textarea {
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-bottom-color: var(--border-strong);
  border-radius: var(--radius);
  transition:
    border-color var(--dur) var(--ease),
    background-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.enquiry .field input::placeholder,
.enquiry .field textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.75;
}
.enquiry .field input:hover,
.enquiry .field select:hover,
.enquiry .field textarea:hover {
  border-color: var(--border-strong);
}
.enquiry .field input:focus,
.enquiry .field select:focus,
.enquiry .field textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--safari-gold);
  box-shadow: var(--enquiry-ring);
}
.enquiry .field input[type='date'] {
  font-family: var(--ff-sans);
  -webkit-appearance: none;
  appearance: none;
}
.enquiry .field input[type='number'] {
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 500;
  -moz-appearance: textfield;
  appearance: textfield;
}
.enquiry .field input[type='number']::-webkit-inner-spin-button,
.enquiry .field input[type='number']::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}
.enquiry__message textarea {
  min-height: 11rem;
  line-height: var(--lh-body);
}

/* Dates: "earliest — to — latest" on one line from 40em */
.enquiry__dates-sep,
.enquiry__party-sep {
  display: none;
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--fg-muted);
}
@media (min-width: 40em) {
  .enquiry__dates {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1.25rem 0.9rem;
  }
  .enquiry__dates-sep {
    display: flex;
    align-items: center;
    align-self: start;
    min-height: 3.25rem;
    margin-top: 1.55rem;
    font-size: 1.1rem;
  }
}

/* Party: two small centred counts, a middle dot between */
.enquiry__party {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1.25rem 0.9rem;
  max-width: 22rem;
}
.enquiry__party-sep {
  display: flex;
  align-items: center;
  align-self: start;
  min-height: 3.25rem;
  margin-top: 1.55rem;
  font-size: 1.6rem;
  font-style: normal;
  color: var(--safari-gold);
}

/* Contact method: three quiet cards, native radio kept for keyboard and JS */
.enquiry__choices {
  display: grid;
  gap: 0.6rem;
}
/* Three across only while the form has the full page width to itself */
@media (min-width: 40em) and (max-width: 59.99em) {
  .enquiry__choices {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* Outranks the section-11 `.field label` eyebrow rule */
.enquiry .enquiry__choice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 3.25rem;
  padding: 0.75rem 2.4rem 0.75rem 0.9rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  background: var(--cream);
  border: 1px solid var(--border);
  border-bottom-color: var(--border-strong);
  border-radius: var(--radius);
  color: var(--charcoal);
  cursor: pointer;
  transition:
    border-color var(--dur) var(--ease),
    background-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.enquiry__choice:hover {
  border-color: var(--border-strong);
}
.enquiry__choice-icon {
  display: inline-flex;
  flex: none;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--gold-text);
  transition:
    background-color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}
.enquiry__choice-icon .icon {
  width: 0.95rem;
  height: 0.95rem;
}
.enquiry__choice-text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
  line-height: 1.25;
}
.enquiry__choice-text strong {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--olive-deep);
}
.enquiry__choice-text small {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.enquiry__choice-check {
  position: absolute;
  top: 50%;
  right: 0.85rem;
  display: inline-flex;
  color: var(--safari-gold);
  opacity: 0;
  transform: translateY(-50%) scale(0.6);
  transition:
    opacity var(--dur) var(--ease),
    transform var(--dur) var(--ease-out);
}
.enquiry__choice-check .icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}
.enquiry__choice:has(input:checked) {
  background: var(--sand-tint);
  border-color: var(--safari-gold);
}
.enquiry__choice:has(input:checked) .enquiry__choice-icon {
  background: var(--safari-gold);
  border-color: var(--safari-gold);
  color: var(--cream);
}
.enquiry__choice:has(input:checked) .enquiry__choice-check {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.enquiry__choice:has(input:focus-visible) {
  border-color: var(--safari-gold);
  box-shadow: var(--enquiry-ring);
}

/* Errors: inline, beside the field, in the site's one error red */
.enquiry__error {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--enquiry-error);
}
.enquiry__error::before {
  content: '';
  flex: none;
  width: 0.4rem;
  height: 0.4rem;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: currentColor;
}
.enquiry .field.is-invalid input,
.enquiry .field.is-invalid select,
.enquiry .field.is-invalid textarea {
  border-color: var(--enquiry-error);
}
.enquiry .field.is-invalid > label {
  color: var(--enquiry-error);
}
.enquiry .form__consent {
  margin: 0;
  padding-top: 1.1rem;
  border-top: var(--enquiry-rule);
}
.enquiry .form__status {
  margin: 0;
}
.enquiry .form__status:focus {
  outline: none;
  box-shadow: var(--enquiry-ring);
}

/* Actions */
.enquiry__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.5rem;
  padding-top: 0.25rem;
}
.enquiry__actions .btn--primary {
  width: 100%;
}
@media (min-width: 40em) {
  .enquiry__actions .btn--primary {
    width: auto;
  }
}
.enquiry .btn[disabled] {
  opacity: 0.7;
  cursor: progress;
}
.enquiry__spinner {
  display: none;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
}
.enquiry .btn[aria-busy='true'] .enquiry__spinner {
  display: inline-block;
  animation: enquiry-spin 0.8s linear infinite;
}
@keyframes enquiry-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .enquiry .btn[aria-busy='true'] .enquiry__spinner {
    animation: none;
    border-right-color: currentColor;
    opacity: 0.5;
  }
  .enquiry__progress-step,
  .enquiry__choice-check {
    transition: none;
  }
}

/* Success panel and paused notice: framed like the sheet */
.enquiry-success {
  position: relative;
  padding: clamp(1.75rem, 1.25rem + 3vw, 3.25rem);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  outline: none;
}
.enquiry-success:focus-visible {
  box-shadow: 0 0 0 3px rgba(165, 124, 60, 0.25);
}
.enquiry-success__mark {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--safari-gold);
}
.enquiry-success__mark .icon {
  width: 2.5rem;
  height: 2.5rem;
  stroke-width: 1.25;
}
.enquiry-success .eyebrow {
  margin-bottom: 0.75rem;
}
.enquiry-success__title {
  margin: 0 0 0.75rem;
}
.enquiry-success__ref {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0 0 1.75rem;
  font-size: var(--fs-small);
  color: var(--fg-muted);
}
.enquiry-success__ref strong {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: var(--sand-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--olive-deep);
}
.enquiry-success__actions {
  margin-bottom: 1.5rem;
}
.enquiry-success .small {
  margin: 0;
}

/* Aside: other channels and the three-beat "what happens next" */
.enquiry-channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}
.enquiry-channels li + li {
  border-top: 1px solid var(--border);
}
.enquiry-channels a {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  text-decoration: none;
  color: var(--fg);
  line-height: 1.4;
}
.enquiry-channels a .icon {
  flex: none;
  width: 1.1em;
  height: 1.1em;
  margin-top: 0.2em;
  color: var(--safari-gold);
}
.enquiry-channels strong {
  display: block;
  margin-bottom: 0.1rem;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-deep);
}
.enquiry-channels a:hover span,
.enquiry-channels a:focus-visible span {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.enquiry-next {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.enquiry-next li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: var(--fs-small);
  line-height: 1.5;
  color: var(--fg-muted);
}
.enquiry-next .enquiry__numeral {
  width: 1.7rem;
  height: 1.7rem;
  margin-top: 0.05rem;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
}
.enquiry-next strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--olive-deep);
}

/* --------------------------------------------------------------------------
   15. Uplift tokens (docs/uplift/DESIGN-SYSTEM.md) — additive. The five
   working colours alias the existing palette; nothing above this line changes.
   -------------------------------------------------------------------------- */
:root {
  --bone: var(--cream);
  --ink: var(--charcoal);
  --olive-ground: var(--olive-deep);
  --ochre: var(--safari-gold);
  --pale-gold: var(--gold-pale);

  --fs-cinema: clamp(3rem, 1rem + 4.6vw, 6.25rem); /* 48 → 100px; one word per line in the left column ≥64em */
  --fs-chapter: clamp(2.75rem, 1.4rem + 5vw, 7rem); /* 44 → 112px */
  --fs-statement: clamp(2rem, 1.2rem + 3.2vw, 4.5rem); /* 32 → 72px */
  --fs-micro: 0.6875rem; /* 11px */

  --rhythm-s: clamp(4.5rem, 6vw, 7.5rem); /* 72 → 120px */
  --rhythm-m: clamp(6rem, 9vw, 10rem); /* 96 → 160px */
  --rhythm-l: clamp(6.5rem, 12vw, 12.5rem); /* 104 → 200px */

  --ease-cinema: cubic-bezier(0.22, 1, 0.36, 1);
  /* Film grain: 256px tile of monochrome fractal noise, ≤5% opacity, media only. */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   16. Cinematic hero (home) — .hero--film
   Poster is the LCP; the film fades in over it; the header is transparent
   over the frame and condenses after 80px. Ledger A1–A7 in DESIGN-SYSTEM.md.
   -------------------------------------------------------------------------- */
.hero--film {
  min-height: 100svh;
  align-items: end;
  color: var(--bone);
  z-index: 0;
}
/* Desktop: the hero stays put while the next scene slides over it (A7). */
@media (min-width: 64em) {
  .hero--film {
    position: sticky;
    top: 0;
  }
  /* Every following scene must paint over the sticky film. `:where` keeps
     specificity at zero so section modifiers (olive, sand, surface) still win. */
  :where(.has-film-hero main > :not(.hero--film)) {
    position: relative;
    z-index: 1;
    background-color: var(--bg);
  }
}
.hero__frame {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  transform-origin: 50% 50%;
  will-change: transform;
}
.hero--film .hero__media,
.hero--film .hero__media img {
  z-index: 0;
}
.hero__film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus, 50% 50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s linear; /* A1: film appears over the poster */
}
.hero__film.is-ready {
  opacity: 1;
}
.hero--film .hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* A shade, not a wash: graduated from mid-frame down (a cinematographer's grad filter), a soft
     ellipse behind the headline, a band behind the transparent header. Multiply keeps the
     photograph's colour while it darkens, so it reads as shadow rather than grey. */
  mix-blend-mode: multiply;
  background:
    radial-gradient(58% 46% at 26% 72%, rgba(43, 46, 51, 0.5), rgba(43, 46, 51, 0) 100%),
    linear-gradient(0deg, rgba(43, 46, 51, 0.72) 0%, rgba(43, 46, 51, 0.58) 20%, rgba(43, 46, 51, 0.38) 42%, rgba(43, 46, 51, 0.14) 62%, rgba(43, 46, 51, 0) 78%),
    linear-gradient(180deg, rgba(43, 46, 51, 0.74) 0%, rgba(43, 46, 51, 0.6) 11%, rgba(43, 46, 51, 0) 32%);
}
@media (max-width: 63.99em) {
  /* Portrait frame: the text stacks, so the shade starts higher. */
  .hero--film .hero__scrim {
    background:
      linear-gradient(0deg, rgba(43, 46, 51, 0.78) 0%, rgba(43, 46, 51, 0.68) 30%, rgba(43, 46, 51, 0.6) 55%, rgba(43, 46, 51, 0.42) 68%, rgba(43, 46, 51, 0.16) 82%, rgba(43, 46, 51, 0) 94%),
      linear-gradient(180deg, rgba(43, 46, 51, 0.8) 0%, rgba(43, 46, 51, 0.68) 11%, rgba(43, 46, 51, 0) 34%);
  }
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--grain) 0 0 / 256px 256px repeat;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero--film .hero__content {
  padding-block: 0 clamp(3.5rem, 7vh, 5rem);
  max-width: none;
  display: grid;
  gap: 1.75rem var(--space-6);
  align-items: end;
}
@media (min-width: 64em) {
  .hero--film .hero__content {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    grid-template-areas:
      'title script'
      'title lead'
      'title actions';
    grid-template-rows: auto auto auto;
    padding-bottom: clamp(3.5rem, 8vh, 6rem);
  }
  .hero--film .hero__headline,
  .hero--film .hero__aside {
    display: contents; /* children become grid items; the brand line moves beside the sentence */
  }
  .hero--film .hero__title {
    grid-area: title;
  }
  .hero--film .hero__script {
    grid-area: script;
    margin-bottom: 0.2rem;
  }
  .hero--film .hero__lead {
    grid-area: lead;
  }
  .hero--film .hero__actions {
    grid-area: actions;
    padding-bottom: 0.6rem;
  }
}
.hero--film .hero__script {
  font-size: clamp(1.5rem, 1.1rem + 1.1vw, 2rem); /* never below 24px: large-text contrast rule applies */
  margin-bottom: 0.9rem;
  opacity: 0.9;
}
.hero--film .hero__title {
  font-size: var(--fs-cinema);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.005em;
  margin-bottom: 0;
  text-shadow: 0 2px 34px rgba(43, 46, 51, 0.45);
}
.hero--film .hero__lead {
  color: var(--pale-gold);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}
.hero--film .hero__actions {
  gap: var(--space-2) var(--space-4);
}
/* Scroll cue (A5): a word and a hairline, bottom centre. */
.hero__cue {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(1.5rem, 4vh, 2.75rem);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--pale-gold);
  font-family: var(--ff-sans);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.85;
}
.hero__cue-line {
  display: block;
  width: 1px;
  height: 2.75rem;
  background: linear-gradient(180deg, var(--pale-gold), rgba(227, 211, 179, 0));
}
@media (min-width: 64em) {
  .hero__cue {
    display: flex;
  }
}
html.js.motion .hero__cue-line {
  animation: hero-cue 2.4s var(--ease-cinema) infinite;
}
@keyframes hero-cue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(6px);
    opacity: 0.55;
  }
}

/* Header over the film: transparent, bone type, no utility bar; condenses
   to the existing bone bar after 80px (A18). Scoped to film-hero pages only. */
.has-film-hero .utility {
  display: none;
}
.has-film-hero .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  --header-fg: var(--bone);
  transition:
    background-color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.has-film-hero .site-header:not(.is-condensed) {
  background: linear-gradient(180deg, rgba(43, 46, 51, 0.22), rgba(43, 46, 51, 0));
}
.has-film-hero .site-header.is-condensed {
  background: color-mix(in srgb, var(--bone) 94%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  --header-fg: var(--ink);
}
.has-film-hero .site-header .brand,
.has-film-hero .site-header .brand__name,
.has-film-hero .site-header .primary-nav a,
.has-film-hero .site-header .nav-toggle,
.has-film-hero .site-header .header-mail {
  color: var(--header-fg);
}
.has-film-hero .site-header:not(.is-condensed) .brand__sub {
  color: var(--pale-gold);
}
.has-film-hero .site-header:not(.is-condensed) .primary-nav a[aria-current='page'] {
  color: var(--bone);
}
.has-film-hero .site-header:not(.is-condensed) .header-cta {
  --btn-fg: var(--bone);
  --btn-bg: transparent;
  --btn-border: var(--pale-gold);
}
.has-film-hero .site-header:not(.is-condensed) .header-cta:hover,
.has-film-hero .site-header:not(.is-condensed) .header-cta:focus-visible {
  --btn-bg: var(--pale-gold);
  --btn-fg: var(--ink);
  --btn-border: var(--pale-gold);
}
/* The mobile drawer opens beneath a fixed header; keep its top offset. */
.has-film-hero .drawer {
  top: var(--header-h);
}
.has-film-hero .site-header .skip-link:focus {
  color: var(--bone);
}

/* Reduced motion: poster only, no film, no cue animation. */
@media (prefers-reduced-motion: reduce) {
  .hero__film {
    display: none;
  }
  .hero__cue-line {
    animation: none !important;
  }
}

/* Brand over the film: larger mark and wordmark while the header is transparent;
   settles back to the standard size once the bar condenses (0.3s, matches A18). */
.has-film-hero .site-header .brand__mark,
.has-film-hero .site-header .brand__name,
.has-film-hero .site-header .brand__sub {
  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease),
    font-size 0.3s var(--ease),
    color 0.3s var(--ease);
}
.has-film-hero .site-header:not(.is-condensed) .brand__mark {
  width: 3.4rem;
  height: 3.4rem;
}
@media (min-width: 64em) {
  .has-film-hero .site-header:not(.is-condensed) .header-bar {
    min-height: 6rem;
  }
  .has-film-hero .site-header:not(.is-condensed) .brand__mark {
    width: 4.25rem;
    height: 4.25rem;
  }
  .has-film-hero .site-header:not(.is-condensed) .brand__name {
    font-size: 1.45rem;
  }
  .has-film-hero .site-header:not(.is-condensed) .brand__sub {
    font-size: 0.66rem;
  }
}
