/* ============================================================
   MIAMI MANUFACTURING FORUM — visual system v3 "Golden Hour"
   Architecture kept from Trunk (cards r24, hairlines, Inter 300,
   compact pills, light hero ↔ dark body) — recolored for Miami.
   Light surfaces: warm sand. Dark surfaces: Biscayne dusk teal.
   Accents: sunset coral + amber (brand/energy) · Signal Green
   only for live status (the andon light). Photography in color.
   NOTE: custom-property names carry over from v2; values are v3.
   ============================================================ */

:root {
  --obsidian: #0D171C;      /* dusk canvas */
  --carbon:   #142129;      /* elevated cards */
  --carbon-2: #182831;      /* inset panels (form side) */
  --graphite: #253843;      /* hairlines on dark */
  --slate:    #8CA0A9;      /* captions, muted on dark */
  --fog:      #B7C6CC;      /* body text on dark */
  --ash:      #CBD8DC;
  --bone:     #E9EAE0;      /* light text variant on dark */
  --chalk:    #EAE1D0;      /* hairlines on sand */
  --paper:    #F8F3EA;      /* sand — light surfaces */
  --paper-2:  #FFFFFF;
  --ink:      #17181A;
  --signal:   #22C550;      /* andon light — live status only */
  --signal-dim: rgba(34, 197, 80, .16);
  --coral:    #E8603F;      /* Miami sunset */
  --coral-deep: #CE4B2D;    /* primary buttons, links */
  --amber:    #F2A45A;
  --sunset:   linear-gradient(90deg, #E8603F, #F2A45A);
  --line-d:   #253843;
  --line-d-soft: #1D2E37;
  --line-l:   #EAE1D0;
  --r-card: 24px;
  --r-md: 12px;
  --r-btn: 18px;
  --r-pill: 999px;
  --sans: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --pad: clamp(20px, 4.5vw, 48px);
  --max: 1200px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
[id] { scroll-margin-top: 76px; }

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--fog);
  background: var(--obsidian);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--coral); color: #FFF6EE; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

section { position: relative; }
.sec { padding-top: clamp(72px, 9vw, 120px); padding-bottom: clamp(72px, 9vw, 120px); }
.sec-tight { padding-top: clamp(52px, 6vw, 80px); padding-bottom: clamp(52px, 6vw, 80px); }

.on-paper { background: var(--paper); color: var(--ink); }
.hairline-b { border-bottom: 1px solid var(--line-d-soft); }
.on-paper .hairline-b, .on-paper.hairline-b { border-color: var(--line-l); }

/* ---------- typography ---------- */

.display {
  font-weight: 300;
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: .98;
  letter-spacing: -.028em;
  color: var(--ink);
}
.on-dark-text .display { color: var(--paper); }

.h-lg { font-weight: 300; font-size: clamp(31px, 3.6vw, 45px); line-height: 1.14; letter-spacing: -.026em; color: var(--paper); }
.h-md { font-weight: 300; font-size: clamp(26px, 3vw, 36px); line-height: 1.2; letter-spacing: -.018em; color: var(--paper); }
.h-sm { font-weight: 400; font-size: clamp(19px, 2vw, 24px); line-height: 1.3; letter-spacing: -.013em; color: var(--bone); }
.on-paper .h-lg, .on-paper .h-md, .on-paper .h-sm { color: var(--ink); }

.sub { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.45; color: var(--fog); }
.on-paper .sub, .hero .sub, .masthead .sub { color: #6E695C; }

.caption {
  font-size: 11px; font-weight: 500; line-height: 1.4;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--slate);
}

.body-l { font-size: 16px; line-height: 1.6; }
.muted { color: var(--slate); }
.prose p { max-width: 36em; margin-bottom: 1.3em; }
.prose p:last-child { margin-bottom: 0; }

.sec-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: clamp(36px, 5vw, 60px); }
.sec-head .caption { display: flex; align-items: center; gap: 10px; }
.sec-head .caption::before, .masthead .caption::before {
  content: ""; display: inline-block; width: 22px; height: 2px;
  background: var(--sunset); border-radius: 2px; flex: none;
}
.masthead .caption { display: flex; align-items: center; gap: 10px; }

/* the one green light */
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); flex: none; position: relative; }
.dot.pulse::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  background: var(--signal-dim);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.45); opacity: .9; } 70% { transform: scale(1.5); opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .dot.pulse::after { animation: none; opacity: 0; } }
.sig { color: var(--coral); }

/* ---------- buttons — compact pills, quiet case ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13.5px; font-weight: 500; letter-spacing: -.006em;
  padding: 11px 20px; border-radius: var(--r-btn);
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
  white-space: nowrap;
}
.btn-dark { background: var(--carbon); color: var(--paper); border-color: var(--graphite); }
.btn-dark:hover { background: #17181B; }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-paper:hover { background: var(--chalk); }
.btn-coral { background: var(--coral-deep); color: #FFF6EE; }
.btn-coral:hover { background: #B33E22; }
.btn-ghost { border-color: var(--line-l); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }
.dark-ctx .btn-ghost { border-color: var(--graphite); color: var(--bone); }
.dark-ctx .btn-ghost:hover { border-color: var(--slate); }
.hero .btn-ghost, .masthead .btn-ghost { border-color: #DCD2BE; color: var(--ink); }
.hero .btn-ghost:hover, .masthead .btn-ghost:hover { border-color: var(--ink); }
.btn-sm { padding: 8px 15px; font-size: 12.5px; }

.qlink { color: var(--bone); font-size: 13.5px; font-weight: 500; border-bottom: 1px solid var(--graphite); padding-bottom: 2px; transition: border-color .2s; }
.qlink:hover { border-color: var(--bone); }
.on-paper .qlink { color: var(--ink); border-color: var(--line-l); }
.on-paper .qlink:hover { border-color: var(--ink); }

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

.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 3vw, 36px);
  height: 68px;
  color: var(--ink);
  transition: background .3s ease, border-color .3s ease, height .3s ease;
  border-bottom: 1px solid transparent;
}
.site-head.scrolled {
  background: rgba(248, 243, 234, .9);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line-l);
  height: 60px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand svg { width: 26px; height: auto; color: var(--ink); }
.brand-name { font-weight: 500; font-size: 14px; letter-spacing: .22em; }

.nav-links { display: flex; gap: clamp(18px, 2.6vw, 34px); }
.nav-links a { font-size: 13px; font-weight: 450; color: #6E695C; padding: 6px 0; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }

.head-right { display: flex; align-items: center; gap: 14px; }

.nav-burger {
  display: none; background: none; border: 0; width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav-burger span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s, opacity .3s; }
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 55; background: var(--paper); color: var(--ink);
  display: flex; flex-direction: column; justify-content: center; padding: 0 var(--pad);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-weight: 300; font-size: clamp(30px, 8vw, 44px); letter-spacing: -.024em;
  padding: 16px 0; border-bottom: 1px solid var(--line-l);
  display: flex; justify-content: space-between; align-items: baseline;
}
.mobile-menu nav a .caption { color: var(--slate); }
.mobile-menu .btn { margin-top: 32px; align-self: flex-start; }

@media (max-width: 900px) {
  .nav-links, .head-right .btn { display: none; }
  .nav-burger { display: flex; }
}

/* ---------- hero (light, illustrated) ---------- */

.hero {
  background: var(--paper); color: var(--ink);
  padding-top: clamp(120px, 16vh, 170px);
  overflow: hidden;
  text-align: center;
}
.hero .caption { justify-content: center; display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.hero h1 { max-width: 13em; margin: 0 auto; }
.hero-sub { margin: 22px auto 0; max-width: 32em; }
.hero-ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* hero photograph — golden-hour Miami, in the big rounded card */
.hero-photo { margin-top: clamp(30px, 5vw, 56px); padding-bottom: clamp(20px, 3vw, 34px); }
.hero-photo .ph {
  border-radius: var(--r-card); overflow: hidden;
  aspect-ratio: 21 / 10; background: var(--chalk);
  animation: heroIn 1.1s cubic-bezier(.2, .55, .2, 1) both;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-cap { display: flex; justify-content: space-between; gap: 12px; padding-top: 12px; text-align: left; }
.photo-cap span { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: #9A9280; }
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero-photo .ph { animation: none; } }
@media (max-width: 640px) { .hero-photo .ph { aspect-ratio: 4 / 3; } }

/* status strip under hero */
.strip { background: var(--paper); border-top: 1px solid var(--line-l); }
.strip .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding-top: 18px; padding-bottom: 18px;
}
.strip .caption { color: #7A7263; }
.strip .live { display: flex; align-items: center; gap: 9px; }
.strip .qlink { color: var(--coral-deep); border-color: transparent; }
.strip .qlink:hover { border-color: var(--coral-deep); }

/* ---------- industry row (logo-bar analog) ---------- */

.industries { border-bottom: 1px solid var(--line-d-soft); }
.industries .wrap {
  display: flex; flex-wrap: wrap; justify-content: center; column-gap: 34px; row-gap: 10px;
  padding-top: 26px; padding-bottom: 26px;
}
.industries span { font-size: 11px; font-weight: 500; letter-spacing: .14em; color: #5E7580; text-transform: uppercase; }

/* ---------- cards ---------- */

.card {
  background: var(--carbon);
  border: 1px solid var(--graphite);
  border-radius: var(--r-card);
}
.card-p { padding: clamp(22px, 2.6vw, 32px); }

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

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 5vw, 80px); align-items: start; }
.split-wide-r { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }

/* role cards */
.role-card { display: flex; flex-direction: column; gap: 10px; min-height: 148px; }
.role-card .caption { color: #5F7580; }
.role-card p { font-size: 13px; color: var(--slate); line-height: 1.5; }
.role-card .h-sm { font-size: 18px; }

/* callout */
.callout { display: flex; gap: 14px; align-items: flex-start; }
.callout .dot { margin-top: 6px; background: var(--coral); }
.callout p { max-width: 52em; font-size: 14px; color: var(--fog); }
.callout .caption { display: block; margin-bottom: 6px; color: var(--ash); }

/* photo treatment — everything conforms to monochrome */
.photo { border-radius: var(--r-md); overflow: hidden; background: var(--carbon-2); }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- the idea ---------- */

.not-list { border-top: 1px solid var(--graphite); margin-top: 26px; }
.not-list li {
  list-style: none; display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid var(--line-d-soft);
}
.not-list .caption { color: #5F7580; }
.not-list .t { font-size: 17px; font-weight: 400; color: var(--bone); letter-spacing: -.01em; }
.not-list li.yes .caption { color: var(--ash); }

.motto {
  margin-top: clamp(48px, 7vw, 84px);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08; letter-spacing: -.026em;
  color: var(--paper);
  max-width: 21em;
}

/* ---------- event card ---------- */

.event-card { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); overflow: hidden; }
.event-info { padding: clamp(24px, 3.2vw, 40px); display: flex; flex-direction: column; border-right: 1px solid var(--graphite); }
.event-form-side { padding: clamp(24px, 3.2vw, 40px); background: var(--carbon-2); }

.event-no { margin-bottom: 18px; color: var(--slate); }
.event-title { margin-bottom: 26px; max-width: 14em; }

.event-rows { border-top: 1px solid var(--graphite); }
.event-rows > div {
  display: grid; grid-template-columns: 96px 1fr; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid var(--line-d-soft);
}
.event-rows dt { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: #5F7580; padding-top: 3px; }
.event-rows dd { font-size: 15px; color: var(--bone); }
.event-rows dd .s { display: block; font-size: 13px; color: var(--slate); margin-top: 2px; }

.event-foot { margin-top: auto; padding-top: 24px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--fog); }

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

.f-title { margin-bottom: 22px; color: var(--ash); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: #5F7580; }
.field label .opt { color: #4E626C; font-weight: 400; text-transform: none; letter-spacing: .02em; }

.field input, .field select {
  background: var(--obsidian);
  border: 1px solid var(--graphite);
  border-radius: var(--r-md);
  color: var(--bone); font: inherit; font-size: 14.5px;
  padding: 11px 13px;
  transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
  width: 100%;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2389898D' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
}
.field select option { background: var(--carbon); color: var(--bone); }
.field input:focus, .field select:focus { outline: none; border-color: var(--amber); }
.field input::placeholder { color: #4E626C; }

form .btn { margin-top: 22px; width: 100%; }
.form-micro { margin-top: 12px; font-size: 12px; color: var(--slate); text-align: center; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-done { display: none; text-align: center; padding: 36px 8px; }
.form-done .dot { margin: 0 auto 18px; width: 9px; height: 9px; }
.form-done h4 { font-weight: 400; font-size: 21px; letter-spacing: -.013em; color: var(--paper); margin-bottom: 8px; }
.form-done p { font-size: 13.5px; color: var(--fog); max-width: 26em; margin: 0 auto; }
form.done .form-fields { display: none; }
form.done .form-done { display: block; }

/* ---------- chips / pills ---------- */

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span {
  font-size: 12px; font-weight: 450; color: var(--fog);
  border: 1px solid var(--graphite); border-radius: var(--r-pill);
  padding: 7px 14px;
}

/* ---------- partner / archive cards ---------- */

.partner-card .caption { margin-bottom: 12px; }
.partner-card h3 { margin-bottom: 10px; }
.partner-card p { font-size: 14px; color: var(--fog); max-width: 34em; }
.partner-card .qlink { display: inline-block; margin-top: 18px; }
.partner-note { margin-top: 16px; font-size: 12.5px; color: var(--slate); }

.archive-card { display: flex; flex-direction: column; gap: 14px; }
.archive-card .photo { aspect-ratio: 4 / 3; margin: -1px -1px 8px; border-radius: var(--r-card) var(--r-card) 0 0; }
.archive-card .inner { padding: 0 clamp(22px, 2.6vw, 30px) clamp(22px, 2.6vw, 30px); display: flex; flex-direction: column; gap: 12px; }
.archive-card p { font-size: 14px; color: var(--fog); }

/* ---------- INSOCO band ---------- */

.insoco-band .inner { max-width: 720px; }
.insoco-plate {
  background: var(--paper); border-radius: var(--r-md);
  width: 190px; padding: 16px 20px; margin: 26px 0;
}
.insoco-band p { font-size: 14.5px; color: var(--fog); max-width: 40em; margin-bottom: 1.2em; }
.insoco-band .goal { font-size: 18px; font-weight: 400; color: var(--bone); letter-spacing: -.01em; margin: 20px 0 24px; }

/* ---------- list CTA ---------- */

.list-cta { max-width: 860px; margin: 0 auto; text-align: center; }
.list-cta .h-lg { margin-bottom: 14px; }
.list-cta .sub { margin: 0 auto 40px; max-width: 30em; }
.list-cta form { text-align: left; }
.list-cta form .btn { width: auto; min-width: 260px; margin: 26px auto 0; display: flex; }

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

footer { background: var(--obsidian); border-top: 1px solid var(--line-d-soft); }
.foot-grid {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, .8fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(36px, 4vw, 52px);
}
.foot-brand svg { width: 32px; color: var(--coral); margin-bottom: 18px; }
.foot-brand .name { font-weight: 500; letter-spacing: .22em; font-size: 12.5px; text-transform: uppercase; line-height: 1.9; color: var(--bone); }
.foot-brand .motto-s { margin-top: 14px; font-size: 13.5px; color: var(--slate); }

.foot-col h5 { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: #5F7580; margin-bottom: 16px; }
.foot-col a { display: block; padding: 5px 0; font-size: 13.5px; color: var(--fog); transition: color .2s; }
.foot-col a:hover { color: var(--paper); }
.foot-col p { font-size: 13.5px; color: var(--fog); max-width: 24em; }
.foot-col p a { display: inline; padding: 0; border-bottom: 1px solid var(--graphite); }

.foot-bar {
  border-top: 1px solid var(--line-d-soft);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding-top: 22px; padding-bottom: 26px;
}
.foot-bar span { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: #5F7580; }

/* ---------- subpage masthead (light) ---------- */

.masthead {
  background: var(--paper); color: var(--ink);
  padding-top: clamp(116px, 15vh, 160px);
  padding-bottom: clamp(44px, 6vw, 72px);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line-l);
}
.masthead .caption { margin-bottom: 20px; color: #7A7263; }
.masthead h1 { max-width: 14em; }
.masthead .sub { margin-top: 20px; max-width: 34em; }
.masthead::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, #E8603F, #F2A45A 45%, rgba(242, 164, 90, 0) 85%);
}

/* archive tiles */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tile { padding: 26px 24px 64px; position: relative; opacity: .85; transition: border-color .25s, opacity .25s; }
.tile:hover { border-color: var(--slate); opacity: 1; }
.tile h4 { font-weight: 400; font-size: 19px; letter-spacing: -.012em; color: var(--bone); margin-top: 10px; }
.tile p { font-size: 13px; color: var(--slate); margin-top: 6px; }
.tile .saw { position: absolute; left: 24px; bottom: 22px; width: 30px; color: var(--graphite); }

/* principles / ways */
.princ { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.princ .card-p { min-height: 150px; }
.princ .caption { display: block; margin-bottom: 12px; color: #5F7580; }
.princ h3 { margin-bottom: 8px; }
.princ p { font-size: 13.5px; color: var(--slate); max-width: 30em; }

.ways { border-top: 1px solid var(--graphite); }
.ways li {
  list-style: none; display: grid; grid-template-columns: 44px 1fr; gap: 6px 16px;
  padding: 20px 0; border-bottom: 1px solid var(--line-d-soft);
}
.ways .caption { padding-top: 4px; color: #5F7580; }
.ways h4 { font-weight: 400; font-size: 19px; letter-spacing: -.012em; color: var(--bone); }
.ways p { grid-column: 2; font-size: 14px; color: var(--fog); max-width: 40em; }

/* big statement */
.bigline {
  font-weight: 300;
  font-size: clamp(28px, 3.8vw, 45px);
  line-height: 1.14; letter-spacing: -.026em;
  color: var(--paper); max-width: 21em;
}
.on-paper .bigline { color: var(--ink); }

/* CTA band */
.cta-band { text-align: center; }
.cta-band .h-lg { margin-bottom: 12px; }
.cta-band .sub { margin: 0 auto 32px; }
.cta-band .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* photo bands */
.photo-band { aspect-ratio: 21 / 9; }
.photo-card { padding: 0; overflow: hidden; }

/* ---------- reveal ---------- */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s cubic-bezier(.2, .55, .2, 1), transform .7s cubic-bezier(.2, .55, .2, 1); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .split, .split-wide-r { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; }
  .event-info { border-right: 0; border-bottom: 1px solid var(--graphite); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .tiles { grid-template-columns: 1fr; }
  .princ { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn, .cta-band .btns .btn { width: 100%; }
  .event-rows > div { grid-template-columns: 1fr; gap: 3px; padding: 11px 0; }
  .strip .wrap { flex-direction: column; align-items: flex-start; gap: 10px; }
  .role-card { min-height: 0; }
}
