/* ---------------------------------------------------------
   save 954 Highland — flyer-styled rebuild
   Typography: Aileron (TipoType), served via CDNFonts
   Palette: white / ink-black / coral accent
   --------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.cdnfonts.com/css/aileron');

:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --ink: #111111;
  --ink-soft: #2a2a2a;
  --muted: #6a6a6a;
  --line: #e5e5e5;
  --line-strong: #111111;
  --accent: #ef5a45;       /* coral from flyer date badge */
  --accent-ink: #ffffff;
  --max: 1280px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-soft: 0 8px 24px rgba(0,0,0,.04);
  --gutter: 10vw;
  --accent-zine: #ff7f50;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Aileron', 'Helvetica Neue', Arial, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition: background-color .45s ease, color .45s ease;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .05;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 100;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
.brand-title,
.nav,
.date-pill,
.btn {
  font-family: 'Inter', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
a { color: inherit; text-decoration: none; }
img, video, iframe { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - (var(--gutter) * 2))); margin: 0 auto; }

/* ---------- Header / Nav ---------- */
.site-header {
  padding: 22px 0 0;
  position: relative;
  z-index: 10;
}
.site-header.overlay {
  position: absolute;
  inset: 0 0 auto 0;
}
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  min-width: 0;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  overflow: visible;
}
.brand-mark .rose-dot,
.brand-mark .rose-shape {
  fill: var(--accent);
  transform-box: fill-box;
  transform-origin: center;
}
.brand-title {
  display: flex;
  align-items: center;
  min-height: 46px;
  font-weight: 700;
  font-style: italic;
  font-size: 1.35rem;
  letter-spacing: -.01em;
  line-height: 1;
  padding-top: 1px;
}
.nav {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  position: relative;
  padding: 15px 0;
  color: var(--ink);
}
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--accent);
}
.nav a:hover { color: var(--accent); }

/* Overlay header variant (home hero) */
.site-header.overlay .header-row {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(17,17,17,.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}
.site-header.overlay .brand-title,
.site-header.overlay .nav a { color: var(--ink); }
.site-header.overlay .nav a:hover { color: var(--accent); }

/* ---------- Home (hero) ---------- */
.home {
  min-height: 100svh;
  position: relative;
  color: #ffffff;
  overflow: hidden;
  background: #000;
  background-position: 50% 50%;
  will-change: background-position;
}
.home video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05) brightness(.92);
  will-change: transform;
}
.home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.30), rgba(0,0,0,.10) 28%, rgba(0,0,0,.18) 72%, rgba(0,0,0,.46)),
    linear-gradient(to right, rgba(0,0,0,.38), rgba(0,0,0,.05) 52%);
}
.home-content {
  position: relative;
  z-index: 5;
  padding-top: clamp(120px, 18vh, 200px);
  padding-bottom: 160px;
  max-width: 960px;
}
.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #ffffff;
}
.eyebrow .ast { color: var(--accent); font-style: italic; }

.display {
  font-style: italic;
  font-weight: 800;
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  text-shadow: 0 4px 18px rgba(0,0,0,.34);
  text-wrap: balance;
}
.display .ast { color: var(--accent); font-style: italic; }
.display .lowcase {
  display: block;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  letter-spacing: 0;
  margin-top: 14px;
  text-transform: none;
  color: #ffffff;
}

.mission {
  max-width: 620px;
  font-size: 1.02rem;
  color: rgba(255,255,255,.94);
  text-shadow: 0 2px 10px rgba(0,0,0,.36);
  margin-top: 4px;
}
.status-line {
  margin-top: 16px;
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  font-style: italic;
}

.home-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}

.hero-content h1,
.content-wrapper,
.content-wrapper .btn-primary,
.content-wrapper .btn-secondary {
  opacity: 0;
}

.history-block,
.history-block .btn-primary,
.history-block .btn-secondary {
  opacity: 1;
}

.hero-content h1,
.content-wrapper,
.content-wrapper .btn-primary,
.content-wrapper .btn-secondary,
.hero-section,
.hero-section video {
  will-change: transform, opacity, filter;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  transition: background-color .18s, color .18s, border-color .18s;
  transform-origin: center;
}
.btn:hover, .btn:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}
.btn-ghost {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: #ffffff;
  color: var(--ink);
  border-color: #ffffff;
}
.btn-coral {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}
.btn-coral:hover, .btn-coral:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-content h1,
  .content-wrapper,
  .content-wrapper .btn-primary,
  .content-wrapper .btn-secondary {
    opacity: 1;
  }

  .hero-section,
  .hero-section video,
  .hero-content h1,
  .content-wrapper,
  .content-wrapper .btn-primary,
  .content-wrapper .btn-secondary {
    will-change: auto;
  }

  .btn {
    transition: none;
  }
}

@media (max-width: 720px) {
  .site-header.overlay .header-row {
    border-radius: 26px;
    padding: 14px 16px;
    align-items: flex-start;
  }
}

.home-footer {
  position: absolute;
  left: 0; right: 0; bottom: 26px;
  z-index: 6;
}

.onepage-shell {
  background:
    linear-gradient(180deg, #f4f0ea 0%, #ffffff 28%, #f6f1eb 62%, #161616 62%, #161616 100%);
}

.onepage-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17,17,17,.08);
}

.morph-brand {
  gap: 10px;
}

.morph-rose {
  will-change: transform, opacity, filter;
}

.onepage-hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #000;
}

.onepage-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.06) brightness(.82);
}

.onepage-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.16) 36%, rgba(0,0,0,.52) 100%),
    linear-gradient(90deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.12) 55%, rgba(0,0,0,.34) 100%);
}

.onepage-hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(140px, 18vh, 190px);
  padding-bottom: 110px;
  max-width: 960px;
}

.onepage-panel {
  position: relative;
  padding: 120px 0;
}

.onepage-panel[id] {
  scroll-margin-top: 104px;
}

.story-band {
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.96));
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .8fr);
  gap: 32px;
  align-items: end;
}

.story-copy {
  max-width: 20ch;
}

.story-pull {
  padding: 28px;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow-soft);
}

.story-pull p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.timeline-band {
  background: transparent;
}

.history-section {
  position: relative;
}

.onepage-section-head {
  padding-bottom: 18px;
}

.connect-band {
  padding-bottom: 104px;
}

.support-needed-section {
  position: relative;
  background: #111111;
  border-top: 1px solid rgba(255,255,255,.12);
}

.support-needed-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1280px, calc(100% - (var(--gutter) * 2)));
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-zine) 18%, var(--accent-zine) 82%, transparent 100%);
  transform: translateX(-50%);
}

.support-needed-section .page-title,
.support-needed-section .card h3,
.support-needed-section .connect-intro h2 {
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
}

.support-needed-section .page-subtitle,
.support-needed-section .page-intro,
.support-needed-section p,
.support-needed-section .card p {
  color: rgba(255,255,255,.84);
}

.support-needed-section .page-subtitle,
.support-needed-section .ast {
  color: var(--accent-zine);
}

.support-needed-section .card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

.support-needed-section .btn-coral {
  background: var(--accent-zine);
  border-color: var(--accent-zine);
  color: #111111;
}

.support-needed-section .btn-secondary {
  color: #ffffff;
  border-color: rgba(255,255,255,.72);
  background: transparent;
}

.connect-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.connect-actions {
  display: grid;
  gap: 22px;
}

.compact-actions {
  margin-top: 18px;
}

.onepage-footer {
  background: #161616;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,.08);
}

.onepage-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  padding: 34px 0 40px;
}

.onepage-footer-copy .page-subtitle {
  color: rgba(255,255,255,.62);
  margin-bottom: 12px;
}

.onepage-footer-copy h2 {
  margin: 0;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.onepage-footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.onepage-footer-meta a {
  color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  body {
    transition: none;
  }

  .brand-mark .rose-dot,
  .brand-mark .rose-shape,
  .morph-rose {
    will-change: auto;
  }
}

body.zine-contrast {
  background-color: #111111;
  color: #ffffff;
}

body.zine-contrast::before {
  mix-blend-mode: screen;
}

body.zine-contrast .onepage-shell {
  background: linear-gradient(180deg, #f4f0ea 0%, #ffffff 34%, #111111 34%, #111111 100%);
}

body.zine-contrast .timeline-band,
body.zine-contrast .onepage-footer {
  background: #111111;
}

body.zine-contrast .page-title,
body.zine-contrast .event-title,
body.zine-contrast .onepage-footer-copy h2,
body.zine-contrast .brand-title,
body.zine-contrast .nav a {
  color: #ffffff;
}

body.zine-contrast .page-subtitle,
body.zine-contrast .page-intro,
body.zine-contrast .event-body,
body.zine-contrast .onepage-footer-meta,
body.zine-contrast .onepage-footer-copy .page-subtitle {
  color: var(--accent-zine);
}

body.zine-contrast .image-card {
  background: #1b1b1b;
  border-color: rgba(255,255,255,.14);
}

body.zine-contrast .timeline-line {
  background: rgba(255,255,255,.24);
}

body.zine-contrast .date-pill,
body.zine-contrast .btn-coral {
  background: var(--accent-zine);
  border-color: var(--accent-zine);
  color: #111111;
}

body.zine-contrast .btn-secondary {
  color: #ffffff;
  border-color: var(--accent-zine);
  background: transparent;
}

body.zine-contrast .btn-secondary:hover,
body.zine-contrast .btn-secondary:focus-visible {
  background: var(--accent-zine);
  color: #111111;
}

/* ---------- Inner page shell ---------- */
.page { min-height: 100vh; display: flex; flex-direction: column; }
.page main { flex: 1; }
.page-head {
  padding: 64px 0 32px;
}
.page-title {
  font-style: italic;
  font-weight: 800;
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-wrap: balance;
  max-width: 12ch;
}
.page-title .ast { color: var(--accent); font-style: italic; }
.page-subtitle {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--muted);
  margin: 0 0 10px;
}
.page-intro {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  text-wrap: pretty;
}

.nowrap {
  white-space: nowrap;
}

/* ---------- History timeline ---------- */
.history {
  padding: 36px 0 40px;
  position: relative;
}
.event {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 5fr) 56px minmax(280px, 5fr) minmax(0, 1fr);
  column-gap: 0;
  align-items: center;
  margin: 0;
  padding-block: 150px;
  position: relative;
}
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #ccc;
  transform: translateX(-50%);
  transform-origin: top center;
  z-index: 0;
}
.timeline-node {
  grid-column: 3;
  justify-self: center;
  align-self: center;
  width: 14px;
  height: 14px;
  background: var(--accent-zine);
  border: 2px solid #111111;
  border-radius: 999px;
  z-index: 3;
}
.event .side {
  position: relative;
  z-index: 2;
  align-self: center;
}
.event .side.text {
  grid-column: 2;
  padding-right: 28px;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event .side.image {
  grid-column: 4;
  padding-left: 28px;
  display: flex;
  align-items: center;
}
.event.reverse .side.text {
  grid-column: 4;
  padding-left: 28px;
  padding-right: 0;
  text-align: left;
}
.event.reverse .side.image {
  grid-column: 2;
  padding-right: 28px;
  padding-left: 0;
}

.image-card {
  background: #f3f3f3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transform: rotate(-1deg);
  transition: transform .28s ease, filter .28s ease, box-shadow .28s ease;
  box-shadow: 0 14px 38px rgba(0,0,0,.08);
}
.history-block:nth-of-type(even) .image-card { transform: rotate(1deg); }
.image-card img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.04);
  transition: filter .28s ease, transform .28s ease;
}
.image-card:hover {
  transform: rotate(0deg) translateY(-4px);
}
.image-card:hover img {
  filter: grayscale(100%) contrast(2.25) brightness(1.12);
  transform: scale(1.02);
}

.date-pill {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.event-title {
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.event-body {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 34rem;
}

.timeline-cta {
  display: flex;
  justify-content: center;
  margin: 72px 0 20px;
}

/* ---------- Connect page ---------- */
.connect-stack { display: grid; gap: 22px; }

/* Bold-border box (echoes the flyer's SCAN ME frame) */
.bold-box {
  border: 3px solid var(--line-strong);
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
}
.bold-box-head {
  background: var(--line-strong);
  color: #ffffff;
  padding: 10px 16px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.bold-box-body {
  padding: 22px;
}

/* form + QR */
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 24px;
  align-items: start;
}
.form-shell iframe {
  width: 100%;
  height: 580px;
  min-height: 580px;
  border: 0;
  border-radius: 10px;
  background: #fff;
}
.qr-side { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
.qr-side .bold-box-body {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-side img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
}
.qr-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  padding: 10px 12px;
  border-bottom: 2px solid var(--ink);
  align-self: center;
}
.qr-link:hover { color: var(--accent); border-color: var(--accent); }

/* two-col info cards */
.connect-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.card h3 {
  font-style: italic;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 12px;
}
.card p { color: var(--ink-soft); margin: 0 0 10px; }
.card p:last-child { margin-bottom: 0; }

/* Flyer-style date badge (coral, dashed dividers) */
.date-badge {
  background: var(--accent);
  color: #ffffff;
  border-radius: 14px;
  padding: 14px 10px 16px;
  text-align: center;
  width: 140px;
}
.date-badge .row {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 7px 4px;
  position: relative;
}
.date-badge .row + .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  border-top: 1.5px dashed rgba(255,255,255,.7);
}
.date-badge .big {
  font-style: italic;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -.02em;
  line-height: 1;
  padding: 8px 4px 10px;
  text-transform: none;
}
.calendar {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 10px;
}
.calendar .meta { color: var(--ink-soft); }
.calendar .meta strong { font-style: italic; font-weight: 700; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 30px;
  margin-top: 40px;
}
.footer-rule {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-inline { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; color: var(--muted); }
.footer-inline span { letter-spacing: .08em; }
.footer-rule .ast { color: var(--accent); }

/* Home-overlay footer (on dark video) */
.home-footer .footer-rule { color: #ffffff; }
.home-footer .footer-inline { color: rgba(255,255,255,.86); }

/* ---------- Small utility ---------- */
.ast { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .story-grid,
  .connect-grid {
    grid-template-columns: 1fr;
  }

  .event {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 96px;
  }
  .timeline-line {
    left: 14px;
  }
  .timeline-node {
    grid-column: auto;
    justify-self: start;
    margin-left: 7px;
  }
  .event .side.image, .event .side.text,
  .event.reverse .side.image, .event.reverse .side.text {
    grid-column: auto;
    text-align: left;
    padding-left: 44px;
    padding-right: 0;
    display: block;
  }
  .form-shell { grid-template-columns: 1fr; }
  .form-shell iframe { height: 540px; min-height: 540px; }
  .qr-side { flex-direction: row; align-items: center; justify-content: space-between; }
  .qr-side .bold-box { flex: 1; }
  .connect-two-col { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .container { width: min(var(--max), calc(100% - 12vw)); }
  .header-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .nav { padding-left: 52px; }
  .nav { gap: 14px 22px; justify-content: flex-start; }
  .brand img { width: 40px; height: 40px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-title { min-height: 40px; font-size: 1.2rem; }
  .home video,
  .onepage-hero video {
    object-position: calc(50% + 115px) center;
  }
  .home-content { padding-top: 50px; padding-bottom: 50px; }
  .onepage-hero-content { padding-top: 50px; padding-bottom: 50px; }
  .onepage-panel { padding: 50px 0; }
  .event { padding-block: 50px; }
  .display { font-size: clamp(2.4rem, 11vw, 3.7rem); line-height: .95; }
  .display .lowcase { font-size: 1.1rem; margin-top: 10px; }
  .page-head { padding: 50px 0; }
  .page-title { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .story-copy,
  .page-title,
  .page-intro { max-width: none; }
  .nowrap { white-space: normal; }
  .footer-rule { flex-direction: column; align-items: flex-start; }
  .calendar { grid-template-columns: 1fr; }
  .qr-side { flex-direction: column; }
  .home-actions { gap: 10px; }
  .btn { padding: 12px 16px; font-size: .78rem; }
  .onepage-footer-inner,
  .onepage-footer-meta {
    align-items: flex-start;
  }
}
