/* =========================================================================
   Book The Call: style.css
   One stylesheet, mobile first. Breakpoints at 640px and 1024px.
   Accent discipline: --brass is used ONLY on primary buttons and the seat
   flag. Nowhere else. No drop shadows anywhere on the site.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens
   ------------------------------------------------------------------------- */
:root {
  --ink:        #16181D;  /* primary dark. Hero, one mid section, footer, headings */
  --ink-soft:   #2A2E36;  /* cards and dividers on dark sections */
  --brass:      #C8873A;  /* accent. Buttons and the seat flag only */
  --brass-dark: #A66D2A;  /* button hover */
  --brass-text: #2A1B08;  /* text on a brass fill */
  --cream:      #F7F4EE;  /* page background */
  --cream-pure: #FFFFFF;  /* cards on cream */
  --muted:      #9BA1AC;  /* secondary text on ink */
  --muted-dark: #5C626D;  /* secondary text on cream */
  --border:     rgba(22, 24, 29, 0.12);
  --border-ink: rgba(247, 244, 238, 0.14);

  --font-head: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius:      12px;
  --radius-btn:  6px;
  --maxw:        1120px;
  --measure:     68ch;

  --pad-section: clamp(3rem, 7vw, 6rem);
  --gap:         clamp(1rem, 3vw, 2rem);
}

/* -------------------------------------------------------------------------
   2. Reset and base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; }
/* <picture> wraps some images for WebP; make it invisible to layout so the
   <img> behaves exactly as if unwrapped. */
picture { display: contents; }

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.15; font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.2; font-weight: 600; }
h3 { font-size: 1.25rem; line-height: 1.3; font-weight: 500; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

small, .small { font-size: 0.875rem; line-height: 1.6; }

strong { font-weight: 500; color: inherit; }

ul { margin: 0 0 1.15em; padding-left: 1.25rem; }
li { margin-bottom: 0.5rem; }

/* -------------------------------------------------------------------------
   3. Layout helpers
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding-block: var(--pad-section); }
.section--cream { background: var(--cream); color: var(--ink); }
.section--ink   { background: var(--ink);   color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream); }

.measure { max-width: var(--measure); }
.center  { margin-inline: auto; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted-dark);
  margin: 0 0 0.75rem;
}
.section--ink .eyebrow { color: var(--muted); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-btn) 0;
}
.skip-link:focus { left: 0; }

/* -------------------------------------------------------------------------
   4. Focus states: visible everywhere
   ------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  border-radius: 2px;
}

/* -------------------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } }

/* Primary: brass fill with dark text */
.btn--primary {
  background: var(--brass);
  color: var(--brass-text);
  border-color: var(--brass);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--brass-dark);
  border-color: var(--brass-dark);
  color: var(--brass-text);
}

/* Secondary: 1px ink outline on transparent */
.btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: var(--ink);
  color: var(--cream);
}
/* Secondary on ink sections inverts to a light outline */
.section--ink .btn--secondary,
.hero .btn--secondary {
  color: var(--cream);
  border-color: var(--cream);
}
.section--ink .btn--secondary:hover,
.section--ink .btn--secondary:focus-visible,
.hero .btn--secondary:hover,
.hero .btn--secondary:focus-visible {
  background: var(--cream);
  color: var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

/* -------------------------------------------------------------------------
   6. Seat flag: the only other place brass appears
   ------------------------------------------------------------------------- */
.seat-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  color: var(--brass-text);
  background: var(--brass);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
}
.seat-flag::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brass-text);
  flex: none;
}

/* -------------------------------------------------------------------------
   7. Header
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  padding-block: 0.6rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}
.logo-mark { width: 30px; height: 30px; flex: none; color: var(--ink); }
.logo-word {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  line-height: 1;
}

.primary-nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { border-bottom-color: var(--border); }
.nav-links a[aria-current="page"] { border-bottom-color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: 0.85rem; }
.header-cta .btn { padding: 10px 20px; font-size: 0.95rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* -------------------------------------------------------------------------
   8. Hero
   ------------------------------------------------------------------------- */
.hero {
  background: var(--ink);
  color: var(--cream);
}
.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  padding-block: clamp(3rem, 8vw, 6rem);
}
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero-brand .logo-mark { width: 38px; height: 38px; color: var(--cream); flex: none; }
.hero-brand-name {
  font-family: "Poppins", var(--font-body);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero h1 { color: var(--cream); }
.hero-lede {
  font-size: 1.1875rem;
  color: var(--cream);
  max-width: 46ch;
}
/* Portrait is deliberately small: a headshot beside the headline, not a
   full-height hero image. */
.hero-media {
  width: min(150px, 44vw);
  margin: 0 auto;
}
.hero-portrait {
  width: 100%;
  border-radius: 50%;
  border: 1px solid var(--border-ink);
  object-fit: cover;
  object-position: center 15%;
  aspect-ratio: 1 / 1;
}
.hero-caption {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: center;
  font-family: "Poppins", var(--font-body);
}
.hero-caption-name {
  color: var(--cream);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.hero-caption-title {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.35;
}
.hero-scarcity {
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.hero-scarcity strong { color: var(--cream); font-weight: 600; }

/* Anything wider than a phone: portrait sits to the right of the headline,
   top-aligned. Phones (below 680px) keep the stacked, centred layout. */
@media (min-width: 640px) {
  .hero-grid { grid-template-columns: 1fr auto; align-items: start; }
  /* Nudge the portrait in from the right edge, closer to the headline. */
  .hero-media { width: 160px; margin: 0 clamp(1.5rem, 6vw, 5rem) 0 0; }
  .hero-caption { text-align: center; }
}

/* -------------------------------------------------------------------------
   9. Prose blocks and pivot lines
   ------------------------------------------------------------------------- */
.prose > * + * { margin-top: 1.15em; }
.prose h2 { margin-bottom: 0.6em; }

/* The "unfinished conversations" pivot line, larger than body */
.pivot-line {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.375rem, 2.8vw, 1.875rem);
  line-height: 1.3;
  color: var(--ink);
}
.section--ink .pivot-line { color: var(--cream); }

/* Full-width closing note under a block */
.note-line {
  max-width: var(--measure);
  font-size: 1.0625rem;
}

/* -------------------------------------------------------------------------
   10. Service cards
   ------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
}
@media (min-width: 640px)  { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--cream-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.card--featured { border: 2px solid var(--brass); }

.card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.25rem;
}
.card h3 { margin: 0; }
.card .price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted-dark);
  white-space: nowrap;
}
.card .card-lede {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--ink);
  margin: 0.75rem 0 1rem;
}
.card .seat-flag { align-self: flex-start; margin-top: 0.75rem; }
.card p { font-size: 1rem; line-height: 1.65; }

/* Setup and term note */
.setup-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--muted-dark);
  max-width: var(--measure);
}
.setup-note strong { color: var(--ink); }

/* -------------------------------------------------------------------------
   11. Two-column "who this is for"
   ------------------------------------------------------------------------- */
.fit-cols {
  display: grid;
  gap: var(--gap);
  margin-top: 2rem;
}
@media (min-width: 768px) { .fit-cols { grid-template-columns: 1fr 1fr; } }

.fit-col h3 { margin-bottom: 0.75rem; }
.fit-col ul { list-style: none; padding: 0; margin: 0; }
.fit-col li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
  line-height: 1.55;
}
.fit-col li::before {
  position: absolute;
  left: 0;
  top: 0.05em;
  font-weight: 600;
}
.fit-yes li::before { content: "\2713"; color: var(--ink); }        /* check mark, decorative */
.fit-no  li::before { content: "\00D7"; color: var(--muted-dark); }  /* cross mark, decorative */

/* -------------------------------------------------------------------------
   12. Who's calling / split image + copy
   ------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .split { grid-template-columns: 0.85fr 1.15fr; }
  .split--reverse { grid-template-columns: 1.15fr 0.85fr; }
  .split--reverse .split-media { order: 2; }
}
.split-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  object-fit: cover;
}
.split-media.square img { aspect-ratio: 1 / 1; }

/* Small circular portrait variant (home "who's calling"): matches the hero
   headshot size and shape. */
.split-media.is-avatar { width: min(208px, 62vw); margin: 0 auto; }
.split-media.is-avatar img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-position: center 15%;
}
.avatar-caption {
  margin: 0.9rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: center;
}
.avatar-caption-name {
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.avatar-caption-title {
  color: var(--muted-dark);
  font-size: 0.85rem;
  line-height: 1.35;
}
@media (min-width: 1024px) {
  .split--avatar { grid-template-columns: auto 1fr; align-items: center; }
  .split--avatar .split-media.is-avatar { margin: 0; }
}

/* Three emphasised follow-up lines */
.beat-lines {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.beat-lines li {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

/* -------------------------------------------------------------------------
   13. Proof: pull quote + testimonial grid
   ------------------------------------------------------------------------- */
.pull-quote {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.25;
  max-width: 22ch;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--ink);
}

.testimonials {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials { grid-template-columns: repeat(4, 1fr); } }

.testimonial {
  background: var(--cream-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.testimonial blockquote {
  margin: 0 0 1.25rem;
  font-size: 0.975rem;
  line-height: 1.6;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ink-soft);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  flex: none;
  overflow: hidden;
}
.testimonial .who { font-size: 0.875rem; line-height: 1.3; }
.testimonial .who .name { font-weight: 500; color: var(--ink); }
.testimonial .who .org  { color: var(--muted-dark); }

/* -------------------------------------------------------------------------
   14. Steps
   ------------------------------------------------------------------------- */
.steps {
  display: grid;
  gap: var(--gap);
  margin-top: 2rem;
  counter-reset: step;
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li {
  background: var(--cream-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 0;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  display: block;
  margin-bottom: 0.5rem;
}
.steps li strong { display: block; margin-bottom: 0.25rem; }
.steps-note { margin-top: 1.5rem; color: var(--muted-dark); font-size: 0.95rem; }

/* -------------------------------------------------------------------------
   15. Accordion (objections / FAQ)
   ------------------------------------------------------------------------- */
.accordion { margin-top: 2rem; max-width: var(--measure); }
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-item:first-child { border-top: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.15rem 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--ink);
  line-height: 1.3;
}
.accordion-trigger .chev {
  flex: none;
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
  color: var(--muted-dark);
}
@media (prefers-reduced-motion: reduce) { .accordion-trigger .chev { transition: none; } }
.accordion-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }
.accordion-panel { padding: 0 0 1.35rem; }
.accordion-panel[hidden] { display: none; }
.accordion-panel p { max-width: 62ch; }

/* -------------------------------------------------------------------------
   16. Page header band (interior pages)
   ------------------------------------------------------------------------- */
.page-hero {
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(3rem, 7vw, 5rem);
}
.page-hero h1 { color: var(--cream); }
.page-hero p { color: var(--muted); max-width: 52ch; }
.page-hero .seat-flag { margin-bottom: 1.25rem; }
.page-hero-media {
  margin-top: 2.5rem;
}
.page-hero-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border-ink);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* Definition-style blocks used on service pages */
.stack > * + * { margin-top: var(--pad-section); }

.feature-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.feature-list li {
  padding-left: 1.75rem;
  position: relative;
}
.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  color: var(--ink);
}
.section--ink .feature-list li::before { color: var(--cream); }

/* -------------------------------------------------------------------------
   17. Contact / forms
   ------------------------------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.booking-embed {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream-pure);
  min-height: 480px;
  padding: 0;
  overflow: hidden;
}
.booking-embed iframe { width: 100%; min-height: 640px; border: 0; display: block; }
.booking-fallback {
  padding: 2rem;
  text-align: center;
  color: var(--muted-dark);
}

.form-field { margin-bottom: 1.15rem; }
.form-field label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.form-field .hint { font-weight: 400; color: var(--muted-dark); }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 0.7rem 0.85rem;
  line-height: 1.4;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus-visible,
.form-field textarea:focus-visible,
.form-field select:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  border-color: var(--brass);
}
/* Honeypot: visually and programmatically hidden from people */
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.form-error {
  color: #8A2A1B;
  font-size: 0.875rem;
  margin-top: 0.35rem;
}

.form-success {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream-pure);
  padding: 2rem;
}
.form-success h3 { margin-top: 0; }

/* -------------------------------------------------------------------------
   18. CTA band
   ------------------------------------------------------------------------- */
.cta-band .seat-flag { margin-bottom: 1.25rem; }
.cta-band h2 { max-width: 20ch; }
.cta-band p { color: var(--muted); max-width: 54ch; }
.cta-band .btn-row { margin-top: 1.75rem; }

/* -------------------------------------------------------------------------
   19. Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--muted);
  padding-block: clamp(2.5rem, 5vw, 4rem) 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.site-footer .logo { color: var(--cream); }
.site-footer .logo-mark { color: var(--cream); }
.footer-descriptor { color: var(--muted); font-size: 0.9375rem; margin: 1rem 0 0.35rem; }
.footer-strapline {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--cream);
  font-size: 1.0625rem;
  margin: 0;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.9rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-col a:hover { text-decoration: underline; }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-ink);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--muted);
}
.footer-bottom nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--cream); text-decoration: underline; }

/* -------------------------------------------------------------------------
   20. Fade on scroll (opt-in, reduced-motion safe)
   ------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(12px); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
/* If JS is off, never hide content */
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .reveal.is-visible { transition: none; }
}

/* -------------------------------------------------------------------------
   21. Mobile navigation (under 1024px the links collapse)
   ------------------------------------------------------------------------- */
@media (max-width: 1023.98px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem clamp(1.25rem, 5vw, 2.5rem) 1.25rem;
    display: none;
  }
  .primary-nav.is-open { display: flex; }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 0.9rem 0; border-bottom: 0; }
  .header-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1rem;
    width: 100%;
  }
  .header-cta .btn { width: 100%; padding: 12px 20px; }
}

/* Seat flag hides under 640px in the header only */
@media (max-width: 639.98px) {
  .site-header .header-cta .seat-flag { display: none; }
}

/* Desktop: keep the header nav on one row */
@media (min-width: 1024px) {
  .primary-nav { display: flex !important; }
}
