/* ============================================================
   MIT Endicott House — design system v2
   Badrutt's Palace structural language × Endicott House brand
   - one serif voice (Abhaya Libre), Outfit for labels/UI only
   - cream ground, navy ink, slate structure, gold hairlines
   - universal 450ms timing · giant panel titles · hairline grid
   ============================================================ */

:root {
  --cream: #F5F2ED;
  --parchment: #EFEAE1;
  --paper: #FBF9F5;
  --ink: #1A2D4C;
  --ink-soft: #44536A;
  --muted: #79828F;
  --slate: #304757;
  --slate-deep: #24343F;
  --gold: #CDB96B;
  --gold-deep: #A08B3B;
  --gold-bright: #EDB059;
  --hairline: #DDD3BC;
  --hairline-dark: rgba(205, 185, 107, .38);
  --scrim: rgba(18, 28, 40, .0);
  --serif: 'Abhaya Libre', Georgia, 'Times New Roman', serif;
  --sans: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --dur: 450ms;
  --header-h: 74px;
  --gutter: 4.1666vw;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--ink); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; margin: 0; text-wrap: balance; }
p { margin: 0 0 1em; }

/* ---------- labels & buttons ---------- */
.lbl {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
}
.eyebrow { font-family: var(--serif); font-size: 13.5px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-deep); }
.btn {
  display: inline-block; font-family: var(--sans); font-size: 11.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; text-align: center;
  padding: 16px 34px 15px; cursor: pointer;
  background: var(--gold); color: var(--ink); border: 1px solid var(--gold);
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}
.btn:hover, .btn:focus-visible { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.btn.outline { background: transparent; border-color: var(--hairline); color: var(--ink); }
.btn.outline:hover, .btn.outline:focus-visible { border-color: var(--gold-deep); background: transparent; color: var(--gold-deep); }
.btn.ghost { background: transparent; border-color: rgba(255,255,255,.7); color: #fff; }
.btn.ghost:hover, .btn.ghost:focus-visible { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.tlink {
  font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep); text-decoration: underline;
  text-decoration-thickness: .5px; text-underline-offset: 6px; text-decoration-color: var(--gold-deep);
  transition: color var(--dur);
}
.tlink:hover { text-decoration: none; color: var(--ink); }

/* ============================================================
   HEADER — transparent, hairline inset; solid on scroll
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: stretch; gap: 18px;
  padding: 0 0 0 var(--gutter);
  color: #fff;
  box-shadow: inset 0 -1px 0 0 rgba(245, 242, 237, .35);
  transition: background-color var(--dur), box-shadow var(--dur), color var(--dur);
  background-color: transparent;
}
.site-header.scrolled, body.solid-header .site-header.scrolled {
  background-color: rgba(36, 52, 63, .98);
  box-shadow: inset 0 -1px 0 0 var(--hairline-dark);
}
.menu-toggle {
  display: flex; align-items: center; gap: 12px; align-self: center;
  background: none; border: 0; color: inherit; cursor: pointer; padding: 10px 0;
  font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
}
.menu-toggle .bars { display: inline-flex; flex-direction: column; gap: 5px; }
.menu-toggle .bars i { width: 24px; height: 1.5px; background: currentColor; }
.site-header .brand {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  transition: opacity var(--dur);
}
.site-header .brand img { height: 52px; width: auto; }
body.home .site-header:not(.scrolled) .brand { opacity: 0; pointer-events: none; }
.head-cta {
  margin-left: auto; display: flex; align-items: stretch;
}
.head-cta .btn { border: 0; display: flex; align-items: center; padding: 0 30px; }
@media (max-width: 640px) {
  .menu-toggle .word { display: none; }
  .site-header .brand img { height: 33px; }
  .head-cta .btn { padding: 0 12px; font-size: 9.5px; letter-spacing: .1em; }
}

/* ---------- fullscreen menu overlay — cream hairline grid ---------- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: var(--hairline);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur), visibility var(--dur);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-top {
  background: var(--cream); flex: 0 0 var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter); margin-bottom: 1px;
}
.menu-top .close-btn {
  background: none; border: 0; color: var(--ink); cursor: pointer; padding: 10px 0;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
}
.menu-top img { height: 44px; }
.menu-grid {
  flex: 1; display: grid; gap: 1px;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
}
.menu-cell { background: var(--cream); padding: clamp(26px, 4.5vh, 48px) clamp(24px, 4vw, 56px); }
.menu-cell.nav-cell { grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: center; }
.menu-cell nav a {
  display: block; position: relative;
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(26px, 4.4vh, 38px); line-height: 1.55; color: var(--ink);
  padding-left: 0; transition: padding-left var(--dur), color var(--dur);
}
.menu-cell nav a::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 0; height: 1px;
  background: var(--gold-deep); transition: width var(--dur);
}
.menu-cell nav a:hover { padding-left: 34px; color: var(--gold-deep); }
.menu-cell nav a:hover::before { width: 22px; }
.menu-cell .lbl { color: var(--gold-deep); display: block; margin-bottom: 14px; }
.menu-cell p { font-family: var(--sans); font-weight: 300; font-size: 14.5px; color: var(--ink-soft); margin: 0 0 10px; line-height: 1.7; }
.menu-cell p a { color: var(--ink); }
.menu-cell p a:hover { color: var(--gold-deep); }
@media (max-width: 820px) {
  .menu-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .menu-cell.nav-cell { grid-row: auto; }
  .menu-cell nav a { font-size: clamp(23px, 3.4vh, 30px); line-height: 1.6; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  color: #fff; isolation: isolate; overflow: hidden;
}
.hero .hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  animation: heroZoom 24s ease-out forwards;
}
/* mobile art-direction: portrait crop that keeps the whole subject in frame */
@media (max-width: 640px) {
  .hero .hero-bg-home { background-image: url('../img/aerial-m.jpg') !important; }
}
@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero .hero-bg { animation: none; } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(18,28,40,.42) 0%, rgba(18,28,40,.16) 26%, rgba(18,28,40,.3) 100%); }
.hero .hero-logo { width: min(60vw, 480px); height: auto; filter: drop-shadow(0 4px 30px rgba(0,0,0,.25)); }
.hero .hero-tag {
  position: absolute; bottom: clamp(56px, 10vh, 90px); left: 0; right: 0; text-align: center;
  font-family: var(--sans); font-weight: 300; font-size: 14px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.92); padding: 0 20px;
}
@media (max-width: 640px) {
  .hero .hero-tag { font-size: 10.5px; letter-spacing: .2em; bottom: 48px; }
}
/* inner-page hero */
.hero.inner { min-height: 74svh; align-items: flex-end; justify-content: flex-start; }
.hero.inner::after { background: linear-gradient(180deg, rgba(18,28,40,.48) 0%, rgba(18,28,40,.14) 24%, rgba(18,28,40,.74) 100%); }
.hero.inner .hero-inner { width: 100%; padding: 0 var(--gutter) clamp(44px, 8vh, 80px); }
.hero.inner .eyebrow { color: var(--gold); display: block; margin-bottom: 14px; text-shadow: 0 1px 14px rgba(18,28,40,.75), 0 0 2px rgba(18,28,40,.5); }
.hero.inner h1 { font-size: clamp(42px, 7vw, 84px); font-weight: 600; color: #fff; max-width: 16ch; text-shadow: 0 2px 30px rgba(18,28,40,.45); }
.hero.inner .hero-sub { font-family: var(--sans); font-weight: 300; font-size: clamp(15px, 1.6vw, 17.5px); color: rgba(255,255,255,.94); max-width: 56ch; margin: 16px 0 0; line-height: 1.7; text-shadow: 0 1px 16px rgba(18,28,40,.8), 0 0 3px rgba(18,28,40,.55); }
.scroll-cue { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); width: 1px; height: 54px; overflow: hidden; }
.scroll-cue::after { content: ""; display: block; width: 1px; height: 100%; background: rgba(255,255,255,.85); animation: cue 2.4s ease-in-out infinite; }
@keyframes cue { 0% { transform: translateY(-100%); } 60% { transform: translateY(0); } 100% { transform: translateY(100%); } }
@media (prefers-reduced-motion: reduce) { .scroll-cue::after { animation: none; } }

/* ============================================================
   POSTER HERO — dark hero that shows a full promo poster whole
   ============================================================ */
.hero-event {
  min-height: 80svh; display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(172deg, var(--slate) 0%, var(--slate-deep) 125%); color: var(--cream);
  padding: calc(var(--header-h) + 48px) var(--gutter) 60px;
}
.hero-event .he-inner { max-width: 720px; width: 100%; }
.hero-event .eyebrow { color: var(--gold); display: block; margin-bottom: 14px; }
.hero-event h1 { color: #fff; font-size: clamp(40px, 6vw, 72px); }
.hero-event .hero-sub { font-family: var(--sans); font-weight: 300; font-size: clamp(15px, 1.6vw, 17.5px); color: #C3CBD3; max-width: 54ch; margin: 16px auto 32px; line-height: 1.7; }
.hero-event .he-poster { display: block; width: min(470px, 86%); margin: 0 auto; box-shadow: 0 24px 64px -24px rgba(0,0,0,.7); }

/* ============================================================
   INTERLUDE — centered serif manifesto
   ============================================================ */
.interlude { padding: clamp(80px, 14vh, 150px) var(--gutter); text-align: center; }
.interlude .statement {
  font-family: var(--serif); font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; font-size: clamp(21px, 2.6vw, 31px); line-height: 1.65;
  max-width: 30ch; margin: 0 auto; color: var(--ink);
}
.interlude .statement em {
  font-style: italic; text-transform: none; letter-spacing: 0;
  font-weight: 500; font-size: 1.7em; line-height: 1; color: var(--gold-deep);
  padding: 0 .08em;
}
.interlude .after { margin-top: 38px; }

/* ============================================================
   FULL-BLEED PANELS — giant centered titles, hairline gaps
   ============================================================ */
.panels { display: grid; gap: 1px; background: var(--hairline); }
.panel-row { display: grid; gap: 1px; grid-template-columns: 1fr; }
.panel-row.pair { grid-template-columns: 1fr 1fr; }
@media (max-width: 820px) { .panel-row.pair { grid-template-columns: 1fr; } }
.panel {
  position: relative; min-height: 96svh;
  display: flex; align-items: center; justify-content: center;
  isolation: isolate; overflow: hidden; color: #fff;
}
.panel-row.pair .panel { min-height: 82svh; }
@media (max-width: 820px) { .panel { min-height: 78svh; } .panel-row.pair .panel { min-height: 64svh; } }
.panel .panel-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform 1.2s ease;
}
.panel:hover .panel-bg { transform: scale(1.031); }
@media (prefers-reduced-motion: reduce) { .panel:hover .panel-bg { transform: none; } }
.panel::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(18, 28, 40, .3); transition: background var(--dur); }
.panel:hover::after { background: rgba(18, 28, 40, .38); }
.panel .panel-title {
  font-family: var(--serif); font-weight: 600; text-align: center;
  font-size: clamp(44px, 8.6vw, 124px); line-height: 1.04;
  color: var(--cream); padding: 0 16px;
  text-shadow: 0 2px 26px rgba(0,0,0,.25);
}
.panel-row.pair .panel-title { font-size: clamp(38px, 5.4vw, 76px); }
/* poster panel — plaque-forward image fills the door; the emblem stays the focus */
.panel.poster-panel .panel-bg { background-size: cover; background-position: center bottom; background-color: #0a0e15; }
.panel.poster-panel::after { background: linear-gradient(180deg, rgba(10,14,21,.55) 0%, rgba(10,14,21,0) 24%); }
.panel.poster-panel .panel-title { display: none; }
.panel.poster-panel .panel-cta { top: clamp(86px, 13vh, 116px); bottom: auto; }
.panel .panel-cta {
  position: absolute; left: var(--gutter); bottom: clamp(28px, 5vh, 48px);
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--cream); text-decoration: underline; text-decoration-thickness: .5px; text-underline-offset: 7px;
  transition: color var(--dur);
}
.panel:hover .panel-cta { text-decoration: none; color: var(--gold); }
.panel .stretched { position: absolute; inset: 0; z-index: 2; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(66px, 11vh, 120px) 0; }
.section.tight { padding: clamp(44px, 7vh, 76px) 0; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(22px, var(--gutter), 60px); }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 clamp(22px, var(--gutter), 60px); }
.sec-head { margin-bottom: clamp(34px, 5vh, 56px); }
.sec-head .eyebrow { display: block; margin-bottom: 16px; }
.sec-head h2 { font-size: clamp(31px, 4vw, 48px); }
.sec-head .sec-sub { font-family: var(--sans); font-weight: 300; font-size: 16px; color: var(--ink-soft); max-width: 64ch; margin: 16px 0 0; line-height: 1.75; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-sub { margin-inline: auto; }
.prose-serif { font-size: 18.5px; line-height: 1.75; color: var(--ink); max-width: 66ch; }
.prose-serif p { margin-bottom: 1.2em; }

/* feature rows */
.feature { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(30px, 5vw, 76px); align-items: center; }
.feature + .feature { margin-top: clamp(60px, 10vh, 110px); }
.feature.flip .fig { order: 2; }
.feature .fig { overflow: hidden; }
.feature .fig img { width: 100%; height: clamp(320px, 54vh, 580px); object-fit: cover; transition: transform 1.2s ease; }
.feature .fig:hover img { transform: scale(1.031); }
@media (prefers-reduced-motion: reduce) { .feature .fig:hover img { transform: none; } }
.feature .eyebrow { display: block; margin-bottom: 14px; }
.feature h3 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 16px; }
.feature p { font-family: var(--sans); font-weight: 300; font-size: 15px; color: var(--ink-soft); margin: 0 0 14px; line-height: 1.75; }
.feature .serif-note { font-family: var(--serif); font-size: 18px; color: var(--ink); }
.feature ul { font-family: var(--sans); font-weight: 300; font-size: 14.5px; color: var(--ink-soft); margin: 0 0 20px; padding-left: 18px; line-height: 1.8; }
.feature .mt { margin-top: 10px; }
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; } .feature.flip .fig { order: 0; } .feature .fig img { height: 320px; } }

/* hairline card grid */
.cardgrid { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.cardgrid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cardgrid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .cardgrid.cols-3 { grid-template-columns: 1fr; } .cardgrid.cols-2 { grid-template-columns: 1fr; } }
.cardgrid .cell { background: var(--paper); padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 38px); }
.cell .eyebrow { display: block; margin-bottom: 14px; font-size: 12px; }
.cell h3 { font-size: 25px; margin-bottom: 6px; }
.cell .price { font-family: var(--serif); font-size: 30px; font-weight: 700; margin: 12px 0 4px; }
.cell .price small { font-family: var(--sans); font-size: 11.5px; font-weight: 400; color: var(--muted); letter-spacing: .06em; }
.cell p { font-family: var(--sans); font-weight: 300; font-size: 14.5px; color: var(--ink-soft); margin: 10px 0; line-height: 1.7; }
.cell ul { font-family: var(--sans); font-weight: 300; font-size: 14px; color: var(--ink-soft); margin: 14px 0 0; padding-left: 17px; line-height: 1.85; }
.cell .cell-cta { margin-top: 22px; }

/* data table */
.data-table { width: 100%; border-collapse: collapse; font-family: var(--sans); font-size: 13.5px; font-weight: 300; }
.data-table th {
  font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); text-align: left; padding: 12px 12px; border-bottom: 1px solid var(--gold-deep);
  white-space: nowrap;
}
.data-table th.num, .data-table td.num { text-align: right; }
.data-table td { padding: 13px 12px; border-bottom: 1px solid var(--hairline); color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.data-table td:first-child { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.data-table .grp td { padding-top: 30px; font-family: var(--serif); font-size: 13px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-deep); border-bottom: 0; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-note { font-family: var(--sans); font-size: 12.5px; font-weight: 300; color: var(--muted); margin-top: 14px; line-height: 1.6; }

/* menu price list */
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px clamp(30px, 5vw, 70px); }
@media (max-width: 820px) { .menu-cols { grid-template-columns: 1fr; } }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { display: flex; align-items: baseline; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--hairline); }
.menu-list .dish { font-family: var(--serif); font-size: 16.5px; color: var(--ink); }
.menu-list .dish small { display: block; font-family: var(--sans); font-weight: 300; font-size: 12.5px; color: var(--muted); letter-spacing: .02em; }
.menu-list .dots { flex: 1; border-bottom: 1px dotted var(--hairline-dark); transform: translateY(-5px); min-width: 20px; }
.menu-list .amt { font-family: var(--sans); font-weight: 400; font-size: 14px; color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu-h { font-family: var(--serif); font-size: 13px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-deep); margin: 34px 0 6px; }

/* dark band */
.band { background: linear-gradient(172deg, var(--slate) 0%, var(--slate-deep) 130%); color: var(--cream); }
.band .sec-head h2, .band h3 { color: #fff; }
.band .sec-head .sec-sub, .band p { color: #BCC7D1; }
.band .eyebrow { color: var(--gold); }
.band .data-table td { color: #BCC7D1; border-color: rgba(255,255,255,.13); }
.band .data-table td:first-child { color: #fff; }
.band .data-table th { color: var(--gold); border-color: var(--gold); }
.band .cardgrid { background: rgba(205,185,107,.3); border-color: rgba(205,185,107,.3); }
.band .cardgrid .cell { background: rgba(255,255,255,.035); }
.band .cell h3, .band .cell .price { color: #fff; }
.band .cell p, .band .cell ul { color: #BCC7D1; }
.band .table-note { color: #8FA0AE; }

/* gold band */
.gold-band { background: var(--gold); color: var(--ink); }
.gold-band .inner {
  max-width: 1180px; margin: 0 auto; padding: clamp(52px, 9vh, 84px) clamp(22px, var(--gutter), 60px);
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.gold-band h2 { font-size: clamp(27px, 3.4vw, 40px); max-width: 21ch; }
.gold-band p { font-family: var(--sans); font-weight: 400; font-size: 15px; margin: 12px 0 0; max-width: 54ch; line-height: 1.7; }
.gold-band .btn { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.gold-band .btn:hover { background: transparent; color: var(--ink); }

/* quote */
.quote { text-align: center; max-width: 800px; margin: 0 auto; }
.quote blockquote { font-family: var(--serif); font-size: clamp(21px, 2.7vw, 30px); font-weight: 500; line-height: 1.55; margin: 0; font-style: italic; }
.quote blockquote::before { content: "“"; color: var(--gold-deep); font-size: 1.7em; line-height: 0; vertical-align: -.32em; margin-right: 4px; font-style: normal; }
.quote cite { display: block; margin-top: 26px; font-style: normal; }
.quote cite .lbl { color: var(--gold-deep); }
.quote cite .who { font-family: var(--sans); font-weight: 300; font-size: 13px; color: var(--muted); margin-top: 6px; display: block; letter-spacing: .04em; }

/* stats strip */
.stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px clamp(34px, 7vw, 96px); text-align: center; }
.stats .n { font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.1; }
.stats .l { font-family: var(--sans); font-size: 10.5px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* checklist columns */
.checklist { columns: 2; column-gap: 50px; font-family: var(--sans); font-weight: 300; font-size: 15px; color: var(--ink-soft); list-style: none; margin: 0; padding: 0; line-height: 1.7; }
.checklist li { margin-bottom: 13px; padding-left: 26px; position: relative; break-inside: avoid; }
.checklist li::before { content: "—"; position: absolute; left: 0; color: var(--gold-deep); }
@media (max-width: 700px) { .checklist { columns: 1; } }

/* FAQ */
.faq { border-top: 1px solid var(--hairline); }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 4px; font-family: var(--serif); font-size: 19.5px; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-weight: 300; font-size: 24px; color: var(--gold-deep); transition: transform var(--dur); flex: 0 0 auto; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { font-family: var(--sans); font-weight: 300; font-size: 15px; color: var(--ink-soft); padding: 0 4px 24px; max-width: 70ch; line-height: 1.75; }

/* vendor directory */
.vendors { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.vendor { background: var(--paper); padding: 24px 22px; }
.vendor .cat { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); display: block; margin-bottom: 8px; }
.vendor h4 { font-size: 19px; margin-bottom: 6px; }
.vendor p { font-family: var(--sans); font-weight: 300; font-size: 13px; color: var(--ink-soft); margin: 0 0 4px; line-height: 1.6; overflow-wrap: anywhere; }
.vendor a:hover { color: var(--gold-deep); }

/* event cards */
.event-card { display: grid; grid-template-columns: .95fr 1.05fr; background: var(--paper); border: 1px solid var(--hairline); }
.event-card + .event-card { margin-top: 28px; }
.event-card .ev-img { aspect-ratio: 4 / 3; background-size: contain; background-repeat: no-repeat; background-position: center; background-color: #131c26; }
.event-card .ev-body { padding: clamp(28px, 4vw, 48px); align-self: center; }
.event-card .date { font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); display: block; margin-bottom: 12px; }
.event-card h3 { font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 12px; }
.event-card p { font-family: var(--sans); font-weight: 300; font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; margin: 0 0 18px; }
@media (max-width: 820px) { .event-card { grid-template-columns: 1fr; } }

/* press / journal lists */
.presslist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--hairline); }
.presslist li { border-bottom: 1px solid var(--hairline); padding: 18px 4px; display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap; }
.presslist .src { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); flex: 0 0 210px; }
.presslist .ttl { font-family: var(--serif); font-size: 18px; font-weight: 600; flex: 1 1 300px; }
.presslist .dt { font-family: var(--sans); font-weight: 300; font-size: 12.5px; color: var(--muted); }
@media (max-width: 640px) { .presslist .src { flex-basis: 100%; } }

/* form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 9px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--paper); border: 1px solid var(--hairline);
  font-family: var(--sans); font-weight: 300; font-size: 15px; color: var(--ink);
  padding: 14px 15px; transition: border-color var(--dur); border-radius: 0; -webkit-appearance: none; appearance: none;
}
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--gold-deep) 50%), linear-gradient(135deg, var(--gold-deep) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-deep); }
.field textarea { min-height: 130px; resize: vertical; }
.form-ok { font-family: var(--sans); font-size: 14px; background: rgba(205,185,107,.16); border: 1px solid var(--gold); padding: 14px 18px; margin-top: 18px; }

/* ============================================================
   FOOTER — slate
   ============================================================ */
.site-footer { background: var(--slate-deep); color: #93A5B3; font-family: var(--sans); font-weight: 300; font-size: 14px; }
.site-footer .foot-main {
  max-width: 1180px; margin: 0 auto;
  padding: clamp(56px, 9vh, 92px) clamp(22px, var(--gutter), 60px) 44px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px;
}
.site-footer .foot-brand img.eh { width: 200px; margin-bottom: 20px; height: auto; }
.site-footer .foot-brand p { margin: 0 0 6px; line-height: 1.75; }
.site-footer h4 { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 11px; }
.site-footer a { transition: color var(--dur); }
.site-footer a:hover { color: #fff; }
.site-footer .foot-bottom {
  border-top: 1px solid rgba(255,255,255,.13);
  max-width: 1180px; margin: 0 auto;
  padding: 24px clamp(22px, var(--gutter), 60px);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 12px; color: #7A8FA0;
}
.site-footer .mit-mark { height: 28px; width: auto; }
@media (max-width: 940px) { .site-footer .foot-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .foot-main { grid-template-columns: 1fr; } }

/* reveal */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

.center { text-align: center; }
.mt-lg { margin-top: clamp(38px, 6vh, 64px); }
.mt-md { margin-top: 28px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--gold); color: var(--ink); padding: 10px 18px; z-index: 300; font-family: var(--sans); }
.skip-link:focus { left: 0; }
