/* thinkshop
   Vignelli rationalism. Fellini cinema.
   1930s Florence through stained glass.

   Layer stack:
   1. Video — looping film, very low opacity
   2. Gradient panels — drift slowly, create glass opacity
   3. Canon SVG — the lead came between panels
   4. Content — scrolls over everything

   Typography: Helvetica Neue. One family.
   Drama through scale and weight, not decoration.
   Vignelli's actual typeface. Not our fantasy of it. */

:root {
  /* Aliases from token system — see tokens.css for full palette */
  --black: var(--color-ground-ink);
  --white: var(--color-ground-paper);
  --dim: color-mix(in oklch, var(--color-ground-paper) 30%, transparent);
  --ghost: color-mix(in oklch, var(--color-ground-paper) 6%, transparent);
  --yellow: var(--color-yellow-brand);
  --type: var(--type-font-family-heading), var(--type-font-family-body), 'Inter', Arial, sans-serif;

  /* Villard 9th-division margins */
  --margin-left: var(--space-layout-margin-left);
  --margin-right: var(--space-layout-margin-right);

  /* Glass panel base — oklch black with alpha.
     Intentional override: alpha-blended oklch, no token equivalent.
     Increased transparency so Florence shows through
     without needing max screen brightness. */
  --glass-dark: oklch(0.05 0 0 / 0.35);
  --glass-clear: oklch(0.05 0 0 / 0);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--color-background-primary);
  color: var(--color-text-normal);
  font-family: var(--type);
  font-weight: 300;
  line-height: var(--type-line-height-normal);
  min-height: 100vh;
  overflow-x: hidden;
}

/* =============================================
   LAYER 1: FLORENCE HOME MOVIES
   Fixed behind everything. Low opacity.
   The light coming through the glass.
   ============================================= */

/* The iframe/video must ALWAYS fill the viewport on both axes.
   On desktop (landscape): width-constrained, height overflows → crop top/bottom.
   On mobile (portrait): height-constrained, width overflows → crop left/right.
   translate(-43%, -30%) crops out KINO watermark (upper-right) and shows left-center content. */

.film {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  /* Always larger than viewport on BOTH axes */
  width: max(160vw, 284vh) !important;   /* 284vh = 160 × 16/9 */
  height: max(90vw, 160vh) !important;   /* 90vw = 160 × 9/16 */
  transform: translate(-43%, -30%);
  border: none !important;
  opacity: 0.35;
  filter: grayscale(1) contrast(1.1);
  z-index: 1;
  pointer-events: none !important;
}

.film iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  pointer-events: none !important;
}

/* =============================================
   LAYER 2: STAINED GLASS PANELS
   Gradient patches that drift slowly over the
   video. Dark areas obscure; lighter areas
   let Florence show through. The canon lines
   sit between these like lead came.
   ============================================= */

/* Single composite panel with oklch + alpha.
   "Windows" are nearly transparent; edges are
   semi-dark. The video bleeds through everywhere
   at different intensities. */

.glass-panel {
  position: fixed;
  top: -10vh;
  left: -10vw;
  width: 120vw;
  height: 120vh;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 40% 35% at 22% 30%,
      var(--glass-clear) 0%,
      var(--glass-dark) 100%
    ),
    radial-gradient(
      ellipse 35% 40% at 68% 55%,
      var(--glass-clear) 0%,
      var(--glass-dark) 100%
    ),
    radial-gradient(
      ellipse 32% 28% at 45% 80%,
      var(--glass-clear) 0%,
      var(--glass-dark) 100%
    );
  animation: drift-panel 50s ease-in-out infinite alternate;
}

/* Panels b and c are hidden — single element handles all windows */
.glass-panel--b,
.glass-panel--c {
  display: none;
}

@keyframes drift-panel {
  0%   { transform: translate(0, 0); }
  33%  { transform: translate(5vw, 3vh); }
  66%  { transform: translate(-3vw, -4vh); }
  100% { transform: translate(2vw, 5vh); }
}

/* =============================================
   LAYER 3: HYBRID CANON
   Lines stretch with viewport (SVG preserveAspectRatio="none").
   Circle is a separate element — perfect circle based on
   minority axis, positioned at top-center.
   ============================================= */

.canon-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  pointer-events: none;
}

.canon-lines line {
  fill: none;
  stroke: var(--white);
  stroke-width: 0.5;
  opacity: 0.08;
}

/* Perfect circle: diameter = min(100vw, 100vh)
   Centered horizontally, touching the top of the viewport.
   Desktop (landscape): diameter = viewport height
   Mobile (portrait): diameter = viewport width
   Verified viewports: 1920×1080, 1440×900, 390×844, 768×1024 */
.canon-circle {
  position: fixed;
  /* Size = minority axis — landscape uses vh, portrait uses vw */
  width: min(100vw, 100vh);
  height: min(100vw, 100vh);
  /* Center horizontally, top edge at viewport top */
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  /* Border: text-normal at 5% opacity — matches canon line weight and aesthetic */
  border: 0.5px solid color-mix(in oklch, var(--color-text-normal) 5%, transparent);
  z-index: 3;
  pointer-events: none;
}

/* =============================================
   LAYER 4: CONTENT
   Scrolls over everything.
   Helvetica Neue. Thin headlines, massive scale.
   One typeface. Vignelli discipline.
   ============================================= */

.content {
  position: relative;
  z-index: 4;
}

header {
  padding: var(--space-space-12) var(--margin-right) 0 var(--margin-left);
}

/* The mark — yellow artwork on transparent background, the printer's-device
   crest + wordmark in a single horizontal lockup. SVG variant is
   thinkshop_alt_dark_horz.svg (the alt-logo dark-bg variant from the brand
   pack), with the viewBox trimmed to fit the artwork — no internal negative
   space so the lockup aligns cleanly with adjacent nav items.

   Source viewBox: 0 0 545.22 256 (with ~8% internal padding on each side)
   Trimmed viewBox: 41.70 42.20 462.07 169.38 → aspect 2.728:1

   Sizing: explicit height + auto width preserves aspect and forces a
   predictable visual footprint in the header flex container.

   Hover behaviour: gentle lift + yellow glow + a quiet rotation of the
   whole lockup, like the mark is being picked up off the page. Restrained,
   not punchy. The brand is meant to be slightly dangerous, not cheerful. */

.mark-link {
  display: inline-flex;
  align-items: center;
  /* line-height: 0 collapses any stray inline-box gap below the <img> */
  line-height: 0;
  text-decoration: none;
  outline: none;
  transition: filter 480ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: filter;
}

.mark {
  display: block;
  /* Explicit height — aspect ratio (2.728:1) preserved via width:auto.
     56px is comfortable header presence; matches the nav item line-height. */
  height: 56px;
  width: auto;
  /* transform-origin centered now that the viewBox is trimmed (no offset
     compensation needed; the artwork fills the SVG box). */
  transform-origin: 50% 50%;
  transition:
    transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 480ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, filter;
  /* a faint ambient glow at rest — the mark already feels alive */
  filter: drop-shadow(0 0 0 transparent);
}

.mark-link:hover .mark,
.mark-link:focus-visible .mark {
  transform: translateY(-3px) rotate(-0.6deg) scale(1.035);
  /* layered drop-shadows — first a subtle inky depth, second the yellow
     bloom — together: pick-up-off-desk + the mark notices you */
  filter:
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 18px color-mix(in oklch, var(--yellow) 55%, transparent));
}

.mark-link:focus-visible {
  /* keyboard focus reuses the same hover treatment — no separate outline */
  outline: none;
}

/* Reduced motion: respect the user's preference — no transform, no glow.
   The mark stays still; only a faint brightness shift on hover so there's
   still feedback. */
@media (prefers-reduced-motion: reduce) {
  .mark,
  .mark-link {
    transition: none;
  }
  .mark-link:hover .mark,
  .mark-link:focus-visible .mark {
    transform: none;
    filter: drop-shadow(0 0 12px color-mix(in oklch, var(--yellow) 40%, transparent));
  }
}

/* --- Hero --- */

.hero {
  padding: var(--space-pad-vh-5) var(--margin-right) var(--space-pad-vh-4) var(--margin-left);
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
}

.hero h1 {
  font-weight: 200;
  font-size: var(--type-font-size-3xl);
  line-height: 1.12; /* intentional: between tight (1.08) and snug (1.15) — hero rhythm */
  letter-spacing: var(--type-letter-spacing-tight);
  max-width: var(--type-measure-display);
}

/* --- Premise --- */

.premise {
  padding: var(--space-pad-vh-3) var(--margin-right) var(--space-pad-vh-5) var(--margin-left);
  margin-left: var(--margin-left);
}

.premise p {
  font-weight: 300;
  font-size: var(--type-font-size-md);
  line-height: var(--type-line-height-relaxed);
  color: var(--dim);
  max-width: var(--type-measure-prose-narrow);
}

/* --- Offerings --- */

.offerings {
  padding: 0 var(--margin-right) var(--space-pad-vh-4) var(--margin-left);
}

.offering {
  padding: var(--space-pad-vh-2) 0;
}

.offering + .offering {
  border-top: 0.5px solid var(--ghost);
}

.offering-number {
  font-weight: 200;
  font-size: var(--type-font-size-sm);
  color: var(--dim);
  letter-spacing: var(--type-letter-spacing-wide);
  display: block;
  margin-bottom: var(--space-space-6);
}

.offering h2 {
  font-weight: 200;
  font-size: var(--type-font-size-2xl);
  line-height: var(--type-line-height-snug);
  margin-bottom: var(--space-space-4);
  letter-spacing: var(--type-letter-spacing-snug);
}

.offering p {
  font-weight: 300;
  font-size: var(--type-font-size-base);
  line-height: 1.8; /* intentional: tighter than relaxed (1.85) for offering density */
  color: var(--dim);
  max-width: var(--type-measure-prose-narrow);
}

/* --- CTA --- */

.cta {
  padding: var(--space-pad-vh-5) var(--margin-right) var(--space-pad-vh-5) var(--margin-left);
}

.cta a {
  font-weight: 200;
  font-size: var(--type-font-size-xl);
  color: var(--white);
  text-decoration: none;
  border-bottom: 0.5px solid var(--dim);
  padding-bottom: var(--space-space-1);
  transition: border-color 0.4s ease;
  letter-spacing: var(--type-letter-spacing-tight-soft);
}

.cta a:hover {
  border-color: var(--white);
}

/* --- Footer --- */

footer {
  padding: var(--space-space-8) var(--margin-right) var(--space-space-8) var(--margin-left);
}

.footer-mark {
  font-weight: 300;
  font-size: var(--type-font-size-2xs);
  letter-spacing: var(--type-letter-spacing-wide);
  text-transform: lowercase;
  color: var(--yellow);
  opacity: 0.7;
}

/* =============================================
   FILM GRAIN
   ============================================= */

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  z-index: 10000;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
  :root {
    --margin-left: 7%;
    --margin-right: 7%;
  }

  .hero {
    min-height: 70vh;
    padding-top: var(--space-pad-vh-4);
    padding-bottom: var(--space-pad-vh-3);
  }

  .premise {
    margin-left: 0;
    padding-top: var(--space-pad-vh-1);
    padding-bottom: 10vh;
  }

  .premise p br,
  .offering p br { display: none; }
}

/* =============================================
   MULTI-PAGE — NAV (added with v2 site)
   The home page had mark only. About + events + per-event pages
   need top + footer nav. Restrained — no card-grid feel; the brand
   voice is "cocktails, not catered lunch".

   Typographic alignment with the printer's-device wordmark
   (thinkshop_alt_dark_horz.svg, 56px tall):
     - Wordmark visible baseline sits ~39px below the SVG top
     - IMG element's CSS-baseline is at the SVG bottom (56px)
     - Therefore: align-items: baseline aligns nav text 17px BELOW the
       visible wordmark baseline by default
     - We compensate via translateY(-17px) on the nav, lifting its baseline
       to match the wordmark's visual baseline
   Font size bumped from --type-font-size-xs (0.7rem) to --type-font-size-md (1.05rem)
   to match the wordmark's x-height. The wordmark x-height is ~13-14px;
   --type-font-size-md in Inter gives ~9.5px x-height — visually close, deliberately
   slightly smaller so the wordmark stays primary.
   ============================================= */

header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-space-6);
}

.primary-nav {
  display: flex;
  gap: var(--space-space-8);
  align-items: baseline;
  /* Push the nav up so its text baseline aligns with the wordmark baseline
     inside the SVG (which is 17px above the SVG's bottom edge). */
  transform: translateY(-17px);
}

.primary-nav a {
  font-weight: 300;
  font-size: var(--type-font-size-md);
  letter-spacing: var(--type-letter-spacing-wider);
  text-transform: lowercase;
  color: color-mix(in oklch, var(--white) 65%, transparent);
  text-decoration: none;
  padding-bottom: var(--space-space-1);
  border-bottom: 0.5px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
  border-bottom-color: color-mix(in oklch, var(--yellow) 60%, transparent);
  outline: none;
}

.primary-nav a[aria-current="page"] {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.footer-nav {
  display: flex;
  gap: var(--space-space-8);
  margin-bottom: var(--space-space-6);
}

.footer-nav a {
  font-weight: 300;
  font-size: var(--type-font-size-2xs);
  letter-spacing: var(--type-letter-spacing-wide);
  text-transform: lowercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--yellow);
  outline: none;
}

/* =============================================
   MULTI-PAGE — GENERIC PAGE LAYOUT
   Shared by /about/, /events/, /events/<slug>/.
   Quieter hero than the home page; longer-form copy with
   the existing Vignelli rhythm.
   ============================================= */

.page-hero {
  padding: var(--space-pad-vh-5) var(--margin-right) var(--space-pad-vh-2) var(--margin-left);
}

.page-hero h1 {
  font-weight: 200;
  font-size: var(--type-font-size-2xl);
  line-height: 1.12;
  letter-spacing: var(--type-letter-spacing-tight);
  max-width: var(--type-measure-heading);
  margin-bottom: var(--space-space-6);
}

.lede {
  font-weight: 300;
  font-size: var(--type-font-size-md);
  line-height: 1.6;
  color: color-mix(in oklch, var(--white) 80%, transparent);
  max-width: var(--type-measure-prose-comfortable);
}

.copy {
  padding: var(--space-pad-vh-1) var(--margin-right) var(--space-pad-vh-1) var(--margin-left);
}

.copy h2 {
  font-weight: 200;
  font-size: var(--type-font-size-xl);
  letter-spacing: var(--type-letter-spacing-snug);
  margin-bottom: var(--space-space-6);
  max-width: var(--type-measure-heading-wide);
}

.copy h3 {
  font-weight: 300;
  font-size: var(--type-font-size-md);
  margin: var(--space-space-6) 0 var(--space-space-3) 0;
  letter-spacing: var(--type-letter-spacing-tight-soft);
}

.copy p {
  font-weight: 300;
  font-size: var(--type-font-size-base);
  line-height: 1.85;
  color: var(--dim);
  max-width: var(--type-measure-prose);
  margin-bottom: var(--space-space-4);
}

.copy p em {
  color: var(--white);
  font-style: italic;
  font-weight: 300;
}

.copy a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 0.5px solid color-mix(in oklch, var(--yellow) 55%, transparent);
  transition: border-color 0.3s ease;
}

.copy a:hover { border-bottom-color: var(--yellow); }

/* --- Card grids (used on about + per-event) --- */

.grid-2,
.grid-3 {
  display: grid;
  gap: var(--space-space-6);
  margin: var(--space-space-8) 0;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card,
.bio,
.persona-card,
.output-card {
  padding: var(--space-space-8);
  background: color-mix(in oklch, var(--black) 70%, transparent);
  border: 0.5px solid var(--ghost);
}

.card-number {
  display: block;
  font-weight: 200;
  font-size: var(--type-font-size-md);
  color: var(--yellow);
  letter-spacing: var(--type-letter-spacing-wide);
  margin-bottom: var(--space-space-4);
}

.card h3,
.bio h3,
.persona-card h3,
.output-card h3 {
  font-weight: 300;
  font-size: var(--type-font-size-md);
  margin-bottom: var(--space-space-3);
  letter-spacing: var(--type-letter-spacing-tight-soft);
}

.card p,
.bio p,
.persona-card p,
.output-card p {
  font-weight: 300;
  font-size: var(--type-font-size-sm);
  line-height: 1.7;
  color: var(--dim);
}

.bio-role,
.persona-stake {
  font-weight: 300;
  font-size: var(--type-font-size-xs);
  color: var(--yellow);
  letter-spacing: var(--type-letter-spacing-medium);
  text-transform: uppercase;
  margin-bottom: var(--space-space-3) !important;
}

/* --- Ordered method (5-step list — about page) --- */

.ordered-method {
  list-style: none;
  counter-reset: method;
  padding-left: 0;
  margin: var(--space-space-8) 0;
  max-width: var(--type-measure-prose-wide);
}

.ordered-method li {
  counter-increment: method;
  padding: var(--space-space-6) 0 var(--space-space-6) var(--space-space-16);
  position: relative;
  border-top: 0.5px solid var(--ghost);
}

.ordered-method li:first-child {
  border-top: 0;
  padding-top: 0;
}

.ordered-method li::before {
  content: counter(method, upper-roman);
  position: absolute;
  left: 0;
  top: var(--space-space-6);
  font-weight: 200;
  font-size: var(--type-font-size-md);
  color: var(--yellow);
  letter-spacing: var(--type-letter-spacing-wide);
}

.ordered-method li:first-child::before {
  top: 0;
}

.ordered-method h3 {
  font-weight: 300;
  font-size: var(--type-font-size-md);
  margin-bottom: var(--space-space-2);
  letter-spacing: var(--type-letter-spacing-tight-soft);
}

.ordered-method p {
  font-weight: 300;
  font-size: var(--type-font-size-sm);
  color: var(--dim);
  line-height: 1.7;
  margin: 0;
  max-width: var(--type-measure-prose);
}

/* --- Team section (about page) --- */

.team {
  padding: var(--space-pad-vh-1) var(--margin-right) var(--space-pad-vh-1) var(--margin-left);
}

.team h2 {
  font-weight: 200;
  font-size: var(--type-font-size-xl);
  letter-spacing: var(--type-letter-spacing-snug);
  margin-bottom: var(--space-space-6);
}

/* --- CTA section (about) --- */

.cta-tagline {
  font-weight: 200;
  font-size: var(--type-font-size-lg);
  letter-spacing: var(--type-letter-spacing-tight);
  margin-bottom: var(--space-space-6);
  color: var(--white);
}

.cta-link {
  font-weight: 200;
  font-size: var(--type-font-size-xl);
  color: var(--white);
  text-decoration: none;
  border-bottom: 0.5px solid var(--dim);
  padding-bottom: var(--space-space-1);
  transition: border-color 0.4s ease;
  letter-spacing: var(--type-letter-spacing-tight-soft);
}

.cta-link:hover { border-color: var(--white); }

/* --- CTA buttons (used on event pages) --- */

.cta-button {
  display: inline-block;
  font-weight: 400;
  font-size: var(--type-font-size-sm);
  letter-spacing: var(--type-letter-spacing-medium);
  text-transform: lowercase;
  text-decoration: none;
  padding: var(--space-space-4) var(--space-space-8);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 0.5px solid transparent;
}

.cta-button--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.cta-button--primary:hover {
  background: color-mix(in oklch, var(--yellow) 78%, white);
  border-color: color-mix(in oklch, var(--yellow) 78%, white);
}

.cta-button--ghost {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}

.cta-button--ghost:hover {
  background: color-mix(in oklch, var(--yellow) 18%, transparent);
}

.cta-button--lg {
  padding: var(--space-space-6) var(--space-space-12);
  font-size: var(--type-font-size-md);
  letter-spacing: var(--type-letter-spacing-normal);
  text-transform: none;
  font-weight: 300;
}

/* =============================================
   EVENT LIST (events index)
   ============================================= */

.event-list {
  padding: var(--space-pad-vh-1) var(--margin-right) var(--space-pad-vh-1) var(--margin-left);
}

.event-card {
  padding: var(--space-space-8) 0;
  border-top: 0.5px solid var(--ghost);
}

.event-card:last-child { border-bottom: 0.5px solid var(--ghost); }

.event-card-head {
  display: flex;
  gap: var(--space-space-6);
  font-weight: 300;
  font-size: var(--type-font-size-xs);
  letter-spacing: var(--type-letter-spacing-wider);
  text-transform: lowercase;
  color: var(--yellow);
  margin-bottom: var(--space-space-4);
}

.event-location { color: color-mix(in oklch, var(--yellow) 70%, var(--dim)); }

.event-title {
  font-weight: 200;
  font-size: var(--type-font-size-xl);
  letter-spacing: var(--type-letter-spacing-snug);
  margin-bottom: var(--space-space-4);
  max-width: var(--type-measure-heading-wide);
}

.event-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.event-title a:hover { color: var(--yellow); }

.event-blurb {
  font-weight: 300;
  font-size: var(--type-font-size-base);
  color: var(--dim);
  line-height: 1.7;
  max-width: var(--type-measure-prose);
  margin-bottom: var(--space-space-6);
}

.event-card-link {
  font-weight: 300;
  font-size: var(--type-font-size-sm);
  color: var(--yellow);
  text-decoration: none;
  letter-spacing: var(--type-letter-spacing-medium);
  border-bottom: 0.5px solid color-mix(in oklch, var(--yellow) 40%, transparent);
  padding-bottom: var(--space-space-1);
  transition: border-color 0.3s ease;
}

.event-card-link:hover { border-bottom-color: var(--yellow); }

.event-faq { padding-top: var(--space-pad-vh-3); }

/* =============================================
   EVENT PAGE (per-event microsite)
   ============================================= */

.event-page section {
  padding: var(--space-pad-vh-2) var(--margin-right) var(--space-pad-vh-1) var(--margin-left);
}

.event-hero {
  padding-top: var(--space-pad-vh-4) !important;
  padding-bottom: var(--space-pad-vh-2) !important;
}

.event-eyebrow {
  font-weight: 300;
  font-size: var(--type-font-size-xs);
  letter-spacing: var(--type-letter-spacing-wider);
  text-transform: lowercase;
  color: var(--yellow);
  margin-bottom: var(--space-space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-space-3);
  align-items: center;
}

.event-eyebrow-sep { color: var(--dim); }
.event-eyebrow-partner { color: var(--yellow); }

.event-hero h1 {
  font-weight: 200;
  font-size: var(--type-font-size-2xl);
  line-height: 1.1;
  letter-spacing: var(--type-letter-spacing-tight);
  max-width: var(--type-measure-heading);
  margin-bottom: var(--space-space-6);
}

.event-cta-row {
  display: flex;
  gap: var(--space-space-4);
  margin-top: var(--space-space-8);
  flex-wrap: wrap;
}

/* --- Co-facilitator attribution (event hero) --- */

.event-cofacilitator {
  font-weight: 300;
  font-size: var(--type-font-size-sm);
  color: var(--dim);
  letter-spacing: var(--type-letter-spacing-medium);
  margin-top: var(--space-space-4);
  margin-bottom: var(--space-space-8);
  max-width: var(--type-measure-prose);
}

.event-cofacilitator strong {
  color: var(--yellow);
  font-weight: 300;
}

/* --- Persona seniority disclosure ("Who is in the room") --- */

.persona-seniority {
  font-weight: 300;
  font-size: var(--type-font-size-sm);
  color: var(--dim);
  letter-spacing: var(--type-letter-spacing-medium);
  margin-bottom: var(--space-space-8);
  max-width: var(--type-measure-prose-narrow);
}

/* --- Tension section --- */

.event-tension-headline {
  font-weight: 200;
  font-size: var(--type-font-size-lg);
  color: var(--white);
  line-height: 1.3;
  margin-bottom: var(--space-space-8);
  max-width: var(--type-measure-prose);
  letter-spacing: var(--type-letter-spacing-snug);
}

.tension-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-space-6);
  margin: var(--space-space-8) 0;
}

.tension-ready,
.tension-not-ready {
  padding: var(--space-space-8);
  border: 0.5px solid var(--ghost);
  background: color-mix(in oklch, var(--black) 60%, transparent);
}

.tension-ready { border-color: color-mix(in oklch, var(--yellow) 35%, var(--ghost)); }

.tension-ready h3,
.tension-not-ready h3 {
  font-weight: 300;
  font-size: var(--type-font-size-sm);
  letter-spacing: var(--type-letter-spacing-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-space-6);
}

.tension-ready h3 { color: var(--yellow); }
.tension-not-ready h3 { color: var(--dim); }

.tension-ready ul,
.tension-not-ready ul {
  list-style: none;
  padding: 0;
}

.tension-ready li,
.tension-not-ready li {
  font-weight: 300;
  font-size: var(--type-font-size-sm);
  color: var(--dim);
  line-height: 1.7;
  padding: var(--space-space-2) 0;
  border-top: 0.5px solid var(--ghost);
}

.tension-ready li:first-child,
.tension-not-ready li:first-child { border-top: 0; }

.tension-named {
  font-weight: 200;
  font-size: var(--type-font-size-md);
  color: var(--white);
  font-style: italic;
  margin-top: var(--space-space-8);
  max-width: var(--type-measure-prose);
  letter-spacing: var(--type-letter-spacing-tight-soft);
}

/* --- Day agenda --- */

.event-day-intro {
  font-weight: 300;
  font-size: var(--type-font-size-base);
  color: var(--dim);
  line-height: 1.7;
  max-width: var(--type-measure-prose);
  margin-bottom: var(--space-space-8);
}

.event-agenda {
  list-style: none;
  padding: 0;
  margin: var(--space-space-8) 0;
  max-width: var(--type-measure-prose-wide);
}

.event-agenda li {
  display: grid;
  grid-template-columns: var(--space-space-24) 1fr;
  gap: var(--space-space-8);
  padding: var(--space-space-4) 0;
  border-top: 0.5px solid var(--ghost);
}

.event-agenda li:first-child { border-top: 0; }

.agenda-time {
  font-weight: 300;
  font-size: var(--type-font-size-sm);
  color: var(--yellow);
  letter-spacing: var(--type-letter-spacing-medium);
}

.agenda-title {
  font-weight: 300;
  font-size: var(--type-font-size-sm);
  color: var(--white);
  line-height: 1.6;
}

.event-day-note {
  font-weight: 300;
  font-size: var(--type-font-size-xs);
  color: var(--dim);
  margin-top: var(--space-space-6);
}

/* --- Sponsor tiers --- */

.sponsor-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-space-6);
  margin: var(--space-space-12) 0;
}

.sponsor-tier {
  padding: var(--space-space-8);
  background: color-mix(in oklch, var(--black) 70%, transparent);
  border: 0.5px solid var(--ghost);
  display: flex;
  flex-direction: column;
}

.sponsor-tier--founding {
  border-color: var(--yellow);
  border-width: 1px;
}

.sponsor-tier h3 {
  font-weight: 200;
  font-size: var(--type-font-size-lg);
  letter-spacing: var(--type-letter-spacing-snug);
  margin-bottom: var(--space-space-2);
}

.sponsor-tier--founding h3 { color: var(--yellow); }

.sponsor-tier-byline {
  font-weight: 300;
  font-size: var(--type-font-size-xs);
  color: var(--dim);
  letter-spacing: var(--type-letter-spacing-medium);
  text-transform: lowercase;
  margin-bottom: var(--space-space-6);
}

.sponsor-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-space-8);
  flex: 1;
}

.sponsor-benefits li {
  font-weight: 300;
  font-size: var(--type-font-size-sm);
  color: var(--dim);
  line-height: 1.7;
  padding: var(--space-space-2) 0 var(--space-space-2) var(--space-space-6);
  position: relative;
  border-top: 0.5px solid var(--ghost);
}

.sponsor-benefits li:first-child { border-top: 0; }

.sponsor-benefits li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 600;
}

.sponsor-tier .cta-button {
  align-self: flex-start;
}

.sponsor-note {
  font-weight: 300;
  font-size: var(--type-font-size-sm);
  color: var(--dim);
  font-style: italic;
  max-width: var(--type-measure-prose-wide);
}

/* --- RSVP --- */

.event-rsvp .cta-button {
  margin-top: var(--space-space-8);
}

/* --- Fine print --- */

.fine-print {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: var(--space-space-3) var(--space-space-8);
  font-weight: 300;
  font-size: var(--type-font-size-sm);
  max-width: var(--type-measure-prose-wide);
  margin-top: var(--space-space-6);
}

.fine-print dt {
  color: var(--yellow);
  letter-spacing: var(--type-letter-spacing-medium);
  text-transform: lowercase;
}

.fine-print dd {
  color: var(--white);
  margin: 0;
}

.fine-print a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 0.5px solid color-mix(in oklch, var(--yellow) 40%, transparent);
}

.fine-print a:hover { border-bottom-color: var(--yellow); }

/* =============================================
   RESPONSIVE additions for multi-page surfaces
   ============================================= */

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-space-6);
  }

  .primary-nav { gap: var(--space-space-6); }

  .grid-2,
  .grid-3,
  .tension-grid,
  .sponsor-tiers {
    grid-template-columns: 1fr;
  }

  .event-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button { text-align: center; }

  .fine-print {
    grid-template-columns: 1fr;
    gap: var(--space-space-1) 0;
  }

  .fine-print dd { margin-bottom: var(--space-space-4); }

  .event-agenda li {
    grid-template-columns: var(--space-space-16) 1fr;
    gap: var(--space-space-4);
  }

  .ordered-method li {
    padding-left: var(--space-space-16);
  }
}
