/* Longtable site styles. Tokens and type roles come from brand/longtable-brand.html. */
:root {
  --claret: #5A1B2A;
  --linen: #F3F2ED;
  --bottle: #1E3129;
  --brass: #B48C3C;
  --olive: #676D52;

  --bg: var(--linen);
  --fg: var(--bottle);
  --muted: #56604F;
  --rule: rgba(30, 49, 41, 0.16);
  --panel: #E9E8E1;
  --field: #FBFBF8;
  --accent: var(--claret);
  --error: #8A1F2E;

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --serif: "Spectral", Georgia, "Times New Roman", serif;

  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #16241D;
    --fg: #ECEAE2;
    --muted: #A9B09D;
    --rule: rgba(236, 234, 226, 0.15);
    --panel: #1F3128;
    --field: #1A2A22;
    --accent: var(--brass);
    --error: #E8A0A8;
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #16241D;
  --fg: #ECEAE2;
  --muted: #A9B09D;
  --rule: rgba(236, 234, 226, 0.15);
  --panel: #1F3128;
  --field: #1A2A22;
  --accent: var(--brass);
  --error: #E8A0A8;
  color-scheme: dark;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { text-decoration-thickness: 2px; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 10;
  background: var(--linen); color: var(--bottle); padding: 0.6rem 1rem; border-radius: 3px;
  font-family: var(--display); font-weight: 600; font-size: 0.9rem;
}
.skip:focus { top: 1rem; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* Type roles */
h1, h2, h3, .dsp {
  font-family: var(--display);
  font-stretch: 125%;
  font-weight: 600;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.25rem, 6vw, 3.5rem); line-height: 1.05; letter-spacing: -0.02em; margin: 0; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.25rem); line-height: 1.1; margin: 0 0 0.75rem; }
h3 { font-size: 1.125rem; line-height: 1.25; margin: 0 0 0.35rem; font-stretch: 112%; letter-spacing: -0.005em; }
p { margin: 0 0 1rem; }
em.t { font-weight: 300; }
.num { font-family: var(--display); font-stretch: 125%; font-weight: 600; letter-spacing: -0.015em; }

/* Lockup */
.lockup {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--display); font-stretch: 125%; font-weight: 600; letter-spacing: -0.02em;
  line-height: 1; text-decoration: none; color: inherit;
}
.lockup .mark { height: 1.25em; width: auto; aspect-ratio: 184 / 56; flex: none; fill: currentColor; display: block; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--display); font-stretch: 112%; font-weight: 600; font-size: 1rem; line-height: 1.2;
  background: var(--claret); color: var(--linen); border: 0; border-radius: 3px;
  padding: 0.95rem 1.5rem; cursor: pointer; text-decoration: none;
}
.btn:hover { background: #4A1522; }
.btn-linen { background: var(--linen); color: var(--claret); }
.btn-linen:hover { background: #FFFFFF; }
.btn[disabled] { opacity: 0.6; cursor: progress; }
.textlink { font-family: var(--display); font-weight: 600; font-size: 0.95rem; }

/* Top bar */
.top { background: var(--claret); color: var(--linen); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.1rem; padding-bottom: 1.1rem; }
.top .lockup { font-size: 1.1rem; }
.top nav { display: flex; align-items: center; gap: 1.25rem; }
.top nav a { font-family: var(--display); font-size: 0.9rem; }
.top nav .btn { padding: 0.6rem 1rem; font-size: 0.9rem; }
@media (max-width: 520px) { .top .nav-how { display: none; } }

/* Hero */
.hero {
  background: var(--claret); color: var(--linen); text-align: center;
  padding: clamp(3rem, 9vw, 7rem) 0 clamp(3.5rem, 8vw, 6rem);
}
.hero-mark { display: block; width: min(520px, 84%); height: auto; margin: 0 auto clamp(2rem, 5vw, 3.25rem); overflow: visible; }
.hero-mark .tbl { fill: currentColor; }
.hero-mark .seat { fill: currentColor; stroke: currentColor; stroke-width: 1.2; }
.js .hero-mark .seat { fill: transparent; transition: fill 0.35s ease; }
.js .hero-mark .seat.on { fill: currentColor; }
.hero h1 { max-width: 17ch; margin: 0 auto; }
.hero-line { font-style: italic; font-weight: 300; font-size: clamp(1.2rem, 2.4vw, 1.6rem); line-height: 1.4; margin: 1.25rem auto 0; max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem 1.75rem; margin-top: 2.5rem; }
.hero-actions .textlink { color: var(--linen); }

/* Facts strip */
.facts { border-bottom: 1px solid var(--rule); }
.facts dl { display: grid; grid-template-columns: minmax(0, 1fr); margin: 0; }
.facts dl > div { display: flex; flex-direction: column; padding: 1.25rem 0; border-top: 1px solid var(--rule); }
.facts dl > div:first-child { border-top: 0; }
.facts dt { font-size: 1.0625rem; color: var(--muted); margin-top: 0.3rem; order: 2; }
.facts dd { margin: 0; font-family: var(--display); font-stretch: 125%; font-weight: 600; font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.1; letter-spacing: -0.02em; }
@media (min-width: 720px) {
  .facts dl { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .facts dl > div { border-top: 0; padding: 2rem 1.5rem; border-left: 1px solid var(--rule); }
  .facts dl > div:first-child { padding-left: 0; border-left: 0; }
}

/* Sections */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; border-top: 1px solid var(--rule); }
.section.first { border-top: 0; }
.grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; }
.section-head p { color: var(--muted); font-size: 1.0625rem; max-width: 34ch; }
@media (min-width: 880px) {
  .grid { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 3.5rem; }
  .section-head { position: sticky; top: 2rem; align-self: start; }
}
.lead { font-size: clamp(1.2rem, 2vw, 1.4rem); line-height: 1.55; max-width: 44ch; }
.body-copy { max-width: 62ch; }
.block { margin-top: 3rem; }
.muted { color: var(--muted); }

/* Weekend shape */
.days { margin: 1.5rem 0 0; border-top: 1px solid var(--rule); }
.day { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0.25rem; padding: 1.1rem 0; border-bottom: 1px solid var(--rule); }
@media (min-width: 640px) { .day { grid-template-columns: 8rem minmax(0, 1fr); gap: 1.5rem; } }
.day h3 { margin: 0; font-size: 1.05rem; padding-top: 0.2rem; }
.day p { margin: 0; max-width: 56ch; }
.fine { font-size: 0.95rem; color: var(--muted); margin: 1rem 0 0; max-width: 60ch; }

/* Is / isn't */
.isnt { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); margin-top: 1rem; border-top: 1px solid var(--rule); }
.isnt [role="row"] > div { padding: 0.8rem 1rem 0.8rem 0; border-bottom: 1px solid var(--rule); font-size: 1.0625rem; }
.isnt [role="row"] > div:nth-child(even) { color: var(--muted); padding-left: 1rem; border-left: 1px solid var(--rule); }
.isnt .th { font-family: var(--display); font-weight: 600; font-size: 0.875rem; color: var(--fg) !important; }

/* Photos */
.photo-img { margin: 0; }
.photo-img img { display: block; width: 100%; height: auto; border-radius: 4px; background: var(--panel); }

/* Photo placeholders: honest blocks until real photography exists */
.photo {
  margin: 0; min-height: clamp(220px, 34vw, 380px); border-radius: 4px;
  display: flex; align-items: flex-end; padding: 1.25rem 1.4rem;
}
.photo figcaption { font-family: var(--display); font-size: 0.875rem; line-height: 1.45; max-width: 44ch; }
.photo-claret { background: var(--claret); color: var(--linen); }
.photo-panel { background: var(--panel); color: var(--muted); }

/* The split */
.split-field { background: var(--bottle); color: var(--linen); }
.split-field .section { border-top: 0; }
.split-field .section-head p, .split-field .muted { color: #C9CDBF; }
.split-field :focus-visible { outline-color: var(--brass); }
.payout { margin: 0 0 2rem; }
.payout .figure { font-family: var(--display); font-stretch: 125%; font-weight: 600; font-size: clamp(2.5rem, 7vw, 4.25rem); line-height: 1; letter-spacing: -0.025em; color: var(--brass); display: block; }
.payout .rule { display: block; width: 4rem; height: 2px; background: var(--brass); margin: 1.1rem 0 1rem; }
.payout p { font-size: 1.125rem; max-width: 46ch; margin: 0; }
.roles { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; margin-top: 2.5rem; border-top: 1px solid rgba(236, 234, 226, 0.18); padding-top: 2rem; }
@media (min-width: 640px) { .roles { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; } }
.roles ul { list-style: none; padding: 0; margin: 0.75rem 0 0; }
.roles li { padding: 0.55rem 0; border-bottom: 1px solid rgba(236, 234, 226, 0.14); font-size: 1.0625rem; line-height: 1.45; }
.roles h3 { font-size: 1.25rem; font-stretch: 125%; }

/* Phases */
.phases { list-style: none; padding: 0; margin: 0; counter-reset: phase; border-top: 1px solid var(--rule); }
.phase { display: grid; grid-template-columns: 2.75rem minmax(0, 1fr); gap: 0 1rem; padding: 1.6rem 0; border-bottom: 1px solid var(--rule); }
.phase::before {
  counter-increment: phase; content: counter(phase);
  font-family: var(--display); font-stretch: 125%; font-weight: 600; font-size: 1.6rem; line-height: 1.1; color: var(--accent);
}
.phase h3 { font-size: 1.25rem; margin-bottom: 0.2rem; }
.phase .len { font-family: var(--display); font-size: 0.875rem; color: var(--muted); margin: 0 0 0.75rem; }
.phase .you, .phase .us { font-size: 1.0625rem; margin: 0 0 0.4rem; max-width: 58ch; }
.phase .you b, .phase .us b { font-family: var(--display); font-weight: 600; font-size: 0.875rem; }

/* Apply */
.form { margin-top: 1.5rem; }
.form fieldset { border: 0; padding: 0; margin: 0 0 2.25rem; min-width: 0; }
.form legend { font-family: var(--display); font-stretch: 112%; font-weight: 600; font-size: 1.25rem; padding: 0; margin-bottom: 1rem; }
.field { margin-bottom: 1.25rem; }
.field label, .field .label { display: block; font-family: var(--display); font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.35rem; }
.field .hint { display: block; font-size: 0.95rem; color: var(--muted); margin: -0.15rem 0 0.45rem; line-height: 1.45; }
.field input[type="text"], .field input[type="email"], .field textarea, .field select {
  width: 100%; font: inherit; font-size: 1.0625rem; color: var(--fg);
  background: var(--field); border: 1px solid var(--rule); border-radius: 3px;
  padding: 0.7rem 0.8rem;
}
.field textarea { min-height: 6.5rem; resize: vertical; line-height: 1.5; }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible { outline: 2px solid var(--brass); outline-offset: 1px; border-color: transparent; }
.field [aria-invalid="true"] { border-color: var(--error); }
.field .err { display: block; color: var(--error); font-family: var(--display); font-size: 0.875rem; margin-top: 0.35rem; }
.row2 { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0 1.25rem; }
@media (min-width: 640px) { .row2 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.choices { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.choices label { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--serif); font-weight: 400; font-size: 1.0625rem; margin: 0; }
.choices input { accent-color: var(--claret); width: 1.05rem; height: 1.05rem; }
.form-status { margin-top: 1rem; font-size: 1.0625rem; }
.form-status.error { color: var(--error); }
.sent { background: var(--panel); border-radius: 4px; padding: clamp(1.5rem, 4vw, 2.25rem); }
.sent h3 { font-size: 1.5rem; font-stretch: 125%; }
.hp { position: absolute; left: -9999px; }

/* Traveler aside */
.aside { background: var(--panel); }
.aside .wrap { padding-top: 2rem; padding-bottom: 2rem; }
.aside p { margin: 0; font-size: 1.0625rem; max-width: 70ch; }

/* Footer */
.foot { background: var(--claret); color: var(--linen); padding: clamp(2.75rem, 6vw, 4rem) 0; }
.foot .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.25rem 2rem; }
.foot .lockup { font-size: 1.25rem; }
.foot .sign { margin: 0; font-style: italic; font-weight: 300; font-size: 1.125rem; }
.foot nav { display: flex; gap: 1.25rem; font-family: var(--display); font-size: 0.875rem; width: 100%; padding-top: 1.25rem; border-top: 1px solid rgba(243, 242, 237, 0.2); }
.foot nav span { color: rgba(243, 242, 237, 0.72); margin-left: auto; }

/* Plain pages (404, privacy) */
.plain { min-height: 60vh; padding: clamp(3.5rem, 10vw, 7rem) 0; }
.plain h1 { margin-bottom: 1rem; max-width: 18ch; }
.plain p { max-width: 58ch; }

@media (prefers-reduced-motion: reduce) {
  .js .hero-mark .seat { transition: none; }
}

/* Small-screen tightening */
.btn { white-space: nowrap; }
@media (max-width: 520px) {
  .payout .figure { font-size: clamp(1.9rem, 10vw, 2.5rem); }
}
/* Keep the nav mark at 24px or taller, per the brand rule for the sixteen-seat mark. */
.top .lockup { font-size: 1.25rem; }
@media (max-width: 520px) {
  .top .lockup { font-size: 1.2rem; }
  .top nav .btn { padding: 0.55rem 0.75rem; }
}

/* Policy pages */
.policy { max-width: 62ch; margin-top: 2rem; }
.policy h2 { font-size: 1.35rem; margin: 2.5rem 0 0.6rem; }
.policy ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.policy li { margin-bottom: 0.4rem; }
.policy b { font-family: var(--display); font-weight: 600; font-size: 0.95rem; }
