/* ==========================================================================
   Jetcon — landing page
   Implementation of "Jetcon Landing Page v4" from the Jetcon rebrand direction
   design project. Plain CSS on plain HTML: no build step, no framework.
   ========================================================================== */

:root {
  /* — ink & ground — */
  --cream:            #f7f3ec;
  --cream-dim:        #e4e0d8;
  --sand:             #efe9df;
  --ink:              #0f141a;
  --ink-line:         #232a32;

  /* — brand red — */
  --red:              #c22a20;  /* type, buttons, appointment blocks */
  --red-dark:         #9e2018;  /* hover */
  --red-bright:       #e6392e;  /* the globe mark only */

  /* — gold — */
  --gold:             #c8a46a;  /* rules on dark */
  --gold-light:       #e2c48f;  /* eyebrows on dark */
  --gold-dark:        #7d5f27;  /* eyebrows on cream */

  /* — greys — */
  --grey-body:        #3e434a;
  --grey-mute:        #5c6169;
  --grey-on-dark:     #c3c6ca;
  --grey-on-dark-2:   #a3a8ae;

  /* — hairlines on cream — */
  --rule:             rgba(15, 20, 26, .14);
  --rule-soft:        rgba(15, 20, 26, .12);
  --rule-strong:      rgba(15, 20, 26, .2);

  /* — type — */
  --sans:  'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* — measure — */
  --shell:  1180px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* — reset ---------------------------------------------------------------- */

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

/* Author-set display values outrank the UA's [hidden] rule, so any component
   with a display declaration would ignore the attribute without this. */
[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p, dl, dd, figure { margin: 0; }
ol, ul { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; }

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

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
::selection { background: rgba(194, 42, 32, .22); }

.tnum  { font-variant-numeric: tabular-nums; }
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 20;
  background: var(--cream); color: var(--ink);
  padding: 12px 20px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.skip-link:focus { left: 0; }

/* — shared type ---------------------------------------------------------- */

.eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
}
.eyebrow--gold  { color: var(--gold-light); }
.eyebrow--brown { color: var(--gold-dark); letter-spacing: .24em; }

.section-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.18;
}

.tick { display: block; width: 64px; height: 1px; background: var(--gold); flex: none; }
.tick--sm { width: 48px; }

/* — buttons & links ------------------------------------------------------ */

.btn {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream);
}
.btn--red { background: var(--red); padding: 18px 34px; }
.btn--red:hover { background: var(--red-dark); color: var(--cream); }

.btn--boxed { padding: 19px 34px; border: 1px solid var(--red); }
.btn--boxed:hover { border-color: var(--red-dark); }

.btn--ghost { padding: 19px 34px; border: 1px solid rgba(247, 243, 236, .55); }
.btn--ghost:hover { border-color: var(--cream); color: var(--cream); }

.btn--underline {
  border-bottom: 1px solid rgba(247, 243, 236, .55);
  padding-bottom: 4px;
}
.btn--underline:hover { border-bottom-color: var(--cream); color: var(--cream); }

.link-rule {
  align-self: flex-start;
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 5px;
}
.link-rule:hover { color: var(--red-dark); border-bottom-color: var(--red-dark); }

/* — the globe mark ------------------------------------------------------- */

.globe { display: block; flex: none; }
.globe--simple  { width: .72em; height: .72em; margin: 0 .05em -.012em; }
.globe--full    { width: .70em; height: .70em; margin: 0 .05em -.012em; overflow: visible; }
.globe--display { overflow: visible; max-width: 56%; }

.wordmark {
  display: flex; align-items: baseline;
  font-family: var(--sans); font-weight: 700;
  letter-spacing: .04em;
  color: var(--cream);
}
.wordmark--sm { font-size: 19px; }
.wordmark--md { font-size: 16px; }
.wordmark--sm:hover { color: var(--cream); }
.wordmark--xl {
  font-size: min(108px, 10.8vw);
  line-height: 1;
  letter-spacing: .005em;
}

/* — image slots ---------------------------------------------------------- */

.media { position: relative; overflow: hidden; }
/* z-index 0 makes the bleed slot its own stacking context, so the image's
   z-index below stays trapped inside it and the section scrim paints on top. */
.media--bleed { position: absolute; inset: 0; z-index: 0; }
.media--4x3   { aspect-ratio: 1.28; }
.media--3x2   { aspect-ratio: 1.5; }

.media__img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
}
.media.is-empty .media__img { display: none; }

.media__hint {
  position: absolute; inset: 0; z-index: 0;
  display: grid; place-items: center;
  padding: 20px; text-align: center;
  background: #e6e0d5;
  box-shadow: inset 0 0 0 1px var(--rule);
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: #8d8578;
}
.media__hint--dark {
  background: #171d24;
  box-shadow: inset 0 0 0 1px var(--ink-line);
  color: #6f7680;
}

/* — header --------------------------------------------------------------- */

.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 5;
  min-height: 78px;
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}

.site-nav {
  display: flex; align-items: center;
  gap: clamp(12px, 2.4vw, 30px);
  flex-wrap: wrap; justify-content: flex-end;
}
.site-nav__link {
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream-dim);
}
.site-nav__link:hover { color: #ffffff; }
.site-nav__cta {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); background: var(--cream);
  padding: 12px 22px;
}
.site-nav__cta:hover { background: #ffffff; color: var(--ink); }

/* — hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: clamp(600px, 88vh, 820px);
  display: flex; align-items: flex-end;
  padding: clamp(44px, 6vw, 80px) var(--gutter);
  background: var(--ink);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg,  rgba(15,20,26,.94) 0%, rgba(15,20,26,.78) 42%, rgba(15,20,26,.34) 78%, rgba(15,20,26,.22) 100%),
    linear-gradient(180deg, rgba(15,20,26,.6)  0%, rgba(15,20,26,.18) 34%, rgba(15,20,26,.72) 100%);
}
.hero__body {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  gap: clamp(20px, 2.6vw, 30px);
  pointer-events: none;
}
.hero__strap {
  display: flex; align-items: center; gap: 20px;
  max-width: 780px;
}
.hero__strap .eyebrow {
  font-size: clamp(11px, 1.2vw, 13px);
  white-space: nowrap;
}
.hero__lede {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 40px); line-height: 1.22;
  color: var(--cream); max-width: 19ch;
}
/* Button row. Used in the hero, the page heroes and the thanks page — the
   pointer-events reset matters only where a click-through scrim sits above. */
.actions {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  margin-top: 8px;
  pointer-events: auto;
}

/* — numbers -------------------------------------------------------------- */

.stats {
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--rule);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.stat {
  padding: 40px 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.stat + .stat { border-left: 1px solid var(--rule); }
.stat:first-child { padding-left: 0; }
.stat:last-child  { padding-right: 0; }
.stat__figure {
  font-family: var(--serif); font-size: 42px; line-height: 1;
  color: var(--red);
}
.stat__label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--grey-mute);
}
.stat--note { justify-content: center; }
.stat__note {
  font-family: var(--serif); font-size: 19px; line-height: 1.4;
  max-width: 18ch;
}

/* — positioning statement ------------------------------------------------ */

.intro {
  background: var(--ink);
  padding: clamp(56px, 7vw, 96px) var(--gutter);
}
.intro__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.intro__mark { display: flex; justify-content: center; }
.intro__copy {
  display: flex; flex-direction: column; gap: 24px;
  border-left: 1px solid var(--gold);
  padding-left: clamp(24px, 3vw, 44px);
}
.intro__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.22;
  color: var(--cream); max-width: 20ch;
}
.intro__title .hl { color: var(--red-bright); }
.intro__text {
  font-size: 16px; line-height: 1.75;
  color: var(--grey-on-dark); max-width: 44ch;
}

/* — advisors / suppliers ------------------------------------------------- */

.audiences { padding: clamp(56px, 7vw, 100px) var(--gutter); }
.audiences__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 4vw, 64px);
}
.audience {
  display: flex; flex-direction: column; gap: 22px;
  scroll-margin-top: 100px;
}
.audience__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 3vw, 34px); line-height: 1.2;
  max-width: 18ch;
}
.audience__text {
  font-size: 15px; line-height: 1.75;
  color: var(--grey-body); max-width: 46ch;
}

/* — the day -------------------------------------------------------------- */

.day {
  background: var(--sand);
  padding: clamp(56px, 7vw, 100px) var(--gutter);
}
.day__inner {
  display: flex; flex-direction: column;
  gap: clamp(28px, 4vw, 48px);
}
.day__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.day__headline { display: flex; flex-direction: column; gap: 14px; }
.day__note {
  font-size: 13px; line-height: 1.7;
  color: var(--grey-mute); max-width: 36ch;
}

.schedule {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule-strong);
}
.slot-row {
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: clamp(16px, 3vw, 44px);
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.slot-row:last-child { border-bottom: 0; }
.slot-row--key {
  padding: 20px 16px;
  margin: 0 -16px;
  background: var(--red);
  color: var(--cream);
}
.slot-row__time {
  min-width: 70px;
  font-size: 13px; font-weight: 600; letter-spacing: .1em;
  color: var(--grey-mute);
}
.slot-row__title {
  flex: 1; min-width: 200px;
  font-family: var(--serif); font-size: 20px;
}
.slot-row__room {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--grey-mute);
}
.slot-row--key .slot-row__time,
.slot-row--key .slot-row__title,
.slot-row--key .slot-row__room { color: var(--cream); }

.day__legend { font-size: 12px; line-height: 1.7; color: var(--grey-mute); }

/* — venue ---------------------------------------------------------------- */

.venue { padding: clamp(56px, 7vw, 100px) var(--gutter); }
.venue__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.venue__copy { display: flex; flex-direction: column; gap: 24px; }
.venue__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15;
}

.facts {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule-strong);
}
.fact {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.fact:last-child { border-bottom: 0; }
.fact__key { font-size: 13px; color: var(--grey-mute); }
.fact__val { font-size: 14px; font-weight: 500; text-align: right; }

/* — register ------------------------------------------------------------- */

.register {
  position: relative;
  padding: clamp(64px, 8vw, 110px) var(--gutter);
  background: var(--ink);
}
.register__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(15, 20, 26, .78);
  pointer-events: none;
}
.register__body {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: clamp(24px, 3vw, 48px); flex-wrap: wrap;
  pointer-events: none;
}
.register__copy {
  flex: 1 1 420px; min-width: 0;
  display: flex; flex-direction: column; gap: 20px;
}
.register__kicker { display: flex; align-items: center; gap: 16px; }
.register__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 4vw, 48px); line-height: 1.12;
  color: var(--cream); max-width: 20ch;
}
.register__meta {
  font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--grey-on-dark);
}
.register__actions {
  /* Was flex: 0 0 auto. As a non-shrinking flex item it held both buttons at
     max-content — 589px — so its own flex-wrap never fired and the home page
     scrolled sideways on a 375px screen. Allowing it to shrink is what lets
     the buttons stack. */
  flex: 0 1 auto; min-width: 0;
  display: flex; gap: 14px; flex-wrap: wrap;
  pointer-events: auto;
}

/* — footer --------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--ink-line);
  padding: 40px var(--gutter) 52px;
}
.site-footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.site-footer__tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}
.site-footer__legal {
  font-size: 11px; letter-spacing: .06em;
  color: var(--grey-on-dark-2);
}

/* ══════════════════════════════════════════════════════════════════════════
   Inner pages — the sponsorship, floor plan and registration screens.
   Same tokens, same grammar as the landing page: hairlines, tabular figures,
   Playfair for anything that states a fact, red only for the money moment.
   ══════════════════════════════════════════════════════════════════════ */

/* — compact page hero ---------------------------------------------------- */

.page-hero {
  position: relative;
  display: flex; align-items: flex-end;
  min-height: clamp(380px, 52vh, 520px);
  padding: clamp(96px, 12vw, 140px) var(--gutter) clamp(40px, 5vw, 64px);
  background: var(--ink);
}
.page-hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg,  rgba(15,20,26,.93) 0%, rgba(15,20,26,.76) 46%, rgba(15,20,26,.40) 82%, rgba(15,20,26,.28) 100%),
    linear-gradient(180deg, rgba(15,20,26,.72) 0%, rgba(15,20,26,.24) 38%, rgba(15,20,26,.70) 100%);
}
.page-hero__body {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: clamp(16px, 2vw, 22px);
}
.page-hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 5.2vw, 62px); line-height: 1.08;
  color: var(--cream); max-width: 15ch;
}
.page-hero__lede {
  font-size: clamp(15px, 1.5vw, 17px); line-height: 1.7;
  color: var(--grey-on-dark); max-width: 52ch;
}

/* — generic section scaffolding ------------------------------------------ */

.band { padding: clamp(56px, 7vw, 100px) var(--gutter); }
.band--sand { background: var(--sand); }
.band--ink  { background: var(--ink); color: var(--grey-on-dark); }
.band--tight { padding-block: clamp(40px, 5vw, 68px); }

.band__head {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 62ch; margin-bottom: clamp(28px, 3.5vw, 48px);
}
.band__lede { font-size: 15px; line-height: 1.75; color: var(--grey-body); max-width: 56ch; }
.band--ink .band__lede { color: var(--grey-on-dark); }
.band--ink .section-title { color: var(--cream); }

/* — sponsorship tiers ---------------------------------------------------- */

.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
.tier {
  display: flex; flex-direction: column;
  border-top: 2px solid var(--ink);
  padding-top: 22px;
}
.tier > * + * { margin-top: 18px; }
.tier__name {
  font-size: 11px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-dark);
}
.tier__price {
  font-family: var(--serif); font-size: clamp(38px, 4.6vw, 52px); line-height: 1;
  color: var(--red);
}
.tier__stock {
  font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--grey-mute);
}
.tier__pitch {
  font-size: 15px; line-height: 1.7;
  color: var(--grey-body);
}
.spec {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule-strong);
}
.spec li {
  display: flex; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 14px; line-height: 1.55;
}
.spec li::before {
  content: ""; flex: none;
  width: 7px; height: 7px; margin-top: .48em;
  background: var(--red);
}
.tier__tickets {
  font-size: 13px; line-height: 1.6;
  color: var(--grey-mute);
}
.tier .link-rule { margin-top: auto; }

/* Gold sits on ink — the one tier that reads as the premium object. */
.tier--featured {
  background: var(--ink);
  border-top-color: var(--gold);
  padding: 22px clamp(22px, 2.4vw, 30px) clamp(26px, 3vw, 34px);
  color: var(--grey-on-dark);
}
.tier--featured .tier__name  { color: var(--gold-light); }
.tier--featured .tier__price { color: var(--red-bright); }
.tier--featured .tier__stock,
.tier--featured .tier__tickets { color: var(--grey-on-dark-2); }
.tier--featured .tier__pitch { color: var(--grey-on-dark); }
.tier--featured .spec { border-top-color: rgba(200,164,106,.5); }
.tier--featured .spec li { border-bottom-color: #232a32; }
.tier--featured .spec li::before { background: var(--red-bright); }
.tier--featured .link-rule { color: var(--gold-light); border-bottom-color: var(--gold); }
.tier--featured .link-rule:hover { color: var(--cream); border-bottom-color: var(--cream); }

/* — add-on sponsorships -------------------------------------------------- */

.addons {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule-strong);
}
.addon-row {
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: clamp(16px, 3vw, 44px);
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.addon-row:last-child { border-bottom: 0; }
.addon-row__price {
  min-width: 100px;
  font-size: 15px; font-weight: 600; letter-spacing: .04em;
  color: var(--red);
}
.addon-row__items {
  flex: 1; min-width: 220px;
  font-family: var(--serif); font-size: 19px; line-height: 1.45;
}
.addon-row__note {
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--grey-mute);
}
.addon-row--key {
  padding: 18px 16px; margin: 0 -16px;
  background: var(--red);
}
.addon-row--key .addon-row__price,
.addon-row--key .addon-row__items,
.addon-row--key .addon-row__note { color: var(--cream); }

/* — photo strip ---------------------------------------------------------- */

.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}
.strip figure { display: flex; flex-direction: column; gap: 10px; }
.strip .media { aspect-ratio: 1; }
.strip figcaption {
  font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--grey-mute);
}

/* — forms ---------------------------------------------------------------- */

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.form { display: flex; flex-direction: column; gap: 26px; }
.fieldset { display: flex; flex-direction: column; gap: 18px; border: 0; padding: 0; margin: 0; }
.fieldset__legend {
  width: 100%;
  font-size: 11px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-dark);
  padding: 0 0 10px; margin-bottom: 8px;
  border-bottom: 1px solid var(--rule-strong);
}
/* A nested legend is a sub-heading inside a section, not another section head. */
.fieldset .fieldset .fieldset__legend {
  color: var(--grey-mute);
  border-bottom: 0; padding-bottom: 0; margin-bottom: 2px;
}
.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field > label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--grey-mute);
}
.field .req { color: var(--red); }
.field__note { font-size: 12px; color: var(--gold-dark); }
.control {
  width: 100%;
  font: inherit; font-size: 15px; color: var(--ink);
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: 0;
  padding: 13px 14px;
}
.control:hover { border-color: rgba(15,20,26,.42); }
.control:focus-visible { border-color: var(--red); outline: 1px solid var(--red); outline-offset: -2px; }
textarea.control { min-height: 132px; resize: vertical; }
select.control {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--grey-mute) 50%),
                    linear-gradient(135deg, var(--grey-mute) 50%, transparent 50%);
  background-position: right 18px top 55%, right 12px top 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.choices { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--rule-soft); }
/* Long option lists (the 13 add-ons) go two-up so the form stays scannable. */
.choices--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  column-gap: clamp(20px, 3vw, 40px);
}
.choice {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
  cursor: pointer;
  font-size: 14px; line-height: 1.5;
}
.choice input { flex: none; margin: 2px 0 0; accent-color: var(--red); width: 16px; height: 16px; }
.choice__label { display: flex; flex-direction: column; gap: 3px; }
.choice__note { font-size: 12px; color: var(--grey-mute); }

.form__submit {
  display: inline-block; align-self: flex-start;
  font: inherit; font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream); background: var(--red);
  border: 1px solid var(--red); border-radius: 0;
  padding: 18px 34px;
  cursor: pointer;
}
.form__submit:hover { background: var(--red-dark); border-color: var(--red-dark); }
.form__note { font-size: 12px; line-height: 1.7; color: var(--grey-mute); max-width: 52ch; }

/* — sidebar panel -------------------------------------------------------- */

.panel {
  display: flex; flex-direction: column; gap: 20px;
  background: var(--sand);
  padding: clamp(24px, 3vw, 34px);
}
.panel--ink { background: var(--ink); color: var(--grey-on-dark); }
.panel__title {
  font-family: var(--serif); font-weight: 400;
  font-size: 23px; line-height: 1.25;
}
.panel--ink .panel__title { color: var(--cream); }
.panel__text { font-size: 14px; line-height: 1.75; color: var(--grey-body); }
.panel--ink .panel__text { color: var(--grey-on-dark); }

/* — thanks --------------------------------------------------------------- */

.thanks {
  min-height: 78vh;
  display: flex; align-items: center;
  padding: clamp(120px, 15vw, 180px) var(--gutter) clamp(64px, 8vw, 100px);
  background: var(--ink);
}
.thanks__inner {
  display: flex; flex-direction: column; gap: 24px; align-items: flex-start;
  max-width: 46ch;
}
.thanks__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 4.6vw, 52px); line-height: 1.1;
  color: var(--cream);
}
.thanks__text { font-size: 16px; line-height: 1.75; color: var(--grey-on-dark); }

/* — video ---------------------------------------------------------------- */

/* Click-to-play facade. The page ships a self-hosted poster and no YouTube
   code at all; site.js swaps in the iframe only once someone asks to watch,
   so nothing is loaded from — or reported to — YouTube before then. */
.video {
  position: relative;
  width: 100%; aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.video__btn {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: grid; place-items: center;
  padding: 0; border: 0; background: transparent;
  cursor: pointer;
  font: inherit; color: inherit;
}
.video__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,20,26,.34) 0%, rgba(15,20,26,.20) 45%, rgba(15,20,26,.76) 100%);
}
.video__play {
  position: relative;
  display: grid; place-items: center;
  width: clamp(64px, 7vw, 88px); aspect-ratio: 1;
  background: var(--red);
}
.video__play svg { width: 24%; height: 24%; fill: var(--cream); margin-left: 8%; }
.video__btn:hover .video__play { background: var(--red-dark); }
.video__btn:focus-visible { outline: 2px solid var(--gold); outline-offset: -4px; }
.video__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(16px, 2.4vw, 26px);
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  text-align: left;
}
.video__caption .eyebrow { color: var(--gold-light); }
.video__caption em {
  font-family: var(--serif); font-style: normal;
  font-size: clamp(16px, 2vw, 21px);
  color: var(--cream);
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__fallback {
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  font-size: 12px; color: var(--cream);
}

/* — floor plan ----------------------------------------------------------- */

/* The plan page has no hero, so the header needs its own ground. */
.site-header--solid { position: static; background: var(--ink); }
.band--plan { padding-top: clamp(40px, 5vw, 64px); }

.plan {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}
@media (max-width: 900px) { .plan { grid-template-columns: minmax(0, 1fr); } }

.plan__legend {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px clamp(14px, 2vw, 24px);
  margin-bottom: 16px;
}
.key {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--grey-mute);
}
.key::before {
  content: ""; width: 14px; height: 14px; flex: none;
  border: 1px solid rgba(15, 20, 26, .28);
}
.key--available::before { background: #ffffff; }
.key--pending::before   { background: #f0dcb6; border-color: var(--gold); }
.key--taken::before     { background: #d9d4cc; border-color: transparent; }
.key--selected::before  { background: var(--red); border-color: var(--red); }
.plan__updated { margin-left: auto; font-size: 11px; color: var(--grey-mute); }

.plan__frame {
  background: #fbf8f3;
  border: 1px solid var(--rule);
  padding: clamp(8px, 1.4vw, 18px);
  overflow-x: auto;
}
.plan__svg { display: block; width: 100%; min-width: 620px; height: auto; }

/* — plan furniture — */
.room { fill: #f7f3ec; stroke: rgba(15, 20, 26, .38); stroke-width: 2.5; }
.pod  { fill: #f3e8d4; stroke: var(--gold); stroke-width: 1.5; }
.zone { fill: #ece5da; stroke: rgba(15, 20, 26, .18); stroke-width: 1.5; }
.zone--bar { fill: #ffffff; }
.zone__label {
  fill: var(--grey-mute); font-family: var(--sans);
  font-size: 15px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  text-anchor: middle;
}
.zone__label--bar { font-size: 14px; }
.entrance { stroke: var(--red); stroke-width: 5; }

/* — booths —
   Status is carried by a class on the group, set from data/booths.json.
   Availability is never encoded by colour alone: the accessible name and the
   detail panel both state it in words. */
.booth { cursor: pointer; }
.booth__cell {
  fill: #ffffff;
  stroke: rgba(15, 20, 26, .3); stroke-width: 1.4;
  transition: fill .12s ease, stroke .12s ease;
}
.booth__id {
  fill: var(--ink); font-family: var(--sans); font-weight: 600;
  letter-spacing: .02em; text-anchor: middle; dominant-baseline: central;
  pointer-events: none;
  transition: fill .12s ease;
}
.booth:hover .booth__cell { fill: var(--sand); stroke: var(--ink); }
.booth:focus { outline: none; }
.booth:focus-visible .booth__cell { stroke: var(--red); stroke-width: 3; }

.booth--silver .booth__cell,
.booth--gold .booth__cell { stroke-width: 1.6; }
.booth--gold .booth__cell { fill: #fdf6e8; stroke: var(--gold); }

.booth.is-pending .booth__cell { fill: #f0dcb6; stroke: var(--gold); }
.booth.is-pending .booth__id   { fill: var(--gold-dark); }

.booth.is-taken { cursor: not-allowed; }
.booth.is-taken .booth__cell { fill: #d9d4cc; stroke: transparent; }
.booth.is-taken .booth__id   { fill: #9d978c; }
.booth.is-taken:hover .booth__cell { fill: #d9d4cc; stroke: transparent; }

.booth.is-selected .booth__cell { fill: var(--red); stroke: var(--red); stroke-width: 2; }
.booth.is-selected .booth__id   { fill: var(--cream); }

/* — side panel — */
.plan__side { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 24px; }
@media (max-width: 900px) { .plan__side { position: static; } }

.plan__card {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--sand);
  padding: clamp(20px, 2.4vw, 28px);
}
.plan__card--detail { background: var(--ink); }
.plan__card--detail .eyebrow { color: var(--gold-light); }
.plan__hint { font-size: 14px; line-height: 1.7; color: var(--grey-body); }
.plan__booth {
  font-family: var(--serif); font-size: clamp(30px, 3.4vw, 40px); line-height: 1;
  color: var(--cream);
}
.plan__price {
  font-family: var(--serif); font-size: 27px; line-height: 1;
  color: var(--red-bright);
}
.plan__status {
  font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--grey-on-dark-2);
}
.plan__card--detail .spec { border-top-color: rgba(200, 164, 106, .5); }
.plan__card--detail .spec li {
  border-bottom-color: #232a32; color: var(--grey-on-dark); font-size: 13px;
}
.plan__card--detail .spec li::before { background: var(--red-bright); }
.plan__cta { align-self: flex-start; }
.plan__card--detail .form__note { color: var(--grey-on-dark-2); }
.plan__cta[aria-disabled="true"] { background: #3a4048; border-color: #3a4048; cursor: not-allowed; }

.plan__counts { display: flex; gap: 0; border-top: 1px solid var(--rule-strong); }
.plan__count {
  flex: 1; display: flex; flex-direction: column; gap: 4px;
  padding: 14px 0 0;
}
.plan__count + .plan__count { border-left: 1px solid var(--rule-soft); padding-left: 14px; }
.plan__count span:first-child { font-family: var(--serif); font-size: 27px; line-height: 1; color: var(--red); }
.plan__count span:last-child {
  font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--grey-mute);
}
.plan__note { font-size: 12px; color: var(--grey-mute); }

/* — nav current state ---------------------------------------------------- */

.site-nav__link[aria-current="page"] { color: #ffffff; border-bottom: 1px solid var(--gold); padding-bottom: 3px; }

/* — motion --------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ── Advisor access tiers ─────────────────────────────────────────────────
   Belongs to the advisor pass only. Same hide-when-something-else-is-chosen
   shape as .qty, so a browser without :has() shows the tiers rather than
   hiding them with no way to reveal them.                                 */
.fieldset:has(input[name="kind"]:checked:not([value="advisor"])) .tiers-access {
  display: none;
}
.tiers-access {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--rule);
}
.tiers-access__legend {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-dark); margin: 0 0 4px;
}

/* ── Silver enquiry ───────────────────────────────────────────────────────
   Silver is requested, not bought — last year's ten hold first refusal. The
   pricing furniture is hidden rather than removed so the panel stays one
   component; the server ignores these fields when `request` is set.        */
.form--request .addon-picker,
.form--request .plans { display: none; }
.form--request .field:has(#extra) { display: none; }
/* The price stays. Silver is $10,000 and a prospect asking about one should see
   that before they write — only the things that are not yet agreed (add-ons,
   extra tickets, a payment plan) come off an enquiry. */

/* ── Holding a ticket ─────────────────────────────────────────────────────
   A held seat is a real row with no name. The control sits in the row so the
   sponsor can see it is a property of that ticket, not a separate list.    */
.field--hold { display: flex; align-items: flex-end; }
.choice--inline {
  display: flex; align-items: flex-start; gap: 9px;
  padding: 10px 0; font-size: 13px; cursor: pointer;
}
.choice--inline .choice__note { font-size: 12px; line-height: 1.45; }
.control:disabled {
  background: var(--sand); color: var(--grey-mute); cursor: not-allowed;
}

/* ── Buying extra tickets ─────────────────────────────────────────────────*/
.buytix { padding-top: 6px; }
.buytix__row { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; margin: 0 0 8px; }
.buytix__label {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--grey-mute); display: block; margin-bottom: 6px;
}
.buytix__qty { width: 96px; }
.buytix .form__submit { padding: 13px 22px; }

.ticket__print { margin-top: 22px; font-size: 13px; }
.ticket__print button {
  font: inherit; background: none; border: 0; padding: 0 0 4px; cursor: pointer;
  color: var(--gold-dark);
}

/* nav.css:start — generated by scripts/sync-nav.mjs, do not edit here */
/* ── Navigation ────────────────────────────────────────────────────────────
   The one source of nav styling for the whole site.

   There are two base stylesheets: src/app/globals.css for the React pages and
   public/assets/css/site.css for the two hand-written pages in public/. This
   file is injected verbatim at the end of both by scripts/sync-nav.mjs, which
   runs on prebuild. Editing it here changes every page at once; editing either
   base sheet's copy will just be overwritten.

   Because it lands last in both sheets it also carries the fixes to the two
   base rules it needs to override.                                          */

/* The narrow-screen panel hangs off the header, so the header must be a
   containing block. It shipped as `static`, which anchored the panel to body. */
.site-header--solid { position: relative; }

/* The links are flex items, so padding and borders move them. Reserve the same
   space on every link and draw the current-page rule with a shadow — the
   original border + padding nudged the active link 2px out of line. */
.site-nav__link { padding-bottom: 4px; }
.site-nav__link[aria-current="page"] {
  color: #ffffff;
  border-bottom: 0;
  /* Restated, not inherited: the base sheet's own [aria-current] rule sets
     padding-bottom: 3px, and an attribute selector outranks the plain
     .site-nav__link above — which left the current link 1px short and half a
     pixel low against its neighbours. */
  padding-bottom: 4px;
  box-shadow: inset 0 -1px 0 var(--gold);
}

/* Seven links plus a call to action will not fit beside the wordmark on a
   phone, and the flex-wrap fallback dropped them onto two ragged rows. Below
   the breakpoint the inline list gives way to a <details> disclosure: no
   JavaScript, and identical markup in the React and generated headers. */
.site-nav__links {
  display: flex; align-items: center;
  gap: clamp(12px, 2.2vw, 28px);
}
.site-nav__menu { display: none; position: relative; }
.site-nav__toggle {
  list-style: none; cursor: pointer;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream); padding: 11px 16px;
  border: 1px solid rgba(245, 241, 234, .34);
}
.site-nav__toggle::-webkit-details-marker { display: none; }
.site-nav__toggle:hover,
.site-nav__menu[open] .site-nav__toggle { border-color: var(--cream); }

.site-nav__panel {
  position: absolute; right: 0; top: calc(100% + 11px); z-index: 20;
  min-width: max(56vw, 240px);
  display: flex; flex-direction: column;
  background: var(--ink);
  border: 1px solid rgba(245, 241, 234, .16);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .45);
}
.site-nav__panel-link {
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream-dim);
  padding: 15px 22px;
  border-bottom: 1px solid rgba(245, 241, 234, .1);
}
.site-nav__panel-link:last-child { border-bottom: 0; }
.site-nav__panel-link:hover { color: #ffffff; background: rgba(245, 241, 234, .06); }
.site-nav__panel-link[aria-current="page"] {
  color: #ffffff; box-shadow: inset 3px 0 0 var(--gold);
}

@media (max-width: 900px) {
  .site-nav__links { display: none; }
  .site-nav__menu  { display: block; }
}

/* Keep the wordmark and the Register button from crowding on small phones. */
@media (max-width: 400px) {
  .site-nav__cta { padding: 11px 14px; letter-spacing: .1em; }
  .site-nav      { gap: 10px; }
}

/* ── Sticky call to action, phones only ───────────────────────────────────
   Above the breakpoint the header CTA is always visible, so this would be
   duplication. Below it, the two actions are otherwise a long scroll away. */
.sticky-cta { display: none; }

@media (max-width: 720px) {
  .sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
    display: grid; grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(15, 20, 26, .18);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .sticky-cta a {
    padding: 15px 8px; text-align: center;
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
  }
  .sticky-cta__advisor  { background: var(--red);  color: #ffffff; }
  .sticky-cta__supplier { background: var(--ink);  color: var(--cream); }
  .sticky-cta__advisor:hover  { background: var(--red-dark); }
  /* Keep the footer clear of the bar. */
  .site-footer { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
}

@media print { .sticky-cta { display: none !important; } }

/* ── WhatsApp ─────────────────────────────────────────────────────────────
   WhatsApp green, deliberately — it is the one place on the site that uses a
   colour from outside the palette, because the whole point of the button is
   that it is recognised instantly. */
.wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(15, 20, 26, .28);
  transition: transform .15s ease, box-shadow .15s ease;
}
.wa svg { width: 28px; height: 28px; display: block; }
.wa:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(15, 20, 26, .34); }
.wa:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .wa { transition: none; }
  .wa:hover { transform: none; }
}

/* Above the sticky bar where there is one, so it never covers a button. */
@media (max-width: 720px) {
  .wa { width: 50px; height: 50px; right: 16px; bottom: 16px; }
  .wa svg { width: 26px; height: 26px; }
  .wa--lifted { bottom: calc(64px + 16px + env(safe-area-inset-bottom)); }
}

@media print { .wa { display: none !important; } }
/* nav.css:end */

/* footer.css:start — generated by scripts/sync-nav.mjs, do not edit here */
/* ── Footer ────────────────────────────────────────────────────────────────
   Single source, injected into both base stylesheets by scripts/sync-nav.mjs
   alongside nav.css. See the note at the top of nav.css for why.

   The footer was a wordmark, a tagline and a copyright on one flex row. It now
   carries the event details, links and a contact address, so it lays out as a
   brand block beside three columns.                                          */
.site-footer__inner {
  align-items: start;
  row-gap: clamp(28px, 4vw, 40px);
}
.site-footer__brand {
  display: flex; flex-direction: column; gap: 12px;
  min-width: 200px;
}
.site-footer__cols {
  display: grid; gap: clamp(24px, 4vw, 56px);
  grid-template-columns: repeat(3, minmax(0, auto));
}
.site-footer__head {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}
.site-footer__text {
  margin: 0;
  font-size: 13px; line-height: 1.75;
  color: var(--grey-on-dark);
}
.site-footer__text a { color: var(--grey-on-dark); border-bottom: 1px solid rgba(245, 241, 234, .3); }
.site-footer__text a:hover { color: #ffffff; }
.site-footer__list { margin: 0; padding: 0; list-style: none; }
.site-footer__list li { margin: 0 0 9px; }
.site-footer__list a {
  font-size: 13px; color: var(--grey-on-dark);
  border-bottom: 1px solid transparent;
}
.site-footer__list a:hover { color: #ffffff; border-bottom-color: var(--gold); }
.site-footer__legal { align-self: end; }

@media (max-width: 860px) {
  .site-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
}
@media (max-width: 480px) {
  .site-footer__cols { grid-template-columns: minmax(0, 1fr); }
}
/* footer.css:end */

/* app.css:start — generated by scripts/sync-nav.mjs, do not edit here */
/* ── The attendee app ──────────────────────────────────────────────────────
   A phone app that happens to be served over the web: dark, full-bleed, bottom
   tab bar in thumb reach, and safe-area padding so nothing hides behind the
   notch or the home indicator.

   Single source, injected into both base stylesheets by scripts/sync-nav.mjs.  */
/* The document itself is cream for the marketing pages. Inside the app that
   shows as a pale flash when a phone rubber-bands past the end of the scroll,
   which instantly breaks the illusion of a native app. */
html:has(.pass), html:has(.pass) body { background: var(--ink); }

.pass {
  min-height: 100dvh;
  display: flex; flex-direction: column;
  background: var(--ink);
  color: var(--cream);
}
.pass__bar {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: calc(env(safe-area-inset-top) + 14px) 20px 14px;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-line);
}
.pass__brand {
  font-weight: 700; font-size: 14px;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--cream);
}
.pass__brand--lg { font-size: 17px; margin: 0 0 28px; }
.pass__dot { color: var(--red-bright); }
.pass__who {
  font-size: 12px; letter-spacing: .04em;
  color: var(--grey-on-dark-2);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.pass__body {
  flex: 1;
  display: flex; flex-direction: column; gap: 14px;
  padding: 18px 20px calc(env(safe-area-inset-bottom) + 92px);
  max-width: 640px; width: 100%; margin: 0 auto;
}
.pass--plain .pass__body { padding-bottom: calc(env(safe-area-inset-bottom) + 32px); }
.pass__signin { justify-content: center; min-height: 100dvh; }

.pass__heading {
  font-family: var(--serif); font-weight: 400;
  font-size: 30px; line-height: 1.1; margin: 4px 0 6px;
  color: var(--cream);
}
.pass__title {
  font-family: var(--serif); font-weight: 400;
  font-size: 32px; line-height: 1.1; margin: 0 0 14px;
  color: var(--cream);
}
.pass__lede  { color: var(--grey-on-dark); font-size: 15px; line-height: 1.65; margin: 0 0 22px; }
.pass__note  { color: var(--grey-on-dark-2); font-size: 13px; line-height: 1.6; margin: 18px 0 0; }
.pass__note a, .pass__lede a { color: var(--gold-light); }
.pass__empty { color: var(--grey-on-dark-2); font-size: 15px; line-height: 1.6; }
.pass__warn {
  background: rgba(230, 57, 46, .13);
  border-left: 3px solid var(--red-bright);
  padding: 12px 14px; margin: 0 0 18px;
  font-size: 14px; color: var(--cream);
}

/* ── Cards ────────────────────────────────────────────────────────────── */
.card {
  background: #171d25;
  border: 1px solid var(--ink-line);
  padding: 18px 20px;
}
.card--ticket { text-align: center; padding: 26px 20px 22px; }
.card__eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 8px;
}
.card__name {
  font-family: var(--serif); font-weight: 400; font-size: 27px;
  line-height: 1.15; margin: 0; color: var(--cream);
}
.card__org  { font-size: 14px; color: var(--grey-on-dark); margin: 4px 0 0; }
.card__lead { font-size: 17px; font-weight: 600; margin: 0; color: var(--cream); }
.card__sub  { font-size: 14px; line-height: 1.6; color: var(--grey-on-dark); margin: 5px 0 0; }
.card__hint { font-size: 13px; color: var(--grey-on-dark-2); margin: 14px 0 0; }
.card__meta { font-size: 12px; color: var(--grey-on-dark-2); margin: 6px 0 0; }

/* The QR must stay high-contrast: a dark-on-dark code will not scan. */
.qr {
  background: #ffffff; padding: 14px;
  width: fit-content; margin: 20px auto 0;
  line-height: 0;
}
.qr svg { display: block; width: 240px; height: 240px; }

/* ── Program ────────────────────────────────────────────────────────── */
.run { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1px;
       background: var(--ink-line); border: 1px solid var(--ink-line); }
.run__item {
  background: #171d25; padding: 15px 17px;
  display: grid; grid-template-columns: 4.6rem 1fr; gap: 4px 14px;
  border-left: 3px solid transparent;
}
.run__item--session { border-left-color: var(--gold); }
.run__item--floor   { border-left-color: var(--red-bright); }
.run__item--meal    { border-left-color: #4f7f66; }
.run__time { margin: 0; font-size: 12px; color: var(--grey-on-dark-2); line-height: 1.5; }
.run__dash { display: block; opacity: .5; }
.run__title { margin: 0; font-size: 15px; font-weight: 600; color: var(--cream); }
.run__detail { margin: 5px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--grey-on-dark); }
.run__where { margin: 6px 0 0; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
              color: var(--grey-on-dark-2); }
.run__live {
  margin-left: 8px; font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: 2px 6px;
}

/* ── Exhibitors ───────────────────────────────────────────────────────── */
.seek { margin: 0 0 4px; }
.seek .control { width: 100%; }
.dir { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1px;
       background: var(--ink-line); border: 1px solid var(--ink-line); }
.dir__row { background: #171d25; padding: 14px 16px; display: grid;
            grid-template-columns: 3.1rem 1fr; gap: 12px; align-items: start; }
.dir__booth {
  font-size: 13px; font-weight: 700; color: var(--ink);
  background: var(--gold); padding: 5px 0; text-align: center;
}
.dir__name  { margin: 0; font-size: 15px; font-weight: 600; color: var(--cream); }
.dir__blurb { margin: 4px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--grey-on-dark); }
.dir__meta  { margin: 6px 0 0; font-size: 12px; color: var(--grey-on-dark-2); }
.dir__meta a { color: var(--gold-light); }

/* ── Tab bar ──────────────────────────────────────────────────────────── */
.pass__tabs {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 20;
  /* Six tabs on a 375px bar. The labels are the constraint, not the icons,
     so they shrink rather than the bar wrapping to a second row. */
  display: grid; grid-template-columns: repeat(6, 1fr);
  background: rgba(15, 20, 26, .97);
  border-top: 1px solid var(--ink-line);
  padding-bottom: env(safe-area-inset-bottom);
  backdrop-filter: blur(8px);
}
.pass__tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 11px 4px 12px;
  color: var(--grey-on-dark-2);
  border-top: 2px solid transparent;
  margin-top: -1px;
}
.pass__tab[aria-current="page"] { color: var(--cream); border-top-color: var(--red-bright); }
.pass__tab-glyph { font-size: 17px; line-height: 1; }
.pass__tab-label { font-size: 9.5px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }

.pass__signout {
  margin: 10px auto 0; padding: 11px 20px;
  font: inherit; font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--grey-on-dark-2);
  background: none; border: 1px solid var(--ink-line); cursor: pointer;
}
.pass__signout:hover { color: var(--cream); border-color: var(--grey-on-dark-2); }

/* The app is a dark surface by design; the shared form control is built for
   the cream pages, so it needs restating here. */
.pass .control {
  background: #0f141a; border: 1px solid var(--ink-line); color: var(--cream);
}
.pass .control:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.pass .form__submit { width: 100%; }
.pass label { color: var(--grey-on-dark); }

/* ── Meetings, attendee side ──────────────────────────────────────────── */
.pass__sub {
  margin: 2px 0 10px; font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
}
.invites { display: flex; flex-direction: column; gap: 10px; }
.invite {
  background: #171d25; border: 1px solid var(--ink-line);
  border-left: 3px solid var(--gold); padding: 16px 18px;
}
.invite__who   { margin: 0; font-size: 16px; font-weight: 600; color: var(--cream); }
.invite__where { margin: 3px 0 0; font-size: 12px; letter-spacing: .1em;
                 text-transform: uppercase; color: var(--grey-on-dark-2); }
.invite__msg {
  margin: 11px 0 0; padding-left: 12px; border-left: 2px solid var(--ink-line);
  font-size: 14px; line-height: 1.6; color: var(--grey-on-dark);
}
.invite__acts { display: flex; gap: 10px; margin-top: 15px; }
.invite__yes, .invite__no {
  flex: 1; font: inherit; font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 12px 10px; cursor: pointer; border: 1px solid;
}
.invite__yes { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.invite__no  { background: none; color: var(--grey-on-dark); border-color: var(--ink-line); }
.invite__yes:disabled, .invite__no:disabled { opacity: .5; cursor: default; }
.invite__no:hover:not(:disabled) { color: var(--cream); border-color: var(--grey-on-dark-2); }

/* ── Floor map ────────────────────────────────────────────────────────────
   The room is 1200x1000. Squeezed onto a 375px phone every booth number
   becomes unreadable, so the map is drawn at a fixed comfortable size and the
   frame scrolls both ways, opening centred on whatever you came to find. */
.fmap {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: #090d12;
  border: 1px solid var(--ink-line);
  max-height: 62vh;
}
.fmap__svg { display: block; width: 880px; height: auto; }

.fmap__room  { fill: #1a212a; stroke: #39434f; stroke-width: 2; }
.fmap__zone  { fill: rgba(245, 241, 234, .05); stroke: var(--ink-line); stroke-width: 1; }
.fmap__pod   { fill: rgba(245, 241, 234, .03); stroke: var(--ink-line); stroke-width: 1;
               stroke-dasharray: 4 4; }
.fmap__door  { stroke: var(--gold); stroke-width: 4; }
.fmap__zlabel {
  fill: var(--grey-on-dark-2); font-size: 15px; font-weight: 600;
  text-anchor: middle; letter-spacing: .04em;
}

.fbooth { cursor: pointer; }
.fbooth__cell { fill: rgba(245, 241, 234, .10); stroke: #39434f; stroke-width: 1; }
.fbooth__code {
  fill: #8b939c; font-size: 15px; font-weight: 700;
  text-anchor: middle; pointer-events: none;
}
.fbooth.is-taken .fbooth__cell { fill: var(--gold); stroke: var(--gold); }
.fbooth.is-taken .fbooth__code { fill: #0f141a; }
.fbooth.is-mine  .fbooth__cell { fill: var(--red-bright); stroke: var(--red-bright); }
.fbooth.is-mine  .fbooth__code { fill: #ffffff; }
.fbooth__dot { fill: #ffffff; }
.fbooth.is-picked .fbooth__cell {
  stroke: #ffffff; stroke-width: 3; paint-order: stroke;
}
.fbooth:focus-visible .fbooth__cell { stroke: #ffffff; stroke-width: 3; outline: none; }

.fmap__key {
  display: flex; align-items: center; flex-wrap: wrap; gap: 7px 14px;
  margin: 10px 0 0; font-size: 11px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--grey-on-dark-2);
}
.fmap__k { width: 11px; height: 11px; display: inline-block; margin-right: -6px; }
.fmap__k--mine  { background: var(--red-bright); }
.fmap__k--taken { background: var(--gold); }
.fmap__k--empty { background: rgba(245, 241, 234, .10); border: 1px solid #39434f; }

.pass__cta {
  display: block; text-align: center;
  padding: 13px 16px; margin: 0 0 4px;
  background: none; border: 1px solid var(--ink-line);
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream);
}
.pass__cta:hover { border-color: var(--grey-on-dark-2); }
.run__where a { color: var(--gold-light); border-bottom: 1px solid rgba(200,164,106,.4); }

/* ── Directory and messages ────────────────────────────────────────────────
   Six tabs is the most a 375px bar takes, so /app/messages hangs off the
   People tab rather than claiming a seventh.                              */

.pass__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.pass__inbox { font-size: 13px; color: var(--gold); display: inline-flex; align-items: center; gap: 7px; }
.pass__badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 19px; height: 19px; padding: 0 5px; border-radius: 10px;
  background: var(--red); color: #fff; font-size: 11px; font-weight: 700;
}
.pass__back { font-size: 13px; margin-bottom: 12px; }
.pass__back a { color: var(--grey-on-dark-2); }
.pass__empty { font-size: 14px; color: var(--grey-on-dark-2); line-height: 1.6; padding: 18px 0; }

.ppl__search { margin-bottom: 12px; }
.ppl__tabs { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.ppl__tab {
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 14px; border: 1px solid var(--ink-line); color: var(--grey-on-dark-2);
}
.ppl__tab[aria-current="true"] { background: var(--gold); border-color: var(--gold); color: #14181d; }
.ppl__count { font-size: 12px; color: var(--grey-on-dark-2); margin-bottom: 10px; }

.ppl__list { list-style: none; margin: 0; padding: 0; }
.ppl__list li + li { border-top: 1px solid var(--ink-line); }
.ppl__row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 2px; color: inherit;
}
.ppl__who { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ppl__who strong { font-size: 15px; color: var(--cream); }
.ppl__meta { font-size: 12.5px; color: var(--grey-on-dark-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ppl__side {
  flex: none; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 8px; border: 1px solid currentColor; color: var(--grey-on-dark-2);
}
.ppl__side--advisors  { color: var(--gold); }
.ppl__side--suppliers { color: #7fb2e0; }
.ppl__note { font-size: 12px; color: var(--grey-on-dark-2); margin-top: 20px; line-height: 1.6; }

.thread__last { max-width: 62vw; }
.thread__right { display: flex; align-items: center; gap: 8px; flex: none; }
.thread__when { font-size: 11.5px; color: var(--grey-on-dark-2); }

.msg__head { margin-bottom: 16px; }
.msg__meta { font-size: 13px; color: var(--grey-on-dark-2); margin: 4px 0 8px; }
.msg__list { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.msg {
  max-width: 84%; padding: 11px 13px;
  background: #1a2028; border: 1px solid var(--ink-line);
}
.msg--mine { align-self: flex-end; background: #23303c; }
.msg__body { font-size: 14px; line-height: 1.55; color: var(--cream); white-space: pre-wrap; margin: 0; }
.msg__when { font-size: 11px; color: var(--grey-on-dark-2); margin: 5px 0 0; }

.msg__compose { display: flex; flex-direction: column; gap: 9px; }
.msg__input { resize: vertical; min-height: 78px; }
.msg__actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.msg__count { font-size: 11.5px; color: var(--grey-on-dark-2); }
.msg__err { font-size: 13px; color: #e0857c; }
/* app.css:end */

/* quotes.css:start — generated by scripts/sync-nav.mjs, do not edit here */
/* ── Quotes ───────────────────────────────────────────────────────────────
   A self-scrolling marquee, used on the advisory board page and the home page.
   Single source, injected into both stylesheets by scripts/sync-nav.mjs — the
   home page is hand-written HTML and cannot import from the React app.

   CSS rather than a timer on purpose: no setInterval to be throttled in a
   background tab, no visibility API to misread, and it runs on the compositor.
*/
.quotes { overflow: hidden; }

.quotes__rail {
  display: flex; width: max-content;
  animation: quote-drift 72s linear infinite;
}
.quotes__set {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  padding-right: clamp(20px, 3vw, 40px);
}
.quotes .quote {
  flex: none; width: min(88vw, 30rem); margin: 0;
}

/* Two identical sets, so the reset at -50% lands exactly where it started. */
@keyframes quote-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Stop while it is being read. */
.quotes:hover .quotes__rail,
.quotes:focus-within .quotes__rail { animation-play-state: paused; }

/* No motion at all for anyone who has asked for none — the track becomes an
   ordinary horizontal scroller instead, so the quotes stay reachable. */
@media (prefers-reduced-motion: reduce) {
  .quotes { overflow-x: auto; scroll-snap-type: x proximity; }
  .quotes__rail { animation: none; }
  .quotes .quote { scroll-snap-align: start; }
}
.quote { display: flex; flex-direction: column; gap: 16px; border-left: 1px solid var(--gold); padding-left: 22px; }
.quote__text {
  margin: 0; font-family: var(--serif); font-size: 17px; line-height: 1.65;
  color: var(--cream);
}
.quote__who { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); }
.quote__org { font-weight: 400; letter-spacing: .06em; color: var(--grey-on-dark-2); }

/* The advisory board page puts these on ink. On the cream home page they need
   their own band, or gold-on-cream text would be unreadable. */
.band--quotes {
  background: var(--ink);
  padding: clamp(44px, 6vw, 76px) 0;
}
.band--quotes .shell { margin-bottom: clamp(22px, 3vw, 32px); }
.band--quotes .section-title--light { color: var(--cream); }
.band--quotes .eyebrow--gold { color: var(--gold-light); }
/* Indent the whole strip, not the first set.
   Padding the first set only made the two sets different widths, so the -50%
   loop point no longer equalled one set and the seam visibly jumped. The two
   sets must stay identical for the loop to be invisible. */
.band--quotes .quotes { margin-left: var(--gutter); }
/* quotes.css:end */
