@charset "UTF-8";
/* ══════════════════════════════════════════════════════════════════════════════
   Aligned Hearts

   The translation rule this whole sheet follows:
   Ivory is where people read. Onyx is where people are impressed.
   Gold is a line, never a paragraph. Red is a button, never a background
   for text.

   Contents
     1  Tokens
     2  Reset and base
     3  Layout — wrap, bands, rhythm
     4  Type
     5  The gold rule
     6  Buttons and links
     7  Header and navigation
     8  Footer
     9  Components
    10  Forms
    11  Page-specific
    12  Utilities
    13  Motion
   ════════════════════════════════════════════════════════════════════════════ */

/* ── 1  Tokens ─────────────────────────────────────────────────────────────── */

:root {
  /* Reds */
  --red:            #C0111F;
  --red-deep:       #7A0610;
  --red-bright:     #E51A2E;

  /* Golds. The logo gold is a gradient; these are its stops. */
  --gold-shadow:    #8A5220;
  --gold:           #D39249;
  --gold-light:     #E7AF5E;
  --gold-highlight: #FDDE5C;
  --gold-gradient:  linear-gradient(90deg, #8A5220, #D39249, #E7AF5E, #FDDE5C);

  /* Grounds and surfaces */
  --onyx:           #0B0708;
  --onyx-soft:      #1A1315;
  --onyx-raised:    radial-gradient(130% 110% at 12% 0%, #1B1416 0%, #0B0708 62%);
  --ivory:          #F6EDE5;
  --ivory-deep:     #E2D6CB;
  --paper:          #FFFCF9;

  /* Text */
  --ink:            #1A1315;
  --ink-muted:      #5C5054;
  --chalk:          #F6EDE5;
  --chalk-muted:    #A08F8A;
  --chalk-dim:      #8B7D7F;

  /* Hairlines. Gold is a rule and an icon stroke, never text on ivory. */
  --line-dark:      rgba(211, 146, 73, .24);
  --line-light:     rgba(26, 19, 21, .13);
  --line-strong:    rgba(26, 19, 21, .17);
  --line-paper:     rgba(138, 82, 32, .16);

  /* Type */
  --display: 'EB Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --body:    'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono:    ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Fluid scale. Nothing on this site is set below 17px. */
  --t-hero:  clamp(2.75rem, 1.6rem + 5.1vw, 5.5rem);
  --t-h1:    clamp(2.5rem, 1.68rem + 3.6vw, 4.5rem);
  --t-h2:    clamp(2rem, 1.5rem + 2.2vw, 3.25rem);
  --t-h3:    clamp(1.75rem, 1.44rem + 1.4vw, 2.25rem);
  --t-h4:    1.375rem;
  --t-quote: clamp(1.5rem, 1.28rem + .95vw, 1.75rem);
  --t-lead:  clamp(1.1875rem, 1.11rem + .35vw, 1.375rem);
  --t-body:  1.125rem;
  --t-base:  1.0625rem;   /* 17px — the floor */
  --t-small: .9375rem;

  /* Space */
  --gutter:  clamp(1.25rem, .55rem + 3vw, 3rem);
  --band:    clamp(4.5rem, 2.4rem + 8.4vw, 8.25rem);
  --band-lg: clamp(5rem, 2.5rem + 9.5vw, 9.25rem);
  --wrap:    1180px;

  --shift:   .18s cubic-bezier(.4, 0, .2, 1);
}

/* ── 2  Reset and base ─────────────────────────────────────────────────────── */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Clear the sticky header when jumping to an anchor. --header-h is set
     from the real element by site.js; the fallback covers the widest case. */
  scroll-padding-top: calc(var(--header-h, 7rem) + 1.5rem);
}

body {
  margin: 0;
  background: var(--onyx);
  color: var(--ink);
  font: 400 var(--t-base)/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

body.is-locked { overflow: hidden; }

img, svg, video, figure { display: block; max-width: 100%; }
img, video { height: auto; }

h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-deep); }

button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }

/* Focus rings sit on --red-bright, which is visible on ivory and on onyx. */
:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
  border-radius: 1px;
}
:where(.band--onyx, .band--red, .inset, .hero, .site-footer, .mobile-nav) :focus-visible {
  outline-color: var(--gold-highlight);
}

::selection { background: var(--gold-light); color: var(--onyx); }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 200;
  transform: translate(-50%, -110%);
  background: var(--red);
  color: #fff;
  padding: .9rem 1.5rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: var(--t-small);
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

/* ── 3  Layout ─────────────────────────────────────────────────────────────── */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 900px; }
.wrap--reading { max-width: 820px; }

.band { padding-block: var(--band); }
.band--lg { padding-block: var(--band-lg); }
.band--flush-top { padding-top: 0; }

.band--ivory      { background: var(--ivory); color: var(--ink); }
.band--ivory-deep { background: var(--ivory-deep); color: var(--ink); }
.band--paper      { background: var(--paper); color: var(--ink); }
.band--onyx       { background: var(--onyx-raised); color: var(--chalk); }
.band--red        { background: radial-gradient(130% 130% at 50% 0%, #8E0A16 0%, #7A0610 52%, #5C040B 100%); color: var(--chalk); }

.band--onyx a:not(.btn), .band--red a:not(.btn) { color: var(--gold-light); }
.band--onyx a:not(.btn):hover, .band--red a:not(.btn):hover { color: var(--gold-highlight); }

/* Vertical rhythm inside a band. */
.stack > * + * { margin-top: 1.25rem; }
.stack--tight > * + * { margin-top: .75rem; }
.stack--loose > * + * { margin-top: 2rem; }

/* ── 4  Type ───────────────────────────────────────────────────────────────── */

.display, .h1, .h2, .h3, .h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.018em;
  text-wrap: pretty;
}

.h-hero { font: 600 var(--t-hero)/1.02 var(--display); letter-spacing: -.018em; text-wrap: balance; }
.h1     { font-size: var(--t-h1); line-height: 1.03; }
.h2     { font-size: var(--t-h2); line-height: 1.1; }
.h3     { font-size: var(--t-h3); line-height: 1.14; }
.h4     { font-size: var(--t-h4); line-height: 1.25; }

.h-hero em { font-style: italic; font-weight: 400; }

.lead {
  font-size: var(--t-lead);
  line-height: 1.62;
  max-width: 40ch;
}
.lead--wide { max-width: 52ch; }

.prose { max-width: 66ch; }
.prose p { font-size: var(--t-body); line-height: 1.72; }
.prose p + p { margin-top: 1.125rem; }
.prose strong { font-weight: 600; }

/* Meet Samuel reads as an essay rather than an interface (spec §5). */
.prose--essay p { font: 500 1.25rem/1.7 var(--display); }

.muted { color: var(--ink-muted); }
.band--onyx .muted, .band--red .muted, .inset .muted { color: var(--chalk); opacity: .8; }

.eyebrow {
  font: 600 .625rem/1 var(--body);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-shadow);
}
.band--onyx .eyebrow, .inset .eyebrow, .site-footer .eyebrow { color: var(--gold); }

/* A note to the client that placeholder content is standing in for a real fact. */
.note {
  font: italic 400 var(--t-small)/1.6 var(--body);
  color: var(--ink-muted);
  max-width: 60ch;
}
.band--onyx .note, .band--red .note, .inset .note { color: var(--chalk-dim); }

/* A value still awaiting a fact from Samuel. */
.tbd { border-bottom: 1px dashed var(--gold); }
.band--ivory-deep .tbd { border-bottom-color: var(--gold-shadow); }

/* ── 5  The gold rule ──────────────────────────────────────────────────────── */
/* The single decorative element on the site. Nothing else gets a border. */

.rule {
  height: 1px;
  background: var(--gold-gradient);
  margin-bottom: 1.625rem;
  transform-origin: left;
}
.rule--sm { width: 124px; }
.rule--lg { width: 190px; margin-bottom: 1.75rem; }
.rule--center { margin-inline: auto; }

/* ── 6  Buttons and links ──────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 0;
  border-radius: 1px;
  padding: 1.25rem 2.375rem;
  font: 600 1.0625rem/1 var(--body);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  transition: background var(--shift), color var(--shift), border-color var(--shift);
}
.btn--sm { padding: .875rem 1.5rem; letter-spacing: .08em; }
.btn--block { width: 100%; }

.btn--red { background: var(--red); color: #fff; }
.btn--red:hover, .btn--red:focus-visible { background: var(--red-deep); color: #fff; }

.btn--ivory { background: var(--ivory); color: var(--red-deep); }
.btn--ivory:hover, .btn--ivory:focus-visible { background: #fff; color: var(--red-deep); }

.btn--ghost {
  background: none;
  color: var(--chalk);
  border: 1px solid rgba(246, 237, 229, .45);
}
.btn--ghost:hover, .btn--ghost:focus-visible { border-color: var(--gold); color: var(--gold-light); }

.btn--outline {
  background: none;
  color: var(--ink);
  border: 1px solid rgba(26, 19, 21, .25);
  border-radius: 2px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  padding: .8rem 1.25rem;
}
.btn--outline:hover, .btn--outline:focus-visible { border-color: var(--onyx); color: var(--ink); }

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

/* A link that reads as an action without a → glued to it. */
.link-more {
  display: inline-block;
  font: 600 var(--t-base)/1.3 var(--body);
  color: var(--red);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.link-more:hover { color: var(--red-deep); }

/* --red on --ivory-deep is 4.4:1, a hair under AA. The deep red clears it. */
.band--ivory-deep .link-more, .band--ivory-deep a:not(.btn) { color: var(--red-deep); }

.band--onyx .link-more, .band--red .link-more, .inset .link-more {
  color: var(--chalk);
  border-bottom-color: var(--gold);
}
.band--onyx .link-more:hover, .band--red .link-more:hover, .inset .link-more:hover { color: var(--gold-light); }

/* ── 7  Header and navigation ──────────────────────────────────────────────── */

/* White ground, so the header reads as a separate plane above the ivory
   bands. The gold hairline along the top edge carries the brand; the bottom
   hairline is what separates white from ivory, which are close in value. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line-light);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem 1.625rem;
  padding-block: .2rem;
  min-height: 4.25rem;
}

/* The logo.

   The image carries its own intrinsic ratio, so height is what is set and the
   width follows. The padding keeps it a comfortable tap target on a phone,
   where the mark is only about 30px tall. */
.logo {
  display: block;
  /* Never shrink: as a flex item that can, the nav's fluid gaps squeeze the
     logo's width while its height stays fixed, and the artwork distorts. */
  flex: none;
  padding-block: .3125rem;
}
.logo img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;   /* belt and braces: never stretch the artwork */
  border: 0;             /* the artwork carries no frame; keep it that way */
}

/* The logo links home. Some browsers paint a focus ring when it is clicked
   with a mouse, which reads as an unwanted red box around the lockup. Suppress
   it for pointer focus while keeping it for keyboard users (WCAG 2.4.7). */
.logo:focus:not(:focus-visible) { outline: none; }

/* The whole lockup, 5.26:1 (SEP-14 artwork). Set tall enough that the service line and the
   strapline under it stay readable rather than collapsing into a smudge. */
.site-header .logo img { height: clamp(2.5rem, 1.7rem + 3.4vw, 4rem); }
.site-footer .logo img { height: clamp(3.75rem, 3rem + 3vw, 5rem); }

/* The right side is two stacked rows. Hidden below the desktop breakpoint,
   where the burger takes over. */
.site-header__aside { display: none; }

/* Top row: social icons on the left, the book button on the right. */
.site-header__top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-header__cta {
  flex: none;
  white-space: nowrap;
  padding: .75rem 1.25rem;
  font-size: .9375rem;
}

.header-social {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.header-social__link {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold-shadow);
  border-radius: 50%;
  font: 600 .6875rem/1 var(--body);
  color: var(--ink);
  transition: background var(--shift), color var(--shift), border-color var(--shift);
}
.header-social__link:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* Bottom row: the primary navigation. */
.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(.875rem, -.5rem + 1.6vw, 1.5rem);
}
.site-nav__link {
  display: block;
  font: 500 var(--t-small)/1 var(--body);
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color var(--shift), border-color var(--shift);
  white-space: nowrap;
}
.site-nav__link:hover { color: var(--red); }
.site-nav__link.is-current { border-image: var(--gold-gradient) 1; border-bottom-style: solid; }

.site-header--bare .site-header__inner { justify-content: space-between; }
.site-header--bare .logo { padding-block: .375rem; }
.site-header__exit {
  display: inline-block;
  padding-block: .3125rem;
  font: 500 var(--t-small)/1.35 var(--body);
  color: var(--ink-muted);
}
.site-header__exit:hover { color: var(--red); }

/* Hamburger */
.burger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  background: none;
  border: 0;
}
.burger__bar {
  display: block;
  height: 1.5px;
  /* Gold at 1.5px disappears on white; ink is the legible stroke here. */
  background: var(--ink);
  transition: transform var(--shift), opacity var(--shift), width var(--shift);
}
.burger__bar:nth-child(3) { width: 14px; }
.burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bar:nth-child(3) { width: 22px; transform: translateY(-6.5px) rotate(-45deg); }

/* Full-screen overlay on onyx with gold hairline dividers. */
.mobile-nav {
  position: fixed;
  inset: var(--header-h, 4.75rem) 0 0;
  z-index: 55;
  background: var(--onyx);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 var(--gutter) 2rem;
}
.mobile-nav__list { flex: 1; }
.mobile-nav__list a {
  display: block;
  padding: 1.125rem 0;
  border-top: 1px solid rgba(211, 146, 73, .3);
  font: 600 1.5rem/1.2 var(--display);
  color: var(--chalk);
}
.mobile-nav__list li:last-child a { border-bottom: 1px solid rgba(211, 146, 73, .3); }
.mobile-nav__list a:hover, .mobile-nav__list a[aria-current] { color: var(--gold-light); }
.mobile-nav .btn { margin-top: 1.75rem; }
.mobile-nav__social { margin-top: 1.5rem; justify-content: center; }

/* Sticky red CTA bar on mobile, below the fold. */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--red);
  box-shadow: 0 -6px 24px rgba(11, 7, 8, .28);
  transform: translateY(100%);
  transition: transform .24s ease-out;
}
.sticky-cta[hidden] { display: none; }
.sticky-cta.is-in { transform: none; }
.sticky-cta__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem var(--gutter) calc(1.05rem + env(safe-area-inset-bottom));
  color: #fff;
  font: 600 var(--t-base)/1 var(--body);
}
.sticky-cta__link:hover { color: #fff; }
.sticky-cta__meta { font-weight: 500; opacity: .72; }

@media (min-width: 1080px) {
  .site-header__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .625rem;
    margin-left: auto;   /* push the two rows to the right, past the logo */
  }
  .burger, .mobile-nav, .sticky-cta { display: none !important; }
  .site-header__inner { padding-block: .2rem; }
}

/* ── 8  Footer ─────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--onyx);
  color: var(--chalk);
  padding: clamp(3.5rem, 2rem + 5vw, 4.75rem) 0 2.5rem;
}
.site-footer a { color: var(--chalk); opacity: .85; }
.site-footer a:hover { color: var(--gold); opacity: 1; }

/* The lockup sits on its own row, at full width, with the social links
   opposite it — the only place the taglines get to be legible. */
.site-footer__brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding-bottom: 2.75rem;
  margin-bottom: 2.75rem;
  border-bottom: 1px solid rgba(211, 146, 73, .22);
}
.site-footer__brand .social { margin-top: 0; }

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 2.75rem;
  padding-bottom: 3.25rem;
  border-bottom: 1px solid rgba(211, 146, 73, .22);
}
.site-footer__heading {
  font: 600 .625rem/1 var(--body);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.125rem;
}
/* Padding rather than margin between the rows, so each link is a comfortable
   tap target on a phone instead of a 20px sliver of text. */
.site-footer__col li + li { margin-top: .1875rem; }
.site-footer__col a {
  display: inline-block;
  padding-block: .3125rem;
  font-size: var(--t-base);
}

.site-footer__nap {
  font: 400 var(--t-base)/1.7 var(--body);
  font-style: normal;
  opacity: .85;
}
.site-footer__nap a { opacity: 1; }

.social { display: flex; gap: .625rem; margin-top: 1.25rem; }
.social__link {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font: 600 .75rem/1 var(--body);
  color: var(--gold);
  opacity: 1;
  transition: background var(--shift), color var(--shift);
}
.social__link:hover { background: var(--gold); color: var(--onyx); opacity: 1; }

.site-footer__signup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2.125rem;
}
.site-footer__signup-copy {
  flex: 1;
  min-width: 15rem;
  font-size: var(--t-small);
  color: var(--chalk-dim);
}
.site-footer__signup-done {
  font-size: var(--t-base);
  color: var(--gold-light);
}

.signup { display: flex; flex-wrap: wrap; gap: 0; }
.signup__input {
  background: var(--onyx-soft);
  border: 1px solid rgba(211, 146, 73, .35);
  border-right: 0;
  color: var(--chalk);
  padding: .8125rem 1rem;
  font-size: var(--t-base);
  border-radius: 0;
  min-width: 0;
  /* A small basis so the field still fits inside a padded dark panel on the
     narrowest screens; it grows to fill whatever room there is. */
  flex: 1 1 9rem;
}
.signup__input::placeholder { color: var(--chalk-dim); }
.signup .btn { flex: none; text-transform: none; letter-spacing: .04em; padding-inline: 1.375rem; }

.site-footer__legal {
  margin-top: 1.875rem;
  font-size: var(--t-small);
  line-height: 1.8;
  color: var(--chalk-dim);
}
.site-footer__legal-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .25rem; }
.site-footer__legal-links a { color: var(--chalk-dim); opacity: 1; }

/* ── 9  Components ─────────────────────────────────────────────────────────── */

/* Hero — a photograph under an onyx scrim, ivory type on top. */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(38rem, 82vh);
  background: var(--onyx);
  overflow: hidden;
}
.hero--short { min-height: min(30rem, 70vh); }
.hero__media { position: absolute; inset: 0; }
.hero__media .slot, .hero__media img { width: 100%; height: 100%; }

/* The background loop fills the hero and is cropped, never letterboxed. The
   poster is the same frame, so there is no jump when the video takes over. */
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--onyx);
}
/* A hero's art direction should be readable but must not fight the headline. */
.hero__media .slot {
  aspect-ratio: auto;
  border: 0;
  align-content: end;
  justify-items: end;
  padding: var(--gutter);
}
.hero__media .slot__mark { display: none; }
.hero__media .slot__brief {
  font-size: var(--t-small);
  font-style: italic;
  text-align: right;
  opacity: .4;
  max-width: 22ch;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 7, 8, .9) 0%, rgba(11, 7, 8, .68) 55%, rgba(11, 7, 8, .4) 100%);
}
.hero--bottom-scrim .hero__scrim {
  background: linear-gradient(0deg, rgba(11, 7, 8, .93) 0%, rgba(11, 7, 8, .4) 58%, rgba(11, 7, 8, .18) 100%);
}
@media (max-width: 767px) {
  /* A left-to-right scrim leaves the right edge bright on a narrow screen,
     where the copy runs the full width. Darken top to bottom instead. */
  .hero__scrim, .hero--bottom-scrim .hero__scrim {
    background: linear-gradient(180deg, rgba(11, 7, 8, .82) 0%, rgba(11, 7, 8, .58) 42%, rgba(11, 7, 8, .94) 100%);
  }
  /* The art-direction note is a build aid; it must not fight the headline. */
  .hero__media .slot__brief { display: none; }
}

.hero__inner {
  position: relative;
  width: 100%;
  padding-block: clamp(4rem, 2rem + 8vw, 6rem);
  color: var(--chalk);
}
.hero__body { max-width: 47rem; }
.hero__sub {
  font-size: var(--t-lead);
  line-height: 1.62;
  max-width: 38rem;
  margin-top: 1.625rem;
  opacity: .92;
}
.hero .btn-row { margin-top: 2.125rem; }
.hero__fine {
  margin-top: 1.25rem;
  font: italic 400 var(--t-small)/1.5 var(--body);
  opacity: .62;
}
.hero__meta {
  margin-top: 1rem;
  font: 600 var(--t-h4)/1.3 var(--display);
  opacity: .9;
}

/* Photograph and video placeholders. They carry their own art direction. */
.slot, .vslot {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: var(--slot-ratio, 3 / 2);
  background: radial-gradient(120% 130% at 20% 0%, #1B1416 0%, #0B0708 70%);
  border: 1px solid var(--line-dark);
  padding: clamp(1.25rem, .5rem + 3vw, 2rem);
  text-align: center;
  overflow: hidden;
}
.slot::before, .vslot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(211, 146, 73, .06) 0 2px, transparent 2px 10px);
}
.slot__mark {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin-bottom: 1rem;
}
.slot__brief, .vslot__brief {
  position: relative;
  font: 400 var(--t-base)/1.6 var(--body);
  color: var(--chalk);
  opacity: .88;
  max-width: 30ch;
}
.slot__brief { max-width: 34ch; }

.vslot { gap: .875rem; align-content: center; }
.vslot__play {
  position: relative;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.vslot__play::after {
  content: "";
  border-left: 15px solid var(--gold);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 5px;
}
.vslot__label {
  position: relative;
  font: 500 var(--t-base)/1 var(--mono);
  letter-spacing: .16em;
  color: var(--gold);
}
.vslot__meta {
  position: relative;
  font: 400 var(--t-base)/1 var(--mono);
  letter-spacing: .1em;
  color: var(--chalk-muted);
}
.slot-caption { margin-top: .875rem; }

/* Values — a rail of five, gold marks, hairlines top and bottom. */
/* The five values read as one rail, so they need to fit on one row at desktop
   width rather than leaving a fifth orphan underneath. */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(11.5rem, 100%), 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  margin-block: 3.5rem;
}
.value { padding: 2.125rem 1.875rem 2.375rem 0; }
.value + .value { padding-left: 0; }
.value__mark { color: var(--gold); width: 26px; height: 26px; margin-bottom: 1.375rem; }
.value h3 { margin-bottom: .625rem; }
.value p { font-size: var(--t-base); line-height: 1.6; opacity: .9; }

/* Services — three panels, no cards, no matching drop shadows. */
.panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
  gap: clamp(2rem, 1rem + 3vw, 2.5rem);
}
.panel { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.panel__mark { color: var(--gold); width: 34px; height: 34px; }
.panel p { font-size: var(--t-body); line-height: 1.72; }
.panel .link-more { margin-top: auto; }

/* Event rows. */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line-light);
}
.event-row {
  display: flex;
  align-items: stretch;
  background: var(--paper);
}
.event-row.is-sold-out .event-row__price,
.event-row.is-sold-out .event-row__going { color: var(--ink-muted); }

.event-row__date {
  flex: none;
  width: clamp(4.5rem, 3rem + 6vw, 8.25rem);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: .25rem;
  background: var(--onyx);
  padding-block: 1.375rem;
}
.event-row__mon {
  font: 600 .6875rem/1 var(--body);
  letter-spacing: .18em;
  color: var(--gold);
}
/* The one place large type works purely as a graphic element (spec §9). */
.event-row__day {
  font: 600 clamp(2rem, 1.2rem + 2.4vw, 3.5rem)/1 var(--display);
  color: var(--gold);
}
.event-row__dow {
  font: 500 .6875rem/1 var(--body);
  letter-spacing: .14em;
  color: var(--chalk-dim);
}

.event-row__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .4375rem;
  padding: 1.375rem clamp(1rem, .4rem + 2vw, 2rem);
}
.event-row__name { font: 600 var(--t-h4)/1.25 var(--display); }
.event-row__name a { color: var(--ink); }
.event-row__name a:hover { color: var(--red); }
.event-row__venue { font-size: var(--t-base); color: var(--ink-muted); }
.event-row__going { font: 500 var(--t-small)/1.4 var(--body); color: var(--ink-muted); }

.event-row__action {
  flex: none;
  display: flex;
  align-items: center;
  gap: clamp(1rem, .4rem + 2vw, 1.75rem);
  padding: 1.375rem clamp(1rem, .4rem + 2vw, 2rem);
}
.event-row__price { font: 600 1.75rem/1 var(--display); }

@media (max-width: 719px) {
  .event-row { flex-wrap: wrap; }
  .event-row__body { flex-basis: calc(100% - clamp(4.5rem, 3rem + 6vw, 8.25rem)); padding-block: 1rem; }
  .event-row__action {
    flex-basis: 100%;
    justify-content: space-between;
    border-top: 1px solid var(--line-light);
    padding-top: 1rem;
  }
  .event-row__action .btn { flex: 1; max-width: 12rem; }
}

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: .5625rem; }
.filter {
  background: none;
  color: var(--ink);
  border: 1px solid rgba(26, 19, 21, .25);
  border-radius: 2px;
  padding: .625rem 1.25rem;
  font: 500 var(--t-small)/1 var(--body);
  transition: border-color var(--shift), background var(--shift), color var(--shift);
}
.filter:hover { border-color: var(--onyx); }
.filter.is-active, .filter[aria-pressed="true"] {
  background: var(--onyx);
  border-color: var(--onyx);
  color: var(--chalk);
}

/* A definition-style price table — rows, not pricing cards. */
.rows { border-top: 1px solid var(--line-strong); }
.row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 1.5rem;
  align-items: baseline;
  padding-block: 1.625rem;
  border-bottom: 1px solid var(--line-light);
}
.row__name { font: 600 var(--t-h4)/1.25 var(--display); }
.row__price { font-weight: 500; }
.row__body { color: var(--ink-muted); }
@media (max-width: 639px) {
  .row { grid-template-columns: 1fr; gap: .375rem; }
}

/* A plain list of facts, one per hairline row. */
.list-lines { border-top: 1px solid var(--line-light); }
.list-lines li, .list-lines > div {
  padding-block: .9375rem;
  border-bottom: 1px solid var(--line-light);
  font-size: var(--t-base);
}
.list-lines--roomy li, .list-lines--roomy > div { padding-block: 1.5rem; font-size: var(--t-body); line-height: 1.72; }
/* Where a row is nothing but a link, the link should be the whole row. */
.list-lines li > a:only-child { display: block; }

/* Pull quotes. */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr));
  gap: clamp(2.25rem, 1rem + 4vw, 3.5rem);
}
.quote blockquote {
  font: 500 var(--t-quote)/1.35 var(--display);
  text-wrap: pretty;
}
.quote figcaption {
  margin-top: 1.375rem;
  font: 500 var(--t-small)/1.4 var(--body);
  letter-spacing: .04em;
  color: var(--gold);
}
.quote figcaption span { color: var(--chalk-dim); }

/* FAQ accordions. */
.faq-list { border-top: 1px solid var(--line-strong); max-width: 52rem; }
.faq { border-bottom: 1px solid var(--line-light); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.25rem;
  padding-block: 1.5rem;
  font: 600 var(--t-h4)/1.3 var(--display);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--red-deep); }
.faq__sign {
  flex: none;
  position: relative;
  width: 15px;
  height: 15px;
  align-self: center;
}
.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1.5px;
  background: var(--gold);
  transition: transform var(--shift);
}
.faq__sign::after { transform: rotate(90deg); }
.faq[open] .faq__sign::after { transform: rotate(0); }
.faq__a { padding-bottom: 1.5rem; max-width: 64ch; }
.faq__a p { font-size: var(--t-body); line-height: 1.72; }

/* A dark inset panel inside an ivory band. */
.inset {
  background: radial-gradient(120% 130% at 10% 0%, #1B1416 0%, #0B0708 70%);
  color: var(--chalk);
  padding: clamp(2rem, 1rem + 4vw, 3.25rem) clamp(1.5rem, .8rem + 3.5vw, 2.875rem);
}
.inset a:not(.btn) { color: var(--gold-light); }

/* A light card on ivory. Used sparingly — it is the only boxed surface. */
.card {
  background: var(--paper);
  border: 1px solid var(--line-paper);
  padding: clamp(1.75rem, 1rem + 3vw, 2.375rem) clamp(1.5rem, .9rem + 2.5vw, 2.25rem);
}

/* Sticky side rails. */
/* One column below the breakpoint, for every variant. The explicit minmax(0,…)
   is what stops a long word in a child from widening the track past the page. */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 1rem + 5vw, 4rem);
  align-items: start;
}
.split__aside > * { position: static; }

@media (min-width: 960px) {
  .split--rail { grid-template-columns: minmax(0, 1fr) 12.5rem; }
  .split--wide-rail { grid-template-columns: minmax(0, 1fr) minmax(0, 19rem); }
  .split--media { grid-template-columns: minmax(0, 22rem) minmax(0, 1fr); }
  .split__aside > * { position: sticky; top: 6.5rem; }
}

.rail {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding-left: 1.375rem;
  border-left: 1px solid rgba(211, 146, 73, .4);
}
.rail a {
  display: block;
  padding-block: .3125rem;
  font: 500 var(--t-small)/1.35 var(--body);
  color: var(--ink-muted);
}
.rail a:hover, .rail a.is-active { color: var(--red); }

/* The funnel diagram on How It Works — gold hairlines on ivory, no boxes. */
.funnel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  padding-block: 1.75rem;
  border-top: 1px solid rgba(211, 146, 73, .5);
  border-bottom: 1px solid rgba(211, 146, 73, .5);
}
.funnel__step { font: 600 var(--t-small)/1 var(--body); white-space: nowrap; }
.funnel__link {
  flex: 1 1 2rem;
  height: 1px;
  min-width: 1.5rem;
  background: linear-gradient(90deg, var(--gold), var(--gold-shadow));
}

/* Story entries. */
.story + .story { margin-top: 1px; }
.story blockquote {
  font: 500 var(--t-quote)/1.35 var(--display);
  max-width: 40ch;
  text-wrap: pretty;
}
.story__who {
  margin-top: 1.25rem;
  font: 500 var(--t-small)/1.4 var(--body);
  letter-spacing: .04em;
  color: var(--ink-muted);
}
.story__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(11rem, 100%), 1fr));
  gap: 1.375rem;
  margin-top: 1.375rem;
}
.story__grid p { font-size: var(--t-base); line-height: 1.6; margin-top: .5rem; }

/* Photo strip. */
.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(12rem, 100%), 1fr));
  gap: 1rem;
}

/* Phone frame for real app screenshots. */
.phone {
  background: var(--onyx);
  padding: 10px;
  border-radius: 26px;
}
.phone .slot { aspect-ratio: 9 / 19; border-radius: 18px; }

/* ── 10  Forms ─────────────────────────────────────────────────────────────── */

.form { display: flex; flex-direction: column; gap: 1.375rem; max-width: 34rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field__label { font: 600 var(--t-small)/1.3 var(--body); }
.field__label span { font-weight: 400; color: var(--ink-muted); }
.field__hint { font-size: var(--t-small); color: var(--ink-muted); }
.field__error { font: 500 var(--t-small)/1.4 var(--body); color: var(--red); }

.input, .textarea, .select {
  width: 100%;
  background: var(--paper);
  border: 1px solid rgba(26, 19, 21, .25);
  border-radius: 0;
  padding: .875rem 1rem;
  font-size: var(--t-base);
  color: var(--ink);
  transition: border-color var(--shift);
}
.input:hover, .textarea:hover { border-color: rgba(26, 19, 21, .45); }
.input[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: var(--red); }
.textarea { resize: vertical; min-height: 8rem; }

.alert {
  padding: 1.125rem 1.25rem;
  border-left: 3px solid var(--red);
  background: var(--paper);
  font-size: var(--t-base);
}
.alert--ok { border-left-color: var(--gold-shadow); }

/* The booking flow. */
.steps {
  display: flex;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.step {
  flex: 1;
  background: none;
  border: 0;
  padding: 1.125rem .75rem;
  text-align: left;
  font: 600 var(--t-small)/1.35 var(--body);
  color: var(--ink-muted);
  transition: color var(--shift);
}
.step + .step { border-left: 1px solid var(--line-light); padding-left: 1.25rem; }
.step[aria-selected="true"] { color: var(--ink); }
.step[disabled] { opacity: .45; cursor: not-allowed; }

/* Each choice carries its own hairline rather than the grid painting one
   through its gaps — otherwise a part-filled last row shows grey blocks. */
.choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
  gap: 1px;
}
.choice {
  position: relative;
  display: block;
  background: var(--paper);
  border: 1px solid var(--line-paper);
  padding: 1.75rem 1.625rem;
  cursor: pointer;
  transition: background var(--shift);
}
.choice:hover { background: #fff; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice__name { display: block; font: 600 var(--t-h4)/1.25 var(--display); }
.choice__meta { display: block; margin-top: .5rem; font-weight: 500; }
.choice__body { display: block; margin-top: .625rem; font-size: var(--t-small); color: var(--ink-muted); }
.choice:has(input:checked) { box-shadow: inset 3px 0 0 var(--red); background: #fff; }
.choice:has(input:focus-visible) { outline: 2px solid var(--red-bright); outline-offset: -2px; }

.days {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(9.5rem, 100%), 1fr));
  gap: 1px;
}
.day {
  background: var(--paper);
  border: 1px solid var(--line-paper);
  padding: 1.375rem 1.25rem;
}
.day__dow { font-weight: 600; }
.day__date { font-size: var(--t-small); color: var(--ink-muted); margin-bottom: 1rem; }
.day__times { display: flex; flex-direction: column; gap: .5rem; }
.day__times .btn--outline { padding: .6875rem .5rem; width: 100%; }
.day__times .btn--outline:hover { border-color: var(--red); color: var(--red); }
.day__times input:checked + .btn--outline,
.day__times .is-chosen { border-color: var(--red); color: var(--red); }

.summary__total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  padding: 1.125rem 0 1.375rem;
}
.summary__when {
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--ink-muted);
  padding-bottom: 1.125rem;
  border-bottom: 1px solid var(--line-light);
}

/* ── 11  Page-specific ─────────────────────────────────────────────────────── */

/* Meet Samuel: a single narrow column with almost no furniture. */
.essay { max-width: 40rem; }
.essay > * + * { margin-top: 2.75rem; }
.essay .prose > p + p { margin-top: 1.25rem; }

/* The one red band on the site: the final call to action. */
.close-band { text-align: center; }
.close-band .lead { margin-inline: auto; max-width: 36rem; }
.close-band .btn { margin-top: 2.375rem; }

/* Legal pages are scaffolding until a lawyer supplies the text. */
.legal-body h2 { margin-top: 2.75rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p + p, .legal-body ul { margin-top: 1rem; }
.legal-body li { padding-left: 1.125rem; position: relative; }
.legal-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .8em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}
.legal-body li + li { margin-top: .5rem; }

/* 404 */
.notfound { min-height: 50vh; display: grid; align-content: center; }

/* ── 12  Utilities ─────────────────────────────────────────────────────────── */

.u-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.u-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.u-mt-0  { margin-top: 0 !important; }
.u-mt-1  { margin-top: 1rem; }
.u-mt-2  { margin-top: 2rem; }
.u-mt-3  { margin-top: 3rem; }
.u-mb-1  { margin-bottom: 1rem; }
.u-mb-2  { margin-bottom: 2rem; }
.u-mb-3  { margin-bottom: 3rem; }
.u-mb-4  { margin-bottom: 4rem; }
[hidden] { display: none !important; }

/* ── 13  Motion ────────────────────────────────────────────────────────────── */
/* One orchestrated moment: the hero headline sets, then the gold rule draws.
   That is the entire budget. Everything else responds to input. */

@keyframes draw-rule { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes rise-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.hero .rule { animation: draw-rule .5s .35s ease-out both; }
.hero__body > :not(.rule) { animation: rise-in .5s ease-out both; }

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

/* ── Events v2: kind and urgency tags, featured rows ─────────────────────── */
.event-row__tags { display: flex; flex-wrap: wrap; gap: .375rem; margin-bottom: .5rem; }
.tag {
  display: inline-block;
  font: 600 .6875rem/1 var(--body);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .375rem .5rem;
  border-radius: 2px;
  border: 1px solid rgba(26, 19, 21, .25);
  color: var(--ink-muted);
}
.tag--live { background: var(--red); border-color: var(--red); color: var(--chalk); }
.tag--featured { border-color: var(--gold); color: var(--gold-shadow); }
.event-row.is-featured { box-shadow: inset 0 0 0 1px var(--gold); }
.event-row__summary { font-size: var(--t-small); color: var(--ink-muted); margin-top: .25rem; max-width: 40rem; }
.event-row__price--note { font: 500 var(--t-small)/1.3 var(--body); color: var(--ink-muted); max-width: 9rem; text-align: right; }
.event-row.is-external .event-row__price { font-size: 1.25rem; }
.organizer { display: grid; gap: .25rem; font-size: var(--t-base); }
