/* ==========================================================================
   Seattle House — Market Haul giveaway
   Tokens mirror the Seattle House 2026 Figma variables
   (Primitives / Semantic / Typography / UI Styles collections).
   ========================================================================== */

:root {
  /* Colour — Semantic */
  --color-heading: #222223;          /* Text/heading   -> Neutrals/900 */
  --color-text: #4d4d4e;             /* Text/text      -> Neutrals/700 */
  --color-muted: #7a7a7a;            /* Neutrals/500 */
  --color-alt: #ffffff;              /* Text/alternate -> Neutrals/100 */
  --color-alt-text: #faf9f5;         /* Text/alternate text -> Neutrals/200 */
  --color-bg-primary: #faf9f5;       /* Background/primary */
  --color-bg-secondary: #ffffff;     /* Background/secondary */
  --color-bg-dark: #101010;          /* Background/dark */
  --color-border: #e6e8e5;           /* Neutrals/300 */
  --color-border-strong: #c9ccca;    /* Neutrals/400 */
  --color-line-dark: #4d4d4e;        /* Neutrals/700 (dividers on dark) */
  --color-gold: #d2ba92;             /* cascade-dark */
  --color-gold-dark: #876936;        /* cascade-darkest */
  --color-cream: #fdf8f2;            /* cascade-light */

  /* Typography — Aktiv Grotesk via Adobe Fonts kit jcu2crq (weights 300 / 400 / 500) */
  --font-sans: "aktiv-grotesk", "Helvetica Neue", Arial, sans-serif;

  /* Font sizes — Desktop values (Mobile overrides below) */
  /* Fluid: 150px at 1440px wide, shrinks with the screen, never below 40px */
  --fs-display: clamp(40px, 10.42vw, 150px);
  --fs-display-legal: clamp(40px, 6.94vw, 100px);
  --fs-h3: 40px;
  --fs-h4: 32px;
  --fs-h5: 24px;
  --fs-h6: 20px;
  --fs-large: 20px;
  --fs-medium: 18px;
  --fs-regular: 16px;
  --fs-small: 14px;
  --fs-tiny: 12px;
  --fs-stat: 48px;              /* Font Size/Heading 2 */

  /* Spacing — UI Styles/Spacing */
  --gutter: 64px;                    /* Spacing/xlarge */
  --section-y: 120px;
  --space-xs: 16px;
  --space-s: 24px;
  --space-m: 32px;
  --space-l: 48px;
  --space-xl: 64px;
  --space-huge: 96px;

  --container: 1440px;
  --nav-h: 64px;
}

@media (max-width: 767px) {
  :root {
    /* Typography — Mobile mode */
    --fs-h3: 32px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --fs-h6: 18px;
    --fs-stat: 36px;

    --gutter: 24px;                  /* Spacing/small */
    --section-y: 64px;
  }
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-regular);
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg-secondary);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; }
ol, ul { margin: 0; padding: 0; list-style: none; }

[hidden] { display: none !important; }

:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: var(--section-y) 0; }
.section--primary { background: var(--color-bg-primary); }
.section--white { background: var(--color-bg-secondary); }
.section--dark { background: var(--color-bg-dark); color: var(--color-alt-text); }

/* Type helpers ------------------------------------------------------------ */
.eyebrow {
  font-size: var(--fs-tiny);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
}
.section--dark .eyebrow { color: var(--color-gold); }

.h3, .h4, .h6 { text-transform: uppercase; letter-spacing: 0.02em; color: var(--color-heading); }
.h3 { font-size: var(--fs-h3); line-height: 1.2; }
.h4 { font-size: var(--fs-h4); line-height: 1.2; }
.h6 { font-size: var(--fs-h6); line-height: 1.4; }
.section--dark .h3, .section--dark .h4, .section--dark .h6 { color: var(--color-alt); }

.body-s { font-size: var(--fs-small); line-height: 1.6; }
.body-r { font-size: var(--fs-regular); line-height: 1.6; }
.fine-print { font-size: var(--fs-tiny); line-height: 1.6; color: var(--color-muted); font-weight: 300; }
.fine-print a { color: var(--color-heading); }
.section--dark .fine-print { color: var(--color-alt-text); }
.section--dark .fine-print a { color: var(--color-alt); }

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px;
  border: 1px solid currentColor;
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.3;
  transition: background-color .2s ease, color .2s ease;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn--light { color: var(--color-alt); }
.btn--light:hover { background: var(--color-alt); color: var(--color-bg-dark); }
.btn--dark { color: var(--color-heading); }
.btn--dark:hover { background: var(--color-heading); color: var(--color-alt); }

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h);
  background: var(--color-bg-dark);
  color: var(--color-alt);
}
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav__logo img { width: 119px; height: auto; }
.nav__menu { display: flex; gap: 40px; }
.nav__menu a { font-size: var(--fs-small); letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
.nav__menu a:hover { color: var(--color-gold); }
.nav__toggle { display: none; background: none; border: 0; color: inherit; padding: 8px; margin-right: -8px; cursor: pointer; }
.nav__toggle svg { width: 24px; height: 24px; }

@media (max-width: 767px) {
  .nav__logo img { width: 90px; }
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--color-bg-dark);
    padding: 8px var(--gutter) 24px;
    border-top: 1px solid var(--color-line-dark);
    display: none;
  }
  .nav__menu a { padding: 14px 0; border-bottom: 1px solid #2a2a2b; }
  .nav.is-open .nav__menu { display: flex; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 860px;
  display: flex; align-items: flex-end;
  color: var(--color-alt);
  background-color: var(--color-bg-dark);
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(16,16,16,.85) 100%),
    url("../img/hero.webp");
  background-size: cover;
  background-position: center;
  padding: calc(var(--nav-h) + 40px) 0 40px;
}
.hero .container { display: flex; flex-direction: column; gap: 4px; }
.hero__meta { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.hero__kicker { font-size: clamp(18px, 1.95vw, 28px); line-height: 1.4; letter-spacing: 0.02em; text-transform: uppercase; }
.hero__note { max-width: 360px; font-size: var(--fs-small); line-height: 1.5; color: var(--color-alt-text); }
.hero__title {
  font-size: var(--fs-display);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-alt);
}

.hero--legal { min-height: 480px; }
.hero--legal .hero__title { font-size: var(--fs-display-legal); }

@media (max-width: 767px) {
  .hero {
    min-height: 560px; padding-bottom: 32px;
    background-image:
      linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(16,16,16,.85) 100%),
      url("../img/hero-1200.webp");
  }
  .hero .container { gap: 16px; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__kicker { font-size: var(--fs-h6); }
  .hero__title { letter-spacing: -0.01em; }
  .hero--legal { min-height: 300px; }
}

/* --------------------------------------------------------------------------
   Intro (dark band)
   -------------------------------------------------------------------------- */
.intro .container { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--space-huge); }
.intro__content { max-width: 720px; display: flex; flex-direction: column; gap: var(--space-m); order: 2; }
.intro__partners { order: 1; display: flex; flex-direction: column; gap: 20px; }
.badge {
  align-self: flex-start;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 6px 12px;
  font-size: var(--fs-tiny);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.intro__lead { font-weight: 300; font-size: var(--fs-regular); line-height: 1.6; color: var(--color-alt-text); max-width: 540px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.partner-label { font-size: var(--fs-tiny); letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-alt); }
.partner-logos { display: flex; align-items: center; gap: 16px; }
.partner-logos img { width: 90px; }
.partner-logos .times { font-size: var(--fs-h5); color: var(--color-muted); }
.partner-wordmark {
  /* Replace with the SLU Farmers Market logo when supplied */
  font-size: var(--fs-small); letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-alt);
}

@media (max-width: 767px) {
  .intro .container { flex-direction: column; align-items: stretch; gap: var(--space-l); }
  .intro__content { order: 1; }
  .intro__partners { order: 2; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; justify-content: space-between; }
}

/* --------------------------------------------------------------------------
   How to enter
   -------------------------------------------------------------------------- */
.split { display: flex; gap: var(--space-huge); align-items: flex-start; }
.split__intro { flex: 0 0 480px; display: flex; flex-direction: column; gap: var(--space-s); }
.split__main { flex: 1 1 auto; min-width: 0; }

.steps { border-top: 1px solid var(--color-border); }
.step { display: flex; gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--color-border); }
.step__num { flex: 0 0 40px; font-size: var(--fs-h6); line-height: 1.4; color: var(--color-muted); }
.step__body { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.step__body .body-r { color: var(--color-text); }

.social-links { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 8px; }
.social-links .btn { padding: 12px 20px 12px 18px; }
.social-links svg { width: 18px; height: 18px; }

.hashtag {
  align-self: flex-start;
  background: var(--color-heading); color: var(--color-alt);
  padding: 10px 16px; font-size: var(--fs-medium); line-height: 1.5;
  overflow-wrap: anywhere;
}

.disclaimer { padding-top: 24px; }

@media (max-width: 1023px) {
  .split { flex-direction: column; gap: 40px; }
  .split__intro { flex-basis: auto; }
}
@media (max-width: 767px) {
  .step { gap: 12px; padding: 24px 0; }
  .step__num { flex-basis: 28px; }
  .social-links { gap: 8px; }
  .hashtag { padding: 10px 12px; }
}

/* --------------------------------------------------------------------------
   The prize
   -------------------------------------------------------------------------- */
.prize .container { display: flex; flex-direction: column; gap: var(--space-xl); }
.prize__header { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.prize__title { max-width: 560px; display: flex; flex-direction: column; gap: var(--space-s); }
.stats { display: flex; }
.stat { padding: 0 32px; border-left: 1px solid var(--color-border-strong); display: flex; flex-direction: column; gap: 8px; }
.stat:last-child { padding-right: 0; }
.stat__value { font-size: var(--fs-stat); font-weight: 300; line-height: 1; color: var(--color-heading); }
.stat__label { font-size: var(--fs-tiny); letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-muted); }

.items { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 48px; }
.item { border-top: 1px solid var(--color-border-strong); padding: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.item__num { font-size: var(--fs-small); color: var(--color-muted); }
.item__name { font-size: 22px; line-height: 1.3; color: var(--color-heading); }
.item__vendor { font-size: var(--fs-tiny); letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-gold-dark); }

@media (max-width: 1023px) {
  .items { grid-template-columns: repeat(2, 1fr); column-gap: 32px; }
}
@media (max-width: 767px) {
  .prize .container { gap: 40px; }
  .prize__header { flex-direction: column; align-items: stretch; }
  .stat { flex: 1; padding: 0 16px; }
  .stat:first-child { padding-left: 0; border-left: 0; }
  .items { grid-template-columns: 1fr; }
  .item { padding: 16px 0 20px; gap: 6px; }
  .item__name { font-size: var(--fs-large); }
}

/* --------------------------------------------------------------------------
   Winner selection — timeline + schedule
   -------------------------------------------------------------------------- */
.winners .container { display: flex; flex-direction: column; gap: var(--space-xl); }
.winners__title { max-width: 620px; display: flex; flex-direction: column; gap: var(--space-s); }

.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.timeline__step { border-top: 2px solid var(--color-border-strong); padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.timeline__step:first-child { border-top-color: var(--color-gold); }
.timeline__num { font-size: var(--fs-small); color: var(--color-muted); }
.timeline__when { font-size: var(--fs-tiny); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-gold-dark); }

.schedule { background: var(--color-bg-secondary); border: 1px solid var(--color-border-strong); }
.schedule__head { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px 24px 16px; }
.schedule__note { font-size: var(--fs-tiny); color: var(--color-muted); }
.schedule table { width: 100%; border-collapse: collapse; font-size: var(--fs-small); }
.schedule th {
  text-align: left; font-weight: 400; font-size: var(--fs-tiny); letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-gold-dark); background: var(--color-bg-primary); padding: 18px 24px;
}
.schedule td { padding: 18px 24px; border-top: 1px solid var(--color-border); color: var(--color-text); }
.schedule td:first-child { font-weight: 500; color: var(--color-heading); }

@media (max-width: 1023px) {
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline__step { padding: 20px 0; gap: 6px; }
}
@media (max-width: 767px) {
  .winners .container { gap: 40px; }
  .schedule__head { flex-direction: column; align-items: flex-start; gap: 6px; padding: 24px 16px 16px; }
  .schedule thead { display: none; }
  .schedule table, .schedule tbody, .schedule tr, .schedule td { display: block; width: 100%; }
  .schedule tr { padding: 16px; border-top: 1px solid var(--color-border); display: grid; grid-template-columns: 1fr auto; row-gap: 4px; }
  .schedule td { padding: 0; border: 0; font-size: var(--fs-tiny); display: flex; justify-content: space-between; grid-column: 1 / -1; }
  .schedule td::before { content: attr(data-label); color: var(--color-muted); }
  .schedule td:first-child { grid-column: 1; font-size: var(--fs-tiny); letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-gold-dark); align-self: center; }
  .schedule td:first-child::before, .schedule td:nth-child(2)::before { content: none; }
  .schedule td:nth-child(2) { grid-column: 2; grid-row: 1; font-size: var(--fs-regular); color: var(--color-heading); margin-bottom: 6px; }
}

/* --------------------------------------------------------------------------
   Prize pickup
   -------------------------------------------------------------------------- */
.pickup .container { display: flex; align-items: center; gap: var(--space-huge); }
.pickup__content { flex: 1; display: flex; flex-direction: column; gap: var(--space-m); }
.pickup__steps { border-bottom: 1px solid var(--color-border); }
.pickup__step { display: flex; gap: 24px; padding: 20px 0; border-top: 1px solid var(--color-border); }
.pickup__step .num { flex: 0 0 32px; font-size: var(--fs-small); color: var(--color-muted); }
.pickup__step h3 { font-size: var(--fs-regular); font-weight: 500; color: var(--color-heading); margin-bottom: 6px; }
.note {
  background: var(--color-cream); border-left: 2px solid var(--color-gold);
  padding: 20px 24px; font-size: var(--fs-small); line-height: 1.6; color: var(--color-text);
}
.pickup__media { margin: 0; flex: 0 0 600px; height: 640px; position: relative; background: var(--color-bg-primary); }
.pickup__media img { width: 100%; height: 100%; object-fit: cover; }
.pickup__caption {
  position: absolute; left: 24px; bottom: 24px;
  background: var(--color-bg-dark); color: var(--color-alt);
  padding: 8px 14px; font-size: var(--fs-tiny); letter-spacing: 0.06em; text-transform: uppercase;
}

@media (max-width: 1023px) {
  .pickup .container { flex-direction: column; align-items: stretch; gap: 40px; }
  .pickup__media { flex-basis: auto; height: 360px; }
}
@media (max-width: 767px) {
  .pickup__step { gap: 12px; }
  .pickup__step .num { flex-basis: 28px; }
  .pickup__caption { left: 16px; bottom: 16px; }
}

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */
.legal { padding: var(--section-y) 0; background: var(--color-bg-dark); color: var(--color-alt-text); }
.legal__list { max-width: 900px; margin: 0 auto; border-bottom: 1px solid var(--color-line-dark); }
.legal__item { display: flex; gap: 24px; padding: 28px 0; border-top: 1px solid var(--color-line-dark); }
.legal__num { flex: 0 0 32px; font-size: var(--fs-small); color: var(--color-gold); line-height: 1.6; }
.legal__body { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.legal__body h2 { font-size: var(--fs-medium); letter-spacing: 0.02em; text-transform: uppercase; color: var(--color-alt); }
.legal__body p { font-size: var(--fs-small); font-weight: 300; line-height: 1.65; }
.legal__body p + p { margin-top: 12px; }
.legal__body a { color: var(--color-gold); }
.legal__body ol, .legal__body ul { margin: 12px 0 0; padding-left: 20px; font-size: var(--fs-small); font-weight: 300; line-height: 1.65; }
.legal__body ol { list-style: decimal; }
.legal__body ul { list-style: disc; }
.legal__body li + li { margin-top: 4px; }
.legal__body ol + p, .legal__body ul + p { margin-top: 12px; }
/* Placeholder text still to be confirmed — remove once filled */
mark.todo { background: rgba(210,186,146,.18); color: var(--color-gold); padding: 0 2px; }

@media (max-width: 767px) {
  .legal { padding: 48px 0 64px; }
  .legal__item { gap: 12px; padding: 24px 0; }
  .legal__num { flex-basis: 24px; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: #000; color: var(--color-alt); padding: 64px 0 40px; }
.footer .container { display: flex; flex-direction: column; gap: 40px; }
.footer__top { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.footer__logo img { width: 179px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 12px 32px; }
.footer__links a { font-size: var(--fs-small); letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; }
.footer__links a:hover { color: var(--color-gold); }
.footer__bottom { display: flex; justify-content: space-between; gap: 12px 24px; padding-top: 24px; border-top: 1px solid var(--color-line-dark); font-size: var(--fs-tiny); color: var(--color-alt-text); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.footer__legal a { text-underline-offset: 3px; }

@media (max-width: 767px) {
  .footer { padding-top: 48px; }
  .footer .container { gap: 32px; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__logo img { width: 108px; }
  .footer__links { gap: 12px 20px; }
  .footer__bottom { flex-direction: column; }
  .footer__legal { gap: 8px 16px; }
}


/* --------------------------------------------------------------------------
   Market Haul update (Sep 25) — compact hero, entry values, vendors
   -------------------------------------------------------------------------- */
.hero--compact { min-height: 640px; }

.entry-values { display: flex; gap: 12px; margin-top: 8px; }
.entry-value {
  flex: 1; display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border: 1px solid var(--color-border-strong); background: var(--color-bg-secondary);
}
.entry-value__num { font-size: var(--fs-stat); font-weight: 300; line-height: 1; color: var(--color-heading); }
.entry-value__label { font-size: var(--fs-tiny); letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-muted); line-height: 1.4; }
.entry-value--feature { border-color: var(--color-gold); background: var(--color-cream); }
.entry-value--feature .entry-value__num { color: var(--color-gold-dark); }

.prize__title .body-r { color: var(--color-text); }
.vendors { border-top: 1px solid var(--color-border-strong); padding-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.vendors__label { font-size: var(--fs-tiny); letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-gold-dark); }
.vendors__list { display: flex; flex-wrap: wrap; gap: 12px 40px; }
.vendors__list li { font-size: var(--fs-h5); line-height: 1.3; color: var(--color-heading); }
.vendors__note { font-size: var(--fs-small); color: var(--color-text); }

.timeline--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1023px) {
  .timeline--4 { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .hero--compact { min-height: 440px; }
  .entry-value { padding: 14px 16px; gap: 10px; }
  .vendors { padding-top: 24px; gap: 16px; }
  .vendors__list { flex-direction: column; gap: 8px; }
}


/* Figma alignment (Sep 25): intro content left / partners right, icon-only social buttons on mobile */
.intro__content { order: 1; }
.intro__partners { order: 2; align-items: flex-end; text-align: right; }
@media (max-width: 767px) {
  .intro__partners { align-items: flex-start; text-align: left; }
  .social-links .btn { padding: 12px 20px; }
  .social-links .social-label { display: none; }
}

/* Badge as plain text label (matches Figma — no border box) */
.badge { border: 0; padding: 0; }

/* Hero height follows the 1440×860 hero image on desktop */
@media (min-width: 768px) { .hero--compact { min-height: calc(100vw * 860 / 1440); } }
/* Start the hero below the fixed nav so the whole image (incl. the Seattle House label) is visible */
.hero--compact { margin-top: var(--nav-h); padding-top: 40px; }

/* Tablet: stack intro (content, then partners) so nothing overflows */
@media (max-width: 1023px) {
  .intro .container { flex-direction: column; align-items: stretch; gap: var(--space-l); }
  .intro__partners { align-items: flex-start; text-align: left; }
}


/* --------------------------------------------------------------------------
   Type hierarchy (Sep 25) — one size per role, mapped to Figma Typography vars
   Display ........ hero title (fluid, 150 → 40)
   H3 ............. intro headline            40 / 32
   H4 ............. section titles            32 / 24
   Section sub .... text under section titles 16 (Text/Regular)
   H6 ............. item titles               20 / 18
   Item body ...... step / timeline copy      14 (Text/Small)
   Numbers ........ stats & entry values      48 / 36 (Heading 2)
   Labels ......... eyebrows, stat labels     12 (Text/Tiny)
   -------------------------------------------------------------------------- */
.section-sub { font-size: var(--fs-regular); font-weight: 400; line-height: 1.6; color: var(--color-text); }
.section--dark .section-sub { color: var(--color-alt-text); }
.intro__lead { font-weight: 400; }
.prize__title .section-sub { color: var(--color-text); }
.step__body .body-s { color: var(--color-text); }
.vendors__note { font-size: var(--fs-small); }

/* Two hashtags + schedule footnote (Sep 25 copy) */
.hashtags { display: flex; flex-wrap: wrap; gap: 8px; }
.schedule__foot { padding: 16px 24px; font-size: var(--fs-tiny); color: var(--color-muted); border-top: 1px solid var(--color-border); }
@media (max-width: 767px) { .schedule__foot { padding: 14px 16px; } }

/* ── Update 2026-09-25: "Up to" as a small line above the prize value ── */
.stats { display: grid; grid-auto-flow: column; grid-auto-columns: max-content; grid-template-rows: auto auto auto; justify-content: start; }
.stat { display: grid; grid-row: span 3; grid-template-rows: subgrid; row-gap: 0; }
.stat__prefix { align-self: end; margin-bottom: 4px; font-size: var(--fs-regular); line-height: 1.4; color: var(--color-heading); }
.stat__label { margin-top: 8px; }
@media (max-width: 767px) {
  .stats { grid-auto-columns: 1fr; }
  .stat__prefix { font-size: var(--fs-small); }
}

/* ── Update 2026-09-25: vendor names as 4 equal boxes ── */
.vendors__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.vendors__list li.vendor {
  display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
  min-height: 140px; padding: 20px 24px;
  border: 1px solid var(--color-border-strong); background: var(--color-cream);
}
.vendor__num { font-size: var(--fs-tiny); letter-spacing: 0.08em; color: var(--color-gold-dark); line-height: 1.4; }
.vendor__name { font-size: var(--fs-h5); line-height: 1.3; color: var(--color-heading); }
@media (max-width: 1023px) {
  .vendors__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .vendors__list { flex-direction: initial; gap: 8px; }
  .vendors__list li.vendor { min-height: 104px; padding: 14px 16px; gap: 20px; }
  .vendor__name { font-size: var(--fs-medium); }
}
/* vendor boxes without index numbers */
.vendors__list li.vendor { min-height: 0; justify-content: center; padding: 28px 24px; }
@media (max-width: 767px) { .vendors__list li.vendor { min-height: 0; padding: 18px 16px; } }
/* vendor names: smaller, all caps */
.vendor__name { font-size: var(--fs-regular); letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.4; }
.vendors__list li.vendor { padding: 22px 24px; }
@media (max-width: 767px) {
  .vendor__name { font-size: var(--fs-small); letter-spacing: 0.03em; }
  .vendors__list li.vendor { padding: 16px 12px; }
}

/* ── Update 2026-09-25: transparent nav over the hero + shorter hero ── */
.nav { background: transparent; transition: background-color .25s ease; }
.nav.is-scrolled, .nav.is-open { background: var(--color-bg-dark); }
/* soft scrim behind the nav so the menu stays legible on the photo */
.hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 180px;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
/* hero now starts at the top of the page (behind the nav); anchor the photo to the top
   so the Seattle House label stays clear of the nav — any cropping happens at the bottom */
.hero--compact { margin-top: 0; padding-top: calc(var(--nav-h) + 40px); background-position: center top; }
@media (min-width: 768px) {
  .hero--compact { min-height: clamp(520px, calc(100vw * 640 / 1440), 85svh); }
}
@media (max-width: 767px) {
  .hero--compact { min-height: 420px; }
}
