/* Ewa to Everest — The Tribe Collective
   Ink + glacier + summit orange, pulled off the Tribe badge and the icefall photo. */

:root {
  --ink: #07080a;
  --night: #0d1013;
  --slate: #151a1f;
  --line: #242c33;
  --snow: #f2f6f8;
  --muted: #8d9aa4;
  --glacier: #00b2ff;
  --glacier-deep: #0088c4;
  --orange: #f0523d;
  --orange-deep: #c73c2a;
  --venmo: #f2642c;

  --display: 'Archivo Black', 'Helvetica Neue', Impact, sans-serif;
  --serif: 'Sanchez', Georgia, 'Times New Roman', serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  --wrap: 1180px;
  --r: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; max-width: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--snow);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--glacier); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: 24px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--orange); color: #fff; padding: 12px 18px; font-weight: 600;
}
.skip:focus { left: 12px; top: 12px; }

/* ───────────────────────── type */

.display {
  font-family: var(--display);
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin: 0.08em 0 0.3em;
  text-transform: uppercase;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
}
.display .to {
  display: inline-block;
  font-family: var(--body);
  font-weight: 400;
  font-style: italic;
  text-transform: lowercase;
  font-size: 0.32em;
  letter-spacing: 0;
  color: var(--glacier);
  margin: 0 0.35em;
  vertical-align: 0.42em;
}

.h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 0.5em;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--glacier);
  font-weight: 600;
  margin: 0;
}

.lede { font-size: clamp(1.02rem, 1.7vw, 1.22rem); max-width: 58ch; color: #d8e2e8; margin: 0 0 32px; }
.body { color: #c2ced6; margin: 0 0 18px; max-width: 62ch; }
.body.small { font-size: 0.92rem; color: var(--muted); }
.center { text-align: center; margin-inline: auto; }
.sub { margin-bottom: 40px; }

/* ───────────────────────── nav */

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 12px max(24px, calc((100vw - var(--wrap)) / 2 + 24px));
  background: rgba(7, 8, 10, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.badge { border-radius: 50%; background: #fff; }
.badge-lg { width: 64px; height: 64px; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-text strong { font-size: 0.98rem; letter-spacing: 0.02em; }
.nav-brand-text em { font-style: normal; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: #cdd8df; text-decoration: none; font-size: 0.92rem; font-weight: 500; }
.nav-links a:hover { color: #fff; }

/* ───────────────────────── buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600; font-size: 0.97rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 30px; font-size: 1.04rem; }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn.block { width: 100%; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-deep); }
.rail-venmo .btn-orange { background: var(--venmo); }
.rail-venmo .btn-orange:hover { background: #c8481a; }
.btn-blue { background: var(--glacier); color: #06222f; }
.btn-blue:hover { background: #8fd2f3; }
.btn-ghost { background: rgba(255, 255, 255, 0.06); color: #fff; border-color: rgba(255, 255, 255, 0.28); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.13); }

.linkish {
  background: none; border: 0; padding: 0;
  color: var(--glacier); font: inherit; font-size: inherit; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}

/* ───────────────────────── hero */

.hero { position: relative; min-height: min(72vh, 640px); display: flex; align-items: flex-end; overflow: hidden; }
/* Push Dillon out from behind the headline copy: zoom in and slide him right. */
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 28%;
  transform: scale(1.2) translate(8%, 1%);
  transform-origin: center;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--ink) 1%, rgba(7, 8, 10, 0.86) 34%, rgba(7, 8, 10, 0.24) 72%, rgba(7, 8, 10, 0.05) 100%),
    linear-gradient(to right, rgba(7, 8, 10, 0.78) 0%, rgba(7, 8, 10, 0.34) 46%, rgba(7, 8, 10, 0) 82%);
}
.hero-inner { position: relative; width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px 64px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 14px 48px;
  margin: 44px 0 0; padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-stats div { margin: 0; }
.hero-stats dt { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.hero-stats dd { margin: 4px 0 0; font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.01em; }

/* ───────────────────────── climb */

.climb { background: linear-gradient(180deg, var(--ink), var(--night)); padding: 96px 0; }
.climb-grid { display: grid; grid-template-columns: 1fr 330px; gap: 56px; align-items: center; }

.figure-row { display: flex; flex-wrap: wrap; gap: 20px 56px; margin: 30px 0 22px; }
.figure { display: flex; flex-direction: column; }
.figure-num { font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; letter-spacing: -0.02em; }
.figure-label { font-size: 0.88rem; color: var(--muted); margin-top: 8px; }
.figure-label b { color: #cdd8df; font-weight: 600; }

.bar { height: 12px; border-radius: 999px; background: #1b2229; overflow: hidden; border: 1px solid var(--line); }
.bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--glacier-deep), var(--glacier) 62%, #fff);
  border-radius: 999px;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.split { display: flex; flex-wrap: wrap; gap: 8px 26px; align-items: center; font-size: 0.9rem; color: var(--muted); margin: 16px 0 30px; }
.split b { color: var(--snow); font-weight: 600; }
.dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 7px; vertical-align: 0; }
.dot-blue { background: var(--glacier); }
.dot-orange { background: var(--orange); }
.status { margin-left: auto; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.status.live { color: var(--glacier); }
.status.stale { color: var(--orange); }

/* altitude meter */
.meter { display: flex; gap: 16px; height: 600px; padding-left: 46px; }
.meter-track {
  position: relative; width: 20px; flex: none;
  border-radius: 999px;
  background: #171e25;
  border: 1px solid var(--line);
  overflow: visible;
}
.meter-fill {
  position: absolute; left: 0; right: 0; bottom: 0; height: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, var(--glacier) 34%, var(--glacier-deep));
  box-shadow: 0 0 24px rgba(111, 195, 236, 0.45);
  transition: height 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.meter-climber {
  position: absolute; left: 50%; bottom: 0;
  transform: translate(-50%, 50%);
  transition: bottom 1.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.meter-climber-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 2px var(--orange), 0 0 22px rgba(242, 100, 44, 0.75);
  flex: none;
}
.meter-climber-label {
  position: absolute; right: 26px;
  font-family: var(--display); font-size: 0.88rem; color: var(--orange);
  letter-spacing: 0.01em;
}
.meter-camps { list-style: none; margin: 0; padding: 0; position: relative; flex: 1; }
.meter-camps li {
  position: absolute; left: 0; transform: translateY(50%);
  padding-left: 14px;
  border-left: 1px solid var(--line);
  line-height: 1.25;
}
.meter-camps li.reached { border-left-color: var(--glacier); }
.meter-camps b { display: block; font-size: 0.9rem; font-weight: 600; }
.meter-camps li.reached b { color: var(--glacier); }
.meter-camps span { display: block; font-size: 0.74rem; color: var(--muted); }
.meter-camps i { font-style: normal; font-family: var(--mono); font-size: 0.7rem; color: #5e6c76; }

/* ───────────────────────── give */

.give { background: var(--night); padding: 56px 0 72px; border-top: 1px solid var(--line); }
.luau-bar { max-width: 640px; margin: 0 auto 10px; }
.center-split { justify-content: center; margin-bottom: 36px; }
.center-split .status { margin-left: 0; }
.where { margin: 40px auto 0; }

.amounts { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 18px; }
.chip {
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--slate);
  color: var(--snow);
  font-family: var(--display); font-size: 1.05rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}
.chip:hover { border-color: var(--glacier); transform: translateY(-1px); }
.chip[aria-pressed="true"] { background: var(--glacier); border-color: var(--glacier); color: #06222f; }

.custom { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 52px; }
.custom > span { font-size: 0.88rem; color: var(--muted); }
.custom-input { display: flex; align-items: center; background: var(--slate); border: 1px solid var(--line); border-radius: 10px; padding: 0 12px; }
.custom-input:focus-within { border-color: var(--glacier); }
.custom-input i { font-style: normal; color: var(--muted); }
.custom-input input { width: 120px; }

input, textarea {
  background: transparent; border: 0; color: var(--snow);
  font: inherit; font-size: 0.98rem; padding: 11px 8px;
  width: 100%;
}
input:focus, textarea:focus { outline: none; }

.rails { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.rail {
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}
.rail-gfm { border-top: 3px solid var(--glacier); }
.rail-venmo { border-top: 3px solid var(--orange); }
.rail h3 { font-family: var(--display); font-size: 1.5rem; margin: 0 0 6px; text-transform: uppercase; letter-spacing: -0.01em; }
.rail h3 .handle { font-family: var(--mono); font-size: 0.78rem; color: var(--muted); text-transform: none; letter-spacing: 0; margin-left: 6px; }
.rail header p { color: var(--muted); font-size: 0.93rem; margin: 0 0 22px; }
.rail-qr {
  width: 180px; height: 180px; object-fit: contain;
  margin: 20px auto;
  border-radius: 10px; background: #fff; padding: 8px;
}

.logit { margin-top: 24px; border-top: 1px solid var(--line); padding-top: 18px; }
.logit summary { cursor: pointer; font-size: 0.9rem; color: var(--glacier); }
.logit summary::marker { color: var(--muted); }
.logit form { margin-top: 18px; display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field label em { font-style: normal; text-transform: none; letter-spacing: 0; }
.field > input, .field textarea { background: var(--night); border: 1px solid var(--line); border-radius: 10px; }
.field > input:focus, .field textarea:focus { border-color: var(--orange); }
.check { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; color: var(--muted); }
.check input { width: auto; padding: 0; }
.form-note { font-size: 0.88rem; margin: 0; min-height: 1.2em; }
.form-note.ok { color: var(--glacier); }
.form-note.err { color: var(--orange); }

/* ───────────────────────── wall */

.wall { padding: 90px 0; background: var(--ink); border-top: 1px solid var(--line); }
.wall-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; }
.wall-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  background: var(--slate); border: 1px solid var(--line); border-left: 3px solid var(--glacier);
  border-radius: 10px; padding: 14px 16px;
}
.wall-list li.venmo { border-left-color: var(--orange); }
.wall-name { font-weight: 600; font-size: 0.95rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wall-amt { font-family: var(--display); font-size: 1rem; color: var(--glacier); flex: none; }
.wall-list li.venmo .wall-amt { color: var(--orange); }
.wall-empty { display: block; color: var(--muted); border: 0 !important; background: none !important; text-align: center; }

/* ───────────────────────── why */

.why { padding: 96px 0; background: var(--night); border-top: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 64px; align-items: center; }
.why-figure { margin: 0; }
.why-figure img { border-radius: var(--r); aspect-ratio: 3 / 4; object-fit: cover; }
.quote {
  margin: 26px 0; padding: 18px 0 18px 22px;
  border-left: 3px solid var(--orange);
  font-size: 1.08rem; color: #dce6ec; font-style: italic;
}
.quote cite { display: block; margin-top: 10px; font-size: 0.82rem; font-style: normal; color: var(--muted); }

/* ───────────────────────── qr */

.qr { padding: 96px 0; background: var(--ink); border-top: 1px solid var(--line); }
.qr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.qr-card {
  margin: 0; background: var(--slate); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px; text-align: center;
}
.qr-card img { width: 170px; margin: 0 auto 20px; background: #fff; border-radius: 10px; padding: 10px; }
.qr-card h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.12rem; margin: 0 0 6px; }
.mono { font-family: var(--mono); font-size: 0.78rem; color: var(--glacier); margin: 0 0 10px; word-break: break-all; }
.qr-note { font-size: 0.84rem; color: var(--muted); margin: 0 0 14px; }
.qr-dl { font-size: 0.86rem; margin: 0; color: var(--muted); }
.copy-note { min-height: 1.4em; margin-top: 22px; font-size: 0.9rem; color: var(--glacier); }

/* ───────────────────────── footer */

.foot { padding: 60px 0 44px; background: var(--night); border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: auto 1fr; gap: 24px 48px; align-items: center; }
.foot-tag { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.86rem; margin: 12px 0 0; }
.foot-links { display: flex; flex-wrap: wrap; gap: 24px; justify-content: flex-end; }
.foot-links a { color: #cdd8df; text-decoration: none; font-size: 0.92rem; }
.foot-links a:hover { color: var(--glacier); }
.foot-fine { grid-column: 1 / -1; font-size: 0.78rem; color: #5e6c76; margin: 8px 0 0; max-width: 70ch; }

/* ───────────────────────── responsive */

@media (max-width: 980px) {
  .climb-grid { grid-template-columns: 1fr; gap: 56px; }
  .meter { height: 480px; padding-left: 40px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-figure img { aspect-ratio: 16 / 10; }
  .rails { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { padding-inline: 16px; }
  .nav-links a:not(.btn) { display: none; }
  .wrap { padding-inline: 18px; }
  .hero { min-height: 70vh; }
  .hero-inner { padding: 0 18px 48px; }
  .display { font-size: 12.6vw; letter-spacing: -0.055em; }
  .display .to { display: block; margin: 0.08em 0 0.12em; font-size: 0.28em; vertical-align: 0; }
  .eyebrow { letter-spacing: 0.14em; font-size: 0.7rem; }
  .lede { max-width: 24ch; }
  .split { justify-content: center; max-width: 100%; }
  .center-split .status { width: 100%; text-align: center; }
  .give .sub { max-width: 22ch; }
  .amounts { max-width: 100%; }
  .chip { padding: 12px 18px; font-size: 0.95rem; }
  .hero-stats { gap: 12px 30px; }
  .climb, .give, .wall, .why, .qr { padding: 64px 0; }
  .rail { padding: 22px; }
  .custom { flex-direction: column; gap: 8px; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; }
}

/* ───────────────────────── first iteration: one page, two steps */

.simple { background: var(--ink); }
.simple .display { font-size: clamp(2.6rem, 9vw, 5.2rem); margin: 0.06em 0 0.28em; }
.simple .lede { max-width: 46ch; margin: 0 0 10px; overflow-wrap: break-word; font-family: var(--serif); font-size: 1.25rem; }
.simple .story { max-width: 46ch; margin: 0 0 16px; color: #c5d0d6; font-family: var(--serif); font-size: 1.05rem; }
.simple .mission { max-width: 46ch; margin: 0 0 16px; color: var(--muted); font-family: var(--serif); font-style: italic; }

.film { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink); overflow: hidden; width: 100%; }
.film-track {
  display: flex;
  width: 100%;
  gap: 0;
}
.film-track img {
  flex: 1 1 0;
  min-width: 0;
  width: 0;
  height: 132px;
  object-fit: cover;
}

.simple .give { background: transparent; padding: 8px 0 28px; border: 0; }
.simple .give h2, .covers h2, .watch h2 {
  font-family: var(--display); text-transform: uppercase; letter-spacing: -0.02em;
  font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0 0 12px;
}
.covers-line { color: var(--muted); font-size: 0.92rem; margin: 8px 0 28px; max-width: 46ch; }
.yt { position: relative; width: 100%; max-width: 720px; aspect-ratio: 16 / 9; background: #000; }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.watch { margin: 0 0 36px; }

.top {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(7, 8, 10, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.top-stat { margin: 0; font-size: 0.88rem; color: var(--muted); white-space: nowrap; }
.top-stat b { color: var(--snow); font-family: var(--display); font-size: 1rem; font-weight: 400; }

.band { height: min(46vw, 480px); min-height: 300px; overflow: hidden; }
.band img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 48% 56%;
}

.sheet { width: 100%; max-width: 920px; margin: 0 auto; padding: 28px 22px 64px; }
.sheet, .sheet p, .sheet h1, .sheet h2, .sheet h3 { max-width: 100%; }

.statline { color: var(--muted); margin: 0 0 36px; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 36px; }
.steps > li { margin: 0; padding: 0; }
.steps h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.step-help { color: var(--muted); margin: 0 0 18px; max-width: 46ch; }

.rail-kicker {
  margin: 0 0 8px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
}
.rail-gfm .rail-kicker { color: var(--glacier); }
.rail-copy { min-height: 3.2em; color: #c2ced6; margin: 0; }
.rail .btn { margin-top: auto; }
.rail .handle { margin: 10px 0 0; font-family: var(--mono); font-size: 0.78rem; color: var(--muted); text-align: center; min-height: 1.2em; }
.simple .rail-qr { margin: 16px auto; }
.simple .custom { justify-content: flex-start; margin: 16px 0 0; }
.simple .amounts { justify-content: flex-start; }
.simple .where { margin: 40px 0 8px; max-width: 52ch; }
.simple .foot-fine { margin: 0; max-width: 52ch; }

/* ── mobile first (the phone in a luau pocket) ── */

.simple { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
.simple .nav-brand-text em { display: none; }
.simple .top { position: relative; padding: 10px 14px 12px; }
.simple .top { position: sticky; }
.top-progress {
  position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: #1b2228;
}
.top-progress i { display: block; height: 100%; width: 0; background: var(--glacier); transition: width 0.8s ease; }
.simple .display {
  font-size: clamp(2.4rem, 14vw, 3.4rem);
  margin: 0.04em 0 0.22em;
}
.simple .display .to {
  display: block; margin: 0.08em 0 0.1em; font-size: 0.28em; vertical-align: 0;
}
.simple .sheet { padding: 20px 16px 28px; text-align: center; }
.simple .display { margin-left: auto; margin-right: auto; }
.simple .lede,
.simple .event,
.simple .statline,
.simple .covers-line,
.simple .foot-fine { margin-left: auto; margin-right: auto; }
.simple .give h2,
.simple .watch h2 { text-align: center; }
.simple .rails { margin-left: auto; margin-right: auto; text-align: left; }
.simple .watch { display: flex; flex-direction: column; align-items: center; }
.simple .yt,
.simple .yt-frame { margin-left: auto; margin-right: auto; }
.simple .lede,
.simple .story,
.simple .event,
.simple .where,
.simple .foot-fine,
.simple .step-help { max-width: none; overflow-wrap: break-word; }
.simple .lede { font-size: 1.05rem; line-height: 1.35; }
.simple .event {
  display: block;
  margin: 0 auto 16px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.02rem;
  text-align: center;
  max-width: 36ch;
}
.simple .story { font-size: 1rem; }
.simple .eyebrow { letter-spacing: 0.14em; font-size: 0.68rem; }
.simple .rail-copy { min-height: 0; }
.simple .rails { grid-template-columns: 1fr; gap: 14px; }
.simple .rail { padding: 22px 18px 18px; }
.simple .give { padding: 4px 0 24px; }
.band { height: 58vw; min-height: 240px; max-height: 340px; position: relative; }
.band img { object-position: 44% 58%; }
.band-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, var(--ink) 0%, rgba(7,8,10,0) 42%);
}
.film-track img { height: 96px; min-width: 96px; flex: 1 0 96px; width: auto; }
.film { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rail-qr { width: 168px; height: 168px; }
.top-stat { font-size: 0.78rem; }
.btn-lg { min-height: 48px; width: 100%; }
.covers ul { max-width: none; }

.pull {
  margin: 8px 0 22px;
  padding: 4px 0 4px 14px;
  border-left: 2px solid var(--glacier);
}
.pull p { margin: 0; font-family: var(--serif); font-style: italic; color: #d5dee3; }
.pull-ans {
  font-style: normal !important;
  font-family: var(--display) !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 10px !important;
  color: var(--snow) !important;
}

.yt {
  position: relative; display: block; width: 100%;
  aspect-ratio: 16 / 9; padding: 0; border: 0; background: #000; cursor: pointer;
}
.yt img { width: 100%; height: 100%; object-fit: cover; }
.yt-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  background: var(--orange); color: #fff; font-family: var(--display);
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 12px 22px; border-radius: 999px;
}
.yt-frame { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }

.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(7, 8, 10, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.dock a {
  display: flex; align-items: center; justify-content: center;
  min-height: 48px; border-radius: 999px;
  text-decoration: none; color: #fff; font-weight: 700; font-size: 0.95rem;
}
.dock-venmo { background: var(--venmo); }
.dock-gfm { background: var(--glacier); color: #06222f !important; }

@media (hover: hover) {
  .rail:hover { border-color: #3a4650; transform: translateY(-2px); }
  .rail { transition: border-color 0.2s ease, transform 0.2s ease; }
}

@media (min-width: 800px) {
  .simple { padding-bottom: 0; }
  .simple .nav-brand-text em { display: block; }
  .simple .display { font-size: clamp(3.2rem, 7vw, 5.4rem); }
  .simple .display .to { display: inline; font-size: 0.42em; margin: 0 0.12em; vertical-align: 0.12em; }
  .simple .sheet { padding: 36px 24px 72px; text-align: center; }
  .simple .lede { font-size: 1.28rem; max-width: 28ch; }
  .simple .event { max-width: 36ch; }
  .simple .story { max-width: 46ch; }
  .simple .rails { grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; }
  .band { height: min(46vw, 480px); max-height: none; min-height: 320px; }
  .band img { object-position: 48% 56%; }
  .film { overflow: hidden; }
  .film-track { width: 100%; }
  .film-track img { height: 140px; min-width: 0; flex: 1 1 0; width: 0; }
  .dock { display: none; }
  .top-stat { font-size: 0.88rem; }
}

@media (prefers-reduced-motion: reduce) {

  .band img { animation: none; }
}
