/* ============================================================
   Music in Return — Website UI Kit styles
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg-paper); color: var(--ink); font-family: var(--font-ui); }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ===== Layout shell ===== */
.shell { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: 100%; max-width: var(--max-content); margin: 0 auto; padding: 0 32px; }
.section { padding: var(--s-9) 0; }
.section-tight { padding: var(--s-7) 0; }
.reading { max-width: var(--max-reading); }

/* ===== Header / nav ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  padding: 16px 24px;
  background: rgba(234, 246, 250, 0.78);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--max-content); margin: 0 auto; gap: 32px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-arch { width: 36px; height: 24px; flex-shrink: 0; }
.brand-name { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--ink); letter-spacing: -0.01em; white-space: nowrap; }
.brand-logo-img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; gap: 24px; align-items: center; flex-wrap: nowrap; }
.nav-links a { font-family: var(--font-ui); font-size: 14.5px; font-weight: 500; color: var(--ink-2); text-decoration: none; padding: 6px 0; position: relative; transition: color var(--dur-fast) var(--ease); white-space: nowrap; }
.nav-links a:hover { color: var(--tide-dark); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content:""; position:absolute; left:0; right:0; bottom:-2px; height: 2px; background: var(--tide); border-radius: 2px; }
.nav-cta { display:flex; gap: 10px; align-items: center; flex-shrink: 0; }

/* Hover-pill submenu (CKF-style) */
.nav-item-wrap { position: relative; display: inline-flex; flex-direction: column; align-items: center; }
.nav-with-caret { display: inline-flex; align-items: center; gap: 4px; }
.nav-with-caret .caret { transition: transform 220ms var(--ease); }
.nav-item-wrap:hover .nav-with-caret,
.nav-item-wrap.active .nav-with-caret { color: var(--ink); }
.nav-item-wrap:hover .nav-with-caret .caret,
.nav-item-wrap.active .nav-with-caret .caret { transform: rotate(180deg); }
.nav-item-wrap .sub-pill {
  position: absolute; top: 100%; left: 50%;
  transform: translate(-50%, -4px) scale(.96);
  margin-top: 10px;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 10px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(15,45,75,.12);
  opacity: 0; pointer-events: none;
  transition: opacity 220ms var(--ease), transform 280ms var(--ease);
  white-space: nowrap; z-index: 60;
}
.nav-item-wrap:hover .sub-pill { opacity: 1; transform: translate(-50%, 0) scale(1); pointer-events: auto; }
.nav-item-wrap .sub-pill::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
.nav-item-wrap .sub-pill a {
  font-family: var(--font-display); font-weight: 400; font-size: 16px;
  color: var(--ink-2); text-decoration: none;
  padding: 6px 16px; border-radius: 999px;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.nav-item-wrap .sub-pill a:hover { background: var(--mist-soft); color: var(--ink); }
.nav-item-wrap .sub-pill a.active { background: var(--ink); color: #fff; }
.nav-links a.nav-with-caret::after { content: none !important; }
.nav-cta .btn { white-space: nowrap; }

/* ===== Buttons ===== */
.btn {
  font-family: var(--font-ui); font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  border: 1px solid transparent; border-radius: var(--r-pill);
  padding: 13px 24px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  transition: all var(--dur-fast) var(--ease); text-decoration: none;
}
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-primary { background: var(--tide); color: #fff; }
.btn-primary:hover { background: var(--tide-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(91, 160, 176, .35); }
.btn-primary:active { transform: translateY(0); }
.btn-royal {
  background: #5BA0B0; color: #fff;
  box-shadow: 0 2px 0 rgba(15, 45, 75, .15), 0 8px 18px rgba(91, 160, 176, .3);
}
.btn-royal:hover {
  background: #7BC4D8;
  transform: translateY(-1px);
  box-shadow: 0 4px 0 rgba(15, 45, 75, .15), 0 12px 28px rgba(123, 196, 216, .55);
}
.btn-royal:active { background: #4A8FA0; transform: translateY(0); box-shadow: 0 1px 0 rgba(15, 45, 75, .2); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: #fff; }
.btn-donate { background: var(--wheat); color: var(--ink); }
.btn-donate:hover { background: var(--wheat-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(232, 216, 184, .55); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--mist-soft); }

/* ===== Hero ===== */
.hero { padding: 64px 0 96px; position: relative; }
.hero-eyebrow { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tide-dark); margin-bottom: 24px; display:flex; align-items:center; gap: 14px; }
.hero-eyebrow .rule { width: 32px; height: 1px; background: var(--mist); }
.hero h1 {
  font-family: "Playfair Display", "Source Serif 4", Georgia, serif; font-weight: 600;
  font-size: clamp(40px, 6.4vw, 84px); line-height: 1.08; letter-spacing: -0.01em;
  color: var(--ink); margin: 0 0 32px; max-width: 920px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--tide-dark); }

/* ===== Tagline flourish: the word "exchange" ===== */
.exchange-word {
  position: relative;
  display: inline-block;
  padding: 0 0.18em 0.18em;
  isolation: isolate;
  white-space: nowrap;
}
.exchange-word .exchange-text {
  font-style: italic;
  font-weight: 500;
  color: var(--tide-dark);
  position: relative;
  z-index: 1;
}
.exchange-arch {
  position: absolute;
  left: 0; right: 0; bottom: -0.18em;
  width: 100%; height: 0.42em;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}
.exchange-arch-upper,
.exchange-arch-lower {
  fill: none;
  stroke-linecap: round;
  stroke-width: 1.6;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: exchange-draw 900ms cubic-bezier(.5,.05,.2,1) both;
}
.exchange-arch-upper { stroke: var(--tide-dark); animation-delay: 300ms; }
.exchange-arch-lower { stroke: var(--mist); animation-delay: 500ms; opacity: .85; }
.exchange-dot {
  fill: var(--ink);
  transform: scale(0);
  transform-origin: center;
  transform-box: fill-box;
  animation: exchange-pop 360ms cubic-bezier(.34,1.56,.64,1) both;
}
.exchange-dot-l { animation-delay: 900ms; }
.exchange-dot-r { animation-delay: 1040ms; }
@keyframes exchange-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes exchange-pop {
  to { transform: scale(1); }
}
.exchange-note {
  position: absolute;
  top: -0.05em;
  right: -0.55em;
  width: 0.55em; height: 0.7em;
  color: var(--tide-dark);
  opacity: 0;
  transform: translateY(4px) rotate(8deg);
  transition: opacity .35s ease, transform .55s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.exchange-word:hover .exchange-note {
  opacity: 1;
  transform: translateY(-0.5em) rotate(-6deg);
}
/* Interactive squiggly underline */
.exchange-squiggle {
  position: absolute;
  left: -2%;
  right: -2%;
  width: 104%;
  bottom: -0.22em;
  height: 0.5em;
  color: var(--tide-dark);
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}
.exchange-squiggle-path {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  transition: stroke-dashoffset 650ms cubic-bezier(.5,.05,.2,1);
}
.exchange-word:hover .exchange-squiggle-path,
.exchange-word:focus-within .exchange-squiggle-path {
  stroke-dashoffset: 0;
  animation: exchange-wiggle 2.4s ease-in-out 650ms infinite;
}
@keyframes exchange-wiggle {
  0%, 100% { transform: translateY(0); }
  25%      { transform: translateY(-1px); }
  50%      { transform: translateY(0); }
  75%      { transform: translateY(1px); }
}
@media (prefers-reduced-motion: reduce) {
  .exchange-text {
    animation: none;
    background-size: 100% 100%;
  }
  .exchange-squiggle-path { transition: none; }
  .exchange-word:hover .exchange-squiggle-path { animation: none; }
}
.hero p.lead { font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.55; color: var(--ink-2); max-width: 620px; margin: 0 0 36px; text-wrap: pretty; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-actions .quiet { font-family: var(--font-ui); font-size: 13.5px; color: var(--ink-3); margin-left: 8px; }

.hero-photo {
  margin-top: 64px; border-radius: var(--r-lg); overflow: hidden;
  height: 460px; background: var(--mist-soft); position: relative;
  background-image: url('assets/photo-performance-01.png');
  background-size: cover; background-position: center;
  box-shadow: var(--sh-3);
}
.hero-photo::after {
  content:""; position:absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,45,75,.45), rgba(15,45,75,0) 50%);
}
.hero-photo-cap {
  position: absolute; left: 32px; bottom: 28px; right: 32px; z-index: 1; color: #fff;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.hero-photo-cap .quote { font-family: var(--font-display); font-style: italic; font-size: 22px; line-height: 1.3; max-width: 520px; text-wrap: balance; }
.hero-photo-cap .meta { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; opacity: .9; }

/* ===== HeroVoices — rotating quotes over a full-bleed photo ===== */
.hero-voices {
  position: relative; margin-top: 64px; border-radius: var(--r-lg);
  overflow: hidden; height: 460px; background: var(--ink);
}
.hero-voices > .photo-slot, .hero-voices .photo-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-voices-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(15,45,75,.82) 0%, rgba(15,45,75,.35) 45%, rgba(15,45,75,.15) 100%);
}
.hero-voices-body {
  position: absolute; left: 40px; right: 40px; bottom: 34px; z-index: 2; color: #fff;
}
.hero-voices-stage { position: relative; display: grid; min-height: 130px; align-items: end; }
.hero-voices-q {
  grid-area: 1 / 1; margin: 0; max-width: 720px;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.3; color: #fff; text-wrap: balance;
  text-shadow: 0 2px 20px rgba(15,45,75,.4);
  opacity: 0; transform: translateY(12px); transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  pointer-events: none;
}
.hero-voices-q.on { opacity: 1; transform: none; pointer-events: auto; }
.hero-voices-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.hero-voices-where {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--wheat); display: inline-flex; align-items: center; gap: 7px; transition: gap 200ms var(--ease);
}
.hero-voices-where:hover { gap: 12px; }
.hero-voices-dots { display: flex; gap: 8px; }
.hero-voices-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.3); cursor: pointer; padding: 0; transition: background 240ms var(--ease), transform 240ms var(--ease); }
.hero-voices-dot.on { background: var(--wheat); transform: scale(1.3); }
@media (max-width: 640px) {
  .hero-voices { height: 380px; }
  .hero-voices-body { left: 24px; right: 24px; bottom: 24px; }
}

/* ===== Live counter ===== */
.counter-band { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: var(--s-7) 0; }
.counter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.counter-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .counter-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .counter-grid-4 .counter-cell:nth-child(3) { border-left: none; }
}
.counter-cell { padding: 8px 24px; text-align: left; border-left: 1px solid var(--mist); }
.counter-cell:first-child { border-left: none; }
.counter-num { font-family: var(--font-display); font-weight: 400; font-size: 64px; line-height: 1; color: var(--ink); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.counter-num .pulse { display: inline-block; }
.counter-label { font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tide-dark); margin-top: 14px; }
.counter-since { font-family: var(--font-ui); font-size: 13px; color: var(--ink-3); margin-top: 6px; }

/* ===== GoalMeter — animated goal progress ===== */
.goalmeter { background: color-mix(in oklab, var(--tide) 12%, var(--bg-paper)); color: var(--ink); padding: clamp(48px, 6vw, 72px) 0; position: relative; overflow: hidden; }
.goalmeter::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 320px at 15% 20%, color-mix(in oklab, var(--tide) 14%, transparent), transparent 70%),
             radial-gradient(600px 300px at 90% 90%, color-mix(in oklab, var(--wheat) 18%, transparent), transparent 70%);
}
.goalmeter-inner { position: relative; display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: center; max-width: 1000px; margin: 0 auto; }
.goalmeter-ring-wrap { position: relative; width: 240px; height: 240px; justify-self: center; }
.goalmeter-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.gm-track { fill: none; stroke: color-mix(in oklab, var(--ink) 12%, transparent); stroke-width: 14; }
.gm-fill { fill: none; stroke-width: 14; stroke-linecap: round;
  stroke: var(--tide-dark); transition: stroke-dashoffset 1500ms cubic-bezier(.2,.8,.2,1); }
.goalmeter-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.gm-num { font-family: var(--font-display); font-weight: 500; font-size: 72px; line-height: 1; letter-spacing: -.03em; color: var(--ink); font-variant-numeric: tabular-nums; }
.gm-of { font-family: var(--font-ui); font-size: 14px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--tide-dark); margin-top: 8px; }
.goalmeter-copy .eyebrow { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--tide-dark); margin-bottom: 16px; display: block; }
.goalmeter-copy h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.14; letter-spacing: -.01em; margin: 0 0 14px; color: var(--ink); text-wrap: balance; }
.goalmeter-copy p { font-family: var(--font-display); font-size: 17px; line-height: 1.55; color: var(--ink-2); margin: 0 0 24px; max-width: 500px; text-wrap: pretty; }
.goalmeter-track2 { position: relative; height: 8px; background: color-mix(in oklab, var(--ink) 10%, transparent); border-radius: 999px; margin: 0 0 32px; max-width: 520px; }
.goalmeter-track2-fill { height: 100%; background: linear-gradient(90deg, var(--wheat-dark), var(--tide-dark)); border-radius: 999px; transition: width 1500ms cubic-bezier(.2,.8,.2,1); }
.goalmeter-track2-label { position: absolute; right: 0; top: 16px; font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
@media (max-width: 860px) {
  .goalmeter-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .goalmeter-copy p, .goalmeter-track2 { margin-left: auto; margin-right: auto; }
  .goalmeter-ring-wrap { width: 240px; height: 240px; }
}

/* ===== RoomQuiz — "Could you play a room?" ===== */
.roomquiz { padding: var(--s-7, 80px) 0; background: color-mix(in oklab, var(--wheat) 12%, var(--bg-paper)); }
.roomquiz-card { display: grid; grid-template-columns: 300px 1fr; background: var(--bg-card, #fff); border: 1px solid var(--mist); border-radius: 22px; overflow: hidden; box-shadow: 0 30px 70px -30px rgba(15,45,75,.28); min-height: 380px; }
.roomquiz-aside { background: linear-gradient(165deg, var(--tide-dark), var(--ink)); color: #fff; padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; gap: 14px; position: relative; }
.roomquiz-aside svg, .roomquiz-aside .arch-logo { width: 40px; height: auto; }
.roomquiz-aside-q { font-family: var(--font-display); font-weight: 500; font-size: 34px; line-height: 1.08; letter-spacing: -.01em; }
.roomquiz-aside-sub { font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--wheat); }
.roomquiz-main { padding: 44px 48px; display: flex; flex-direction: column; justify-content: center; }
.roomquiz-progress { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; }
.rq-dot { width: 26px; height: 5px; border-radius: 999px; background: var(--mist); transition: background 300ms var(--ease); }
.rq-dot.done { background: var(--tide-dark); }
.rq-step-label { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-left: 8px; }
@keyframes rqStepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.roomquiz-step, .roomquiz-result { animation: rqStepIn 420ms cubic-bezier(.2,.8,.2,1); }
.roomquiz-step h3, .roomquiz-result h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 3vw, 32px); line-height: 1.2; color: var(--ink); margin: 0 0 22px; letter-spacing: -.01em; text-wrap: balance; }
.rq-options { display: flex; flex-wrap: wrap; gap: 10px; }
.rq-options--grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.rq-opt { font-family: var(--font-ui); font-size: 15px; font-weight: 500; text-align: left; padding: 15px 20px; border-radius: 12px; border: 1.5px solid var(--mist); background: var(--bg-paper); color: var(--ink); cursor: pointer; transition: border-color 200ms var(--ease), background 200ms var(--ease), transform 200ms var(--ease), box-shadow 200ms var(--ease); }
.rq-opt:hover { border-color: var(--tide); background: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -14px rgba(15,45,75,.3); }
.rq-opt.sel { border-color: var(--tide-dark); background: color-mix(in oklab, var(--tide) 12%, transparent); }
.rq-back { align-self: flex-start; margin-top: 22px; background: none; border: none; font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--ink-3); cursor: pointer; padding: 4px 0; transition: color 180ms var(--ease); }
.rq-back:hover { color: var(--tide-dark); }
.roomquiz-result .eyebrow { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--tide-dark); display: block; margin-bottom: 10px; }
.rq-result-num { font-family: var(--font-display); font-weight: 500; font-size: clamp(72px, 10vw, 108px); line-height: .9; color: var(--tide-dark); letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.roomquiz-result h3 { margin-top: 6px; }
.roomquiz-result h3 em { font-style: italic; color: var(--tide-dark); }
.roomquiz-result p { font-family: var(--font-display); font-size: 17px; line-height: 1.6; color: var(--ink-2); margin: 0 0 26px; max-width: 520px; text-wrap: pretty; }
.roomquiz-result p strong { color: var(--ink); font-weight: 600; }
.rq-result-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
@media (max-width: 720px) {
  .roomquiz-card { grid-template-columns: 1fr; }
  .roomquiz-aside { padding: 28px 30px; flex-direction: row; align-items: center; flex-wrap: wrap; gap: 10px 16px; }
  .roomquiz-aside-q { font-size: 24px; }
  .roomquiz-main { padding: 32px 28px; }
  .rq-options--grid { grid-template-columns: 1fr; }
}

/* ===== Section header ===== */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; }
.sec-head .eyebrow { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--tide-dark); margin-bottom: 14px; display: block; }
.sec-head h2 { font-family: var(--font-display); font-weight: 500; font-size: 44px; line-height: 1.1; color: var(--ink); margin: 0; max-width: 640px; letter-spacing: -.01em; text-wrap: balance; }
.sec-head .sec-link { font-family: var(--font-ui); font-size: 14px; font-weight: 600; color: var(--tide-dark); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; }
.sec-head .sec-link:hover { color: var(--ink); }

/* ===== Card grid (residencies, field notes) ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-3--single { grid-template-columns: minmax(0, 720px); justify-content: start; }
.grid-3--pair { grid-template-columns: repeat(2, 1fr); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-sm);
  box-shadow: var(--sh-2); padding: 28px;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: inherit; cursor: pointer;
}
.card:hover { box-shadow: var(--sh-3); transform: translateY(-2px); }
.card .eyebrow { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tide-dark); }
.card h3 { font-family: var(--font-display); font-weight: 500; font-size: 24px; line-height: 1.2; margin: 0; color: var(--ink); text-wrap: pretty; }
.card .meta { font-family: var(--font-ui); font-size: 13.5px; color: var(--ink-3); display: flex; align-items: center; gap: 10px; }
.card .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--mist); }
.card .body { font-family: var(--font-ui); font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.card.has-photo { padding: 0; overflow: hidden; }
.card.has-photo .photo { height: 200px; background: var(--mist-soft); background-size: cover; background-position: center; transition: transform var(--dur-slow) var(--ease); }
.card.has-photo:hover .photo { transform: scale(1.03); }
.card.has-photo .body-wrap { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 10px; }

/* ===== Pull quote ===== */
.quote-block { padding: var(--s-9) 0; }
.quote-block blockquote { margin: 0; max-width: 820px; }
.quote-block .rule { width: 32px; height: 1px; background: var(--mist); margin-bottom: 24px; }
.quote-block .q { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 40px; line-height: 1.2; color: var(--ink); text-wrap: balance; letter-spacing: -.005em; }
.quote-block .a { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-top: 24px; }

/* ===== Donate band ===== */
.donate-band { background: var(--bg-warm); padding: var(--s-9) 0; border-radius: var(--r-lg); margin: var(--s-9) 0; position: relative; overflow: hidden; }
.donate-band .container { position: relative; z-index: 1; }
.donate-band .arch-bg { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); opacity: .3; width: 360px; }
.donate-band h2 { font-family: var(--font-display); font-weight: 500; font-size: 44px; line-height: 1.1; color: var(--ink); margin: 0 0 20px; max-width: 600px; letter-spacing: -.01em; }
.donate-band p { font-family: var(--font-display); font-weight: 400; font-size: 19px; line-height: 1.55; color: var(--ink-2); max-width: 540px; margin: 0 0 28px; }
.donate-tiers { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.tier {
  background: #fff; border: 1px solid rgba(15,45,75,.12); border-radius: var(--r-sm);
  padding: 18px 22px; min-width: 160px; cursor: pointer;
  transition: all var(--dur-fast) var(--ease); text-align: left;
  font-family: var(--font-ui);
}
.tier:hover, .tier.selected { border-color: var(--ink); box-shadow: var(--sh-2); }
.tier.selected { background: var(--ink); color: #fff; }
.tier .amt { font-family: var(--font-display); font-weight: 500; font-size: 24px; display: block; margin-bottom: 4px; }
.tier .what { font-size: 12.5px; color: inherit; opacity: .8; line-height: 1.35; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: var(--mist-soft); padding: 80px 0 32px; margin-top: var(--s-9); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer h4 { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--wheat); margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--mist-soft); text-decoration: none; font-family: var(--font-ui); font-size: 14.5px; }
.footer a:hover { color: #fff; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--mist); margin: 16px 0 0; max-width: 320px; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--font-ui); font-size: 13px; color: rgba(210,226,234,.7); }

/* ===== Form ===== */
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row label { font-family: var(--font-ui); font-size: 13.5px; font-weight: 600; color: var(--ink); }
.input, .textarea, .select {
  width: 100%; padding: 12px 14px; font-family: var(--font-ui); font-size: 15px; color: var(--ink);
  background: #fff; border: 1px solid var(--mist); border-radius: var(--r-xs);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--tide); box-shadow: 0 0 0 3px rgba(91,160,176,.2);
}
.textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.help { font-family: var(--font-ui); font-size: 12.5px; color: var(--ink-3); margin-top: 4px; }

/* ===== Book Us / Inquiry Form ===== */
.bookus-expect-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -.01em;
}
.bookus-expect {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bookus-expect li {
  display: flex;
  gap: 14px;
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  padding: 22px 22px 22px 20px;
  background: color-mix(in oklab, var(--mist-soft) 60%, transparent);
  border: 1px solid var(--mist);
  border-radius: var(--r-md);
}
.bookus-expect li i {
  color: var(--tide-dark);
  font-size: 22px;
  margin-top: 2px;
  flex-shrink: 0;
}
.bookus-expect li b { color: var(--ink); }
@media (max-width: 900px) {
  .bookus-expect { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .bookus-expect { grid-template-columns: 1fr; }
}

.inquiry-form {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 48px 56px 56px;
  box-shadow: var(--sh-1);
}
.inquiry-form-head {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--mist);
}
.inquiry-form-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 10px;
}
.inquiry-form-head p {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--ink-3);
  margin: 0;
}
.req { color: var(--tide-dark); font-weight: 600; }

.if-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.if-label {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.005em;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.if-label-hint {
  font-weight: 400;
  font-size: 13.5px;
  color: var(--ink-3);
}
.if-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-ui);
  font-size: 15.5px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--mist);
  border-radius: var(--r-sm, 8px);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.if-input::placeholder { color: var(--ink-3); opacity: .7; }
.if-input:hover { border-color: color-mix(in oklab, var(--tide) 50%, var(--mist)); }
.if-input:focus {
  outline: none;
  border-color: var(--tide-dark);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--tide) 20%, transparent);
}
.if-textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.if-textarea-lg { min-height: 220px; }

.if-select-wrap { position: relative; }
.if-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  cursor: pointer;
}
.if-select-caret {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tide-dark);
  pointer-events: none;
}

.if-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.if-grid-2 .if-row { margin-bottom: 26px; }
@media (max-width: 640px) {
  .if-grid-2 { grid-template-columns: 1fr; gap: 0; }
  .inquiry-form { padding: 32px 24px 36px; }
}

.if-help {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--ink-3);
  margin: 4px 0 0;
}
.if-counter { text-align: right; }
.if-counter.over { color: #B0432A; font-weight: 600; }

.if-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--mist);
  flex-wrap: wrap;
}
.if-submit-note {
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: var(--ink-3);
}

.inquiry-thanks { text-align: center; padding: 24px 0 12px; }
.inquiry-thanks h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  color: var(--ink);
  margin: 0 0 12px;
}
.inquiry-thanks p {
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}
.inquiry-thanks a { color: var(--tide-dark); }

/* ===== Tag chip ===== */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: 12px; font-weight: 500;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: var(--mist-soft); color: var(--ink);
}
.tag.tide { background: var(--tide-soft); }
.tag.warm { background: var(--bg-warm); }
.tag.outline { background: transparent; border: 1px solid var(--mist); }
.tag .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .7; }

/* ===== Mission moment ===== */
.mission { padding: var(--s-9) 0; }
.mission-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; }
.mission .eyebrow { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--tide-dark); margin-bottom: 18px; }
.mission h2 { font-family: var(--font-display); font-weight: 500; font-size: 44px; line-height: 1.1; color: var(--ink); margin: 0; letter-spacing: -.01em; text-wrap: balance; }
.mission p { font-family: var(--font-display); font-weight: 400; font-size: 20px; line-height: 1.6; color: var(--ink-2); margin: 0 0 18px; text-wrap: pretty; }
.mission p:last-child { margin-bottom: 0; }

/* ===== VideoSlot ===== */
.video-slot-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.video-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--mist-soft);
  border: 2px dashed color-mix(in oklab, var(--tide) 50%, var(--mist));
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.video-slot.over {
  border-color: var(--tide-dark);
  background: color-mix(in oklab, var(--tide) 14%, var(--mist-soft));
  transform: translateY(-1px);
}
.video-slot.has-video {
  border-style: solid;
  border-color: var(--mist);
  background: #0F1B2A;
}
.video-slot-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #0F1B2A;
}
.video-slot-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  color: var(--ink-2);
  text-align: center;
}
.video-slot-icon {
  color: var(--tide-dark);
  margin-bottom: 6px;
}
.video-slot-empty-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.video-slot-empty-hint {
  font-size: 14px;
  color: var(--ink-3);
  max-width: 380px;
  line-height: 1.45;
}
.video-slot-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-ui);
}
.video-slot-caption {
  font-size: 13.5px;
  color: var(--ink-3);
  font-style: italic;
}
.video-slot-actions { display: inline-flex; gap: 16px; align-items: baseline; }
.video-slot-replace {
  font-size: 13px;
  font-weight: 600;
  color: var(--tide-dark);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.video-slot-replace:hover { color: var(--ink); }
.video-slot-remove {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.video-slot-remove:hover { color: var(--ink); }

/* ===== Gallery videos section ===== */
.gallery-videos { padding-top: 24px; }
.gallery-videos-lead {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--ink-3);
  margin: -8px 0 28px;
  max-width: 620px;
  line-height: 1.55;
}
.gallery-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 28px;
}
@media (max-width: 760px) {
  .gallery-video-grid { grid-template-columns: 1fr; gap: 28px; }
}
.gallery-video-cell {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery-video-cell-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.gallery-video-caption-input {
  flex: 1;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-style: italic;
  color: var(--ink-3);
  background: transparent;
  border: none;
  border-bottom: 1px dashed transparent;
  padding: 4px 0;
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.gallery-video-caption-input:hover { border-bottom-color: var(--mist); }
.gallery-video-caption-input:focus {
  outline: none;
  border-bottom-color: var(--tide-dark);
  color: var(--ink-2);
  font-style: normal;
}
.gallery-video-cell-remove {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: .08em;
  flex-shrink: 0;
}
.gallery-video-cell-remove:hover { color: var(--ink); }
.gallery-video-add-wrap {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.gallery-video-add {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--tide-dark);
  background: #fff;
  border: 1.5px dashed color-mix(in oklab, var(--tide) 50%, var(--mist));
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.gallery-video-add:hover {
  border-color: var(--tide-dark);
  background: color-mix(in oklab, var(--tide) 10%, transparent);
  color: var(--ink);
}
.video-slot-filename { font-weight: 400; color: var(--ink-3); }
.video-slot-warn { color: #B0432A; font-weight: 600; font-style: normal; }
.cal-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--mist); }
.cal-row {
  display: grid; grid-template-columns: 110px 1fr auto auto; gap: 24px; align-items: center;
  padding: 24px 8px; border-bottom: 1px solid var(--border); cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
}
.cal-row:hover { background: var(--mist-soft); }
.cal-date { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--ink); }
.cal-date .day { font-size: 32px; line-height: 1; display: block; font-weight: 400; }
.cal-date .month { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tide-dark); margin-top: 4px; display: block; }
.cal-where h4 { font-family: var(--font-display); font-weight: 500; font-size: 22px; margin: 0 0 4px; color: var(--ink); }
.cal-where .loc { font-family: var(--font-ui); font-size: 13.5px; color: var(--ink-3); display: flex; align-items: center; gap: 6px; }
.cal-rsvp { font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--tide-dark); }

/* Expandable calendar items */
.cal-item { border-bottom: 1px solid var(--border); }
.cal-item .cal-row { border-bottom: none; padding: 24px 8px; }
.cal-toggle {
  color: var(--tide-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--tide) 12%, transparent);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.cal-item.open .cal-toggle { background: color-mix(in oklab, var(--tide) 22%, transparent); }
.cal-item.open { background: color-mix(in oklab, var(--mist-soft) 55%, transparent); }
.cal-detail {
  padding: 8px 8px 32px;
  animation: cal-detail-in .28s ease both;
}
@keyframes cal-detail-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cal-detail-inner {
  display: grid;
  grid-template-columns: 110px 1fr 1fr;
  gap: 24px;
  align-items: flex-start;
}
.cal-detail-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cal-detail-inner > .cal-detail-col:first-child { grid-column: 2; }
.cal-detail-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tide-dark);
  margin-top: 4px;
}
.cal-detail-eyebrow:first-child { margin-top: 0; }
.cal-detail-when {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.cal-detail-body {
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
  white-space: pre-wrap;
}
.cal-detail-foot {
  margin-top: 20px;
  padding-left: 134px;
}
.cal-detail-cta {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--tide-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cal-detail-cta:hover { color: var(--ink); }
@media (max-width: 720px) {
  .cal-detail-inner { grid-template-columns: 1fr; }
  .cal-detail-inner > .cal-detail-col:first-child { grid-column: 1; }
  .cal-detail-foot { padding-left: 0; }
}

/* Reorder mode */
.cal-toolbar {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.cal-reorder-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  font-family: var(--font-ui); font-size: 13.5px; font-weight: 600;
  color: var(--ink-2);
  background: #fff;
  border: 1.5px solid var(--mist);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.cal-reorder-toggle:hover { border-color: var(--tide); color: var(--ink); }
.cal-reorder-toggle.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.cal-reorder-hint {
  font-family: var(--font-ui); font-size: 13px; color: var(--ink-3); font-style: italic;
}
.cal-list.reorder-mode .cal-row { cursor: grab; }
.cal-list.reorder-mode .cal-row:active { cursor: grabbing; }
.cal-list.reorder-mode .cal-row { grid-template-columns: 32px 110px 1fr auto auto; }
.cal-drag-handle {
  color: var(--ink-3);
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 6px;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.cal-list.reorder-mode .cal-row:hover .cal-drag-handle { color: var(--tide-dark); background: var(--mist-soft); }
.cal-item.dragging { opacity: 0.4; }
.cal-item.drop-target { box-shadow: inset 0 3px 0 0 var(--tide-dark); }
.cal-reorder-arrows {
  display: inline-flex; gap: 4px;
}
.cal-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--mist);
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.cal-arrow:hover:not(:disabled) {
  border-color: var(--tide-dark);
  color: var(--tide-dark);
}
.cal-arrow:disabled { opacity: 0.35; cursor: not-allowed; }

/* ===== Filters ===== */
.filter-bar { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.filter {
  font-family: var(--font-ui); font-size: 13px; font-weight: 500; color: var(--ink-2);
  padding: 7px 14px; border-radius: var(--r-pill); border: 1px solid var(--mist); background: transparent; cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.filter:hover { background: var(--mist-soft); }
.filter.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ===== Page header ===== */
.page-header { padding: 80px 0 48px; }
.page-header .eyebrow { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--tide-dark); margin-bottom: 18px; display: inline-flex; align-items: center; gap: 12px; }
.page-header .eyebrow .rule { width: 24px; height: 1px; background: var(--mist); }
.page-header h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 5vw, 64px); line-height: 1.1; letter-spacing: -.015em; color: var(--ink); margin: 0 0 24px; max-width: 800px; text-wrap: balance; }
.page-header h1 em { font-style: italic; color: var(--tide-dark); }
.page-header p { font-family: var(--font-display); font-weight: 400; font-size: 21px; line-height: 1.55; color: var(--ink-2); max-width: 640px; margin: 0; text-wrap: pretty; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 16px; }
.gallery-tile { background: var(--mist-soft); border-radius: var(--r-sm); overflow: hidden; cursor: pointer; position: relative; }
.gallery-tile.tall { grid-row: span 2; }
.gallery-tile.wide { grid-column: span 2; }
.gallery-tile .tile-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform var(--dur-slow) var(--ease); }
.gallery-tile:hover .tile-img { transform: scale(1.04); }
.gallery-tile .tile-cap { position: absolute; left: 16px; right: 16px; bottom: 16px; color: #fff; opacity: 0; transition: opacity var(--dur-fast) var(--ease); z-index: 2; }
.gallery-tile::after { content:""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,45,75,.7), transparent 45%); opacity: 0; transition: opacity var(--dur-fast) var(--ease); }
.gallery-tile:hover::after { opacity: 1; }
.gallery-tile:hover .tile-cap { opacity: 1; }
.gallery-tile .tile-cap .where { font-family: var(--font-display); font-style: italic; font-size: 18px; }
.gallery-tile .tile-cap .play { font-family: var(--font-ui); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .85; margin-top: 4px; }

/* Photo slots inside the gallery */
.gallery-photos .gallery-tile { cursor: default; background: transparent; }
.gallery-tile.photo-tile { overflow: visible; }
.gallery-tile.photo-tile::after { content: none; } /* don't block drag/drop on photo tiles */
.gallery-tile.photo-tile .tile-cap { display: none; }
.photo-slot {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--mist-soft);
  border: 2px dashed color-mix(in oklab, var(--tide) 50%, var(--mist));
  border-radius: var(--r-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.photo-slot:focus { outline: none; border-color: var(--tide-dark); }
.photo-slot.over {
  border-color: var(--tide-dark);
  background: color-mix(in oklab, var(--tide) 14%, var(--mist-soft));
}
.photo-slot.has-photo {
  border: 1px solid var(--mist);
  background: #0F1B2A;
  cursor: default;
}
.photo-slot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-slot-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px;
  text-align: center;
  pointer-events: none;
  font-family: var(--font-ui);
  color: var(--ink-2);
}
.photo-slot-icon { color: var(--tide-dark); margin-bottom: 4px; }
.photo-slot-empty-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.photo-slot-empty-hint {
  font-size: 12.5px;
  color: var(--ink-3);
}
.photo-slot-warn {
  font-size: 11px;
  color: #B0432A;
  font-weight: 600;
  margin-top: 4px;
}
.photo-slot-remove {
  position: absolute;
  top: 8px; right: 8px;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: rgba(15, 27, 42, .72);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  z-index: 3;
}
.photo-slot:hover .photo-slot-remove,
.photo-slot:focus-within .photo-slot-remove { opacity: 1; }
.photo-slot-remove:hover { background: rgba(15, 27, 42, .95); }

.gallery-tile-remove {
  position: absolute;
  top: -10px; right: -10px;
  width: 26px; height: 26px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--mist);
  color: var(--ink-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  z-index: 4;
  box-shadow: var(--sh-1);
}
.gallery-tile.photo-tile:hover .gallery-tile-remove { opacity: 1; }
.gallery-tile-remove:hover { color: #B0432A; border-color: #B0432A; }

.gallery-add-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.gallery-add {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--tide-dark);
  background: #fff;
  border: 1.5px dashed color-mix(in oklab, var(--tide) 50%, var(--mist));
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.gallery-add:hover {
  border-color: var(--tide-dark);
  background: color-mix(in oklab, var(--tide) 10%, transparent);
  color: var(--ink);
}
.gallery-add.ghost {
  border-style: solid;
  border-color: var(--mist);
  color: var(--ink-3);
  background: transparent;
  font-weight: 500;
}
.gallery-add.ghost:hover { color: var(--ink); border-color: var(--tide-dark); }

/* ===== Problem section — Home ===== */
.problem-home {
  position: relative;
  background: color-mix(in oklab, var(--mist-soft) 70%, transparent);
  overflow: hidden;
}
.problem-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 200px at 30% 0%, color-mix(in oklab, var(--wheat) 18%, transparent), transparent 70%),
    radial-gradient(900px 240px at 80% 100%, color-mix(in oklab, var(--tide) 12%, transparent), transparent 70%);
  pointer-events: none;
}
.problem-home > .container { position: relative; }
.problem-home-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.problem-home-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  position: relative;
}
.problem-home--interactive .problem-home-eyebrow::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -8px;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tide-dark);
  opacity: 0;
  transition: opacity 320ms var(--ease);
}
.problem-home--interactive.is-hover .problem-home-eyebrow::after {
  opacity: 1;
  animation: phPulseDot 1.6s ease-in-out infinite;
}
@keyframes phPulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,138,154,0.45); }
  50%      { box-shadow: 0 0 0 10px rgba(74,138,154,0); }
}

.problem-home-h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 28px;
  text-wrap: balance;
}
.problem-home-h2 em { font-style: italic; color: var(--tide-dark); }

/* ---- Interactive headline: words cascade in on hover + cursor spotlight ---- */
.problem-home-h2--interactive {
  position: relative;
  cursor: default;
  isolation: isolate;
  padding: 6px 0 12px;
  word-spacing: 0.02em;
}
.problem-home-h2--interactive .ph-word {
  display: inline-block;
  position: relative;
  margin: 0 0.01em;
  transition:
    opacity 520ms var(--ease) calc(var(--i, 0) * 70ms),
    filter  520ms var(--ease) calc(var(--i, 0) * 70ms),
    transform 520ms var(--ease) calc(var(--i, 0) * 70ms);
  opacity: 0.16;
  filter: blur(2.5px);
  transform: translateY(8px);
  color: var(--ink);
}
.problem-home-h2--interactive .ph-word--em {
  font-style: italic;
  color: var(--tide-dark);
}
.problem-home--interactive.is-hover .ph-word {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* The italicized "walks in the door." gets a hand-drawn arch underline that draws on after the cascade. */
.problem-home-h2--interactive .ph-word--em .ph-word-inner {
  position: relative;
}
.problem-home-h2--interactive .ph-word--em .ph-word-inner::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  bottom: -6px;
  height: 6px;
  background:
    radial-gradient(8px 6px at 50% 100%, var(--tide) 60%, transparent 65%) 0 0 / 14px 6px no-repeat,
    linear-gradient(90deg, transparent, var(--tide) 20%, var(--tide) 80%, transparent) center/100% 2px no-repeat;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform 600ms var(--ease) 900ms, opacity 200ms var(--ease) 900ms;
}
.problem-home--interactive.is-hover .ph-word--em:last-of-type .ph-word-inner::after {
  /* draw a single arch under the whole "walks in the door." run */
}
/* A single arch spanning the full em-phrase: place it on .ph-word--em that is first of run, span full width via JS? Simpler: underline under each em word. */
.problem-home--interactive.is-hover .ph-word--em .ph-word-inner::after {
  transform: scaleX(1);
  opacity: 1;
}

/* Cursor spotlight overlay — a brighter "lit by flashlight" effect on hover */
.ph-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(220px 160px at var(--mx, 50%) var(--my, 50%),
    rgba(255, 250, 235, 0.55) 0%,
    rgba(255, 250, 235, 0.18) 35%,
    transparent 70%);
  mix-blend-mode: lighten;
  opacity: var(--spot-on, 0);
  transition: opacity 240ms var(--ease);
  z-index: -1;
  border-radius: 24px;
}

.problem-home-body {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 auto 48px;
  text-wrap: pretty;
}
.problem-home-body em { font-style: italic; color: var(--tide-dark); font-weight: 500; }

/* ============================================
   The data part — three interactive stat cards
   ============================================ */
.ps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 56px;
  text-align: left;
}
.ps-card {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  border-radius: 18px;
  padding: 28px 24px 22px;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease),
              background 360ms var(--ease), border-color 360ms var(--ease);
}
.ps-card::before {
  /* subtle paper-grain wash that brightens on hover */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 200px at 50% -20%, color-mix(in oklab, var(--wheat) 22%, transparent), transparent 60%);
  opacity: 0;
  transition: opacity 360ms var(--ease);
  pointer-events: none;
}
.ps-card:hover, .ps-card.is-active, .ps-card:focus-visible {
  background: var(--bg-card);
  border-color: var(--tide);
  box-shadow: 0 24px 48px -16px rgba(15,45,75,0.18), 0 2px 6px rgba(15,45,75,0.04);
  transform: translateY(-3px);
  outline: none;
}
.ps-card:hover::before, .ps-card.is-active::before { opacity: 1; }

.ps-num-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.ps-big {
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 500;
  color: var(--tide-dark);
  font-feature-settings: "lnum" 1;
}
.ps-card.is-active .ps-big { color: var(--ink); }
.ps-big--word { color: var(--ink); }
.ps-of {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-3);
  font-weight: 400;
  transform: translateY(-0.6em);
}
.ps-big--ticker {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  position: relative;
}
.ps-dollar {
  font-size: 0.55em;
  vertical-align: 0.45em;
  margin-right: 2px;
  color: var(--ink-3);
  font-weight: 400;
}

/* Visualization area — appears on hover */
.ps-viz {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 360ms var(--ease) 80ms, transform 360ms var(--ease) 80ms;
  min-height: 84px;
}
.ps-card:hover .ps-viz, .ps-card.is-active .ps-viz {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Ratio: 3 silhouettes, 1 lit ---- */
.ps-viz--ratio {
  display: flex;
  gap: 14px;
  align-items: flex-end;
}
.ps-figure {
  position: relative;
  width: 52px;
  height: 64px;
  display: inline-block;
}
.ps-figure svg {
  width: 100%;
  height: 100%;
  fill: color-mix(in oklab, var(--ink) 14%, transparent);
  transition: fill 360ms var(--ease);
}
.ps-card.is-active .ps-figure--lit svg { fill: var(--tide-dark); }
.ps-fig-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}
.ps-card.is-active .ps-figure--lit .ps-fig-ring {
  animation: phRipple 1.8s ease-out 0.25s infinite;
  border: 2px solid var(--tide);
}
.ps-card.is-active .ps-figure--lit .ps-fig-ring--2 {
  animation-delay: 0.95s;
}
@keyframes phRipple {
  0%   { opacity: 0.6; transform: scale(0.6); }
  100% { opacity: 0;   transform: scale(2.1); }
}

/* ---- Grid: 30 little "rooms" — most dark ---- */
.ps-viz--grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  padding: 4px 0 0;
}
.ps-cell {
  aspect-ratio: 1;
  border-radius: 3px;
  background: color-mix(in oklab, var(--ink) 8%, transparent);
  transform: scale(0.7);
  opacity: 0;
  transition:
    transform 360ms var(--ease) calc(var(--i, 0) * 14ms),
    opacity 360ms var(--ease) calc(var(--i, 0) * 14ms),
    background 360ms var(--ease) calc(var(--i, 0) * 14ms);
}
.ps-card.is-active .ps-cell,
.ps-card:hover .ps-cell {
  transform: scale(1);
  opacity: 1;
}
.ps-cell--on { background: var(--tide-dark); }
.ps-card.is-active .ps-cell--on {
  box-shadow: 0 0 0 2px rgba(74,138,154,0.18);
  animation: phCellGlow 2s ease-in-out infinite alternate;
  animation-delay: calc(var(--i, 0) * 80ms);
}
@keyframes phCellGlow {
  from { box-shadow: 0 0 0 2px rgba(74,138,154,0.10); }
  to   { box-shadow: 0 0 0 4px rgba(74,138,154,0.30); }
}

.ps-pct { font-size: 0.62em; margin-left: 2px; color: var(--ink-3); }

/* ---- Route: travel 30+ minutes to live entertainment ---- */
.ps-viz--route {
  display: flex; align-items: center; gap: 12px; padding: 18px 0 8px;
}
.ps-route-end {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in oklab, var(--ink) 10%, transparent); color: var(--ink-3);
  transition: background 400ms var(--ease), color 400ms var(--ease);
}
.ps-route-end svg { width: 22px; height: 22px; }
.ps-card.is-active .ps-route-venue { background: var(--tide-dark); color: #fff; }
.ps-route-line {
  position: relative; flex: 1; height: 3px; border-radius: 999px;
  background: color-mix(in oklab, var(--ink) 12%, transparent);
}
.ps-route-fill {
  position: absolute; inset: 0 auto 0 0; width: 0; height: 100%;
  background: linear-gradient(90deg, var(--wheat-dark), var(--tide-dark));
  border-radius: 999px; transition: width 900ms cubic-bezier(.4,.9,.3,1);
}
.ps-card.is-active .ps-route-fill { width: 100%; }
.ps-route-traveler {
  position: absolute; top: 50%; left: 0; width: 12px; height: 12px; margin: -6px 0 0 -6px;
  border-radius: 50%; background: var(--tide-dark); border: 2px solid var(--bg-card);
  box-shadow: 0 2px 6px rgba(15,45,75,.25);
  transition: left 900ms cubic-bezier(.4,.9,.3,1);
}
.ps-card.is-active .ps-route-traveler { left: 100%; }
.ps-route-time {
  position: absolute; left: 50%; top: -24px; transform: translateX(-50%);
  font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: .06em;
  color: var(--tide-dark); white-space: nowrap;
  background: color-mix(in oklab, var(--tide) 14%, var(--bg-card)); padding: 2px 9px; border-radius: 999px;
  opacity: 0; transition: opacity 400ms var(--ease) 300ms;
}
.ps-card.is-active .ps-route-time { opacity: 1; }

/* ---- Fader: 0 → 150 ticker with filling slider ---- */
.ps-viz--fader {
  padding: 6px 0 0;
}
.ps-fader-track {
  position: relative;
  height: 10px;
  background: color-mix(in oklab, var(--ink) 10%, transparent);
  border-radius: 999px;
  overflow: visible;
}
.ps-fader-fill {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  background: linear-gradient(90deg, var(--wheat-dark), var(--tide), var(--tide-dark));
  border-radius: 999px;
  transition: width 80ms linear;
}
.ps-fader-thumb {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--tide-dark);
  box-shadow: 0 4px 10px rgba(15,45,75,0.12);
  transform: translateY(-50%);
  transition: left 80ms linear;
}
.ps-fader-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* ---- Label + source under each card ---- */
.ps-label {
  font-family: var(--font-ui);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: auto;
}
.ps-label-strong { color: var(--ink); font-weight: 600; }
.ps-label em { font-style: italic; color: var(--tide-dark); }
.ps-source {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding-top: 10px;
  border-top: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
}

/* Ambient pulse layer behind everything in the section */
.ph-ambient {
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
  background:
    radial-gradient(40% 40% at 22% 30%, color-mix(in oklab, var(--tide) 14%, transparent), transparent 70%),
    radial-gradient(40% 40% at 78% 70%, color-mix(in oklab, var(--wheat) 18%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity 700ms var(--ease);
}
.problem-home--interactive.is-hover .ph-ambient {
  opacity: 0.7;
  animation: phAmbientDrift 12s ease-in-out infinite alternate;
}
@keyframes phAmbientDrift {
  from { transform: translate(0, 0); }
  to   { transform: translate(20px, -10px); }
}

.problem-home-coda {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

@media (max-width: 920px) {
  .ps-grid { grid-template-columns: 1fr; }
  .ps-card { min-height: 280px; }
}
@media (max-width: 720px) {
  .problem-home-body { font-size: 17px; }
}

/* ===== Problem section — About (longer) ===== */
.problem-about-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}
.problem-about-side .eyebrow {
  display: block;
  margin-bottom: 14px;
}
.problem-about-side-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-3);
  line-height: 1.4;
  margin: 0;
}
.problem-about-h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: balance;
}
.problem-about-h2 em { font-style: italic; color: var(--tide-dark); }
.problem-about-body p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.problem-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px 0;
  margin: 12px 0 24px;
  border-top: 1px solid color-mix(in oklab, var(--ink) 14%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 14%, transparent);
}
.pa-stat { display: flex; flex-direction: column; gap: 8px; }
.pa-stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  color: var(--tide-dark);
  letter-spacing: -.02em;
}
.pa-stat-label {
  font-family: var(--font-ui);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-2);
}
.problem-about-coda {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  margin: 8px 0 0 !important;
  padding-top: 8px;
  border-left: 3px solid var(--tide-dark);
  padding-left: 18px;
}
@media (max-width: 840px) {
  .problem-about-grid { grid-template-columns: 1fr; gap: 24px; }
  .problem-about-stats { grid-template-columns: 1fr; gap: 18px; padding: 20px 0; }
}

/* ===== Past gallery in Our Story ===== */
.past-gallery {
  background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--wheat) 25%, transparent) 30%, color-mix(in oklab, var(--wheat) 25%, transparent) 70%, transparent);
  padding-top: 72px;
  padding-bottom: 72px;
  margin: 24px 0;
}
.past-gallery-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.past-gallery-eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tide-dark);
  margin-bottom: 14px;
}
.past-gallery-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 18px;
  text-wrap: balance;
}
.past-gallery-lead {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}
.past-gallery-caption {
  margin-top: 28px;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-3);
  letter-spacing: .02em;
}
@media (max-width: 720px) {
  .past-gallery-title { font-size: 28px; }
  .past-gallery-lead { font-size: 16px; }
}

/* Past videos sub-section inside Our Story */
.past-gallery-videos {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid color-mix(in oklab, var(--ink) 12%, transparent);
}
.past-gallery-videos-head {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}
.past-gallery-videos-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 8px 0 12px;
  font-style: italic;
}
.past-gallery-videos-lead {
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

/* ===== Article reader ===== */
.article { max-width: 720px; margin: 0 auto; padding: 24px 0 96px; }
.article h1 { font-family: var(--font-display); font-weight: 400; font-size: 48px; line-height: 1.15; letter-spacing: -.01em; color: var(--ink); margin: 0 0 16px; text-wrap: balance; }
.article .byline { font-family: var(--font-ui); font-size: 13px; color: var(--ink-3); margin-bottom: 40px; }
.article p { font-family: var(--font-display); font-weight: 400; font-size: 20px; line-height: 1.7; color: var(--ink-2); margin: 0 0 24px; }
.article p:first-of-type::first-letter { font-size: 72px; float: left; font-weight: 500; line-height: 0.9; padding: 6px 12px 0 0; color: var(--ink); }
.article blockquote { border: none; padding: 32px 0; margin: 32px 0; border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist); }
.article blockquote p { font-style: italic; font-size: 26px; line-height: 1.4; color: var(--ink); }

/* ===== Field note No. 02 — interactive reader ===== */
.article2 .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}
.article2 .reveal.in { opacity: 1; transform: none; }

.a2-head { margin-bottom: 8px; }
.a2-eyebrow {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--tide-dark);
  margin-bottom: 16px;
}
.a2-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px;
  padding: 24px 0; margin: 8px 0 0;
  border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist);
  font-family: var(--font-ui); font-size: 14px;
}
.a2-meta-k { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.a2-meta-v { color: var(--ink); }

/* By the numbers */
.a2-numbers {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin: 40px 0 8px;
}
.a2-stat {
  text-align: center; padding: 22px 8px;
  background: color-mix(in oklab, var(--mist-soft) 60%, transparent);
  border: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  border-radius: 14px;
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease), border-color 360ms var(--ease);
}
.a2-stat:hover {
  transform: translateY(-3px);
  border-color: var(--tide);
  box-shadow: 0 16px 32px -14px rgba(15,45,75,0.18);
}
.a2-stat-n {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 5vw, 52px); line-height: 1; color: var(--tide-dark);
  letter-spacing: -.02em; font-variant-numeric: tabular-nums;
}
.a2-stat-l {
  font-family: var(--font-ui); font-size: 11.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3);
  margin-top: 10px;
}

/* Program — interactive accordion */
.a2-program { margin: 48px 0 8px; }
.a2-section-label,
.a2-pull-label {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--tide-dark);
  margin-bottom: 16px;
}
.a2-prog-list { list-style: none; padding: 0; margin: 0; }
.a2-prog-item {
  border-top: 1px solid var(--mist);
}
.a2-prog-item:last-child { border-bottom: 1px solid var(--mist); }
.a2-prog-row {
  width: 100%; background: none; border: none; cursor: pointer;
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 18px;
  padding: 20px 4px; text-align: left; font: inherit; color: inherit;
  transition: padding-left 320ms var(--ease);
}
.a2-prog-item:hover .a2-prog-row, .a2-prog-item.open .a2-prog-row { padding-left: 12px; }
.a2-prog-idx {
  font-family: var(--font-ui); font-size: 13px; font-weight: 600;
  color: var(--ink-4); letter-spacing: .08em; font-variant-numeric: tabular-nums;
}
.a2-prog-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.a2-prog-composer {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--tide-dark);
}
.a2-prog-work {
  font-family: var(--font-display); font-size: 22px; color: var(--ink); line-height: 1.2;
}
.a2-prog-item.open .a2-prog-work, .a2-prog-item:hover .a2-prog-work { color: var(--tide-dark); }
.a2-prog-cat {
  font-family: var(--font-ui); font-size: 13px; color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.a2-prog-chev {
  width: 12px; height: 12px; border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg); transition: transform 320ms var(--ease), border-color 320ms var(--ease);
  margin-right: 4px;
}
.a2-prog-item.open .a2-prog-chev { transform: rotate(-135deg); border-color: var(--tide-dark); }
.a2-prog-note {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 420ms var(--ease);
}
.a2-prog-item.open .a2-prog-note { grid-template-rows: 1fr; }
.a2-prog-note > p {
  overflow: hidden; margin: 0;
  font-family: var(--font-display); font-size: 18px; line-height: 1.6; color: var(--ink-2);
  padding: 0 4px 0 51px;
  opacity: 0; transition: opacity 360ms var(--ease) 80ms, padding-bottom 420ms var(--ease);
}
.a2-prog-item.open .a2-prog-note > p { opacity: 1; padding-bottom: 22px; }

.a2-h2 {
  font-family: var(--font-display); font-weight: 500; font-size: 26px;
  margin-top: 48px; margin-bottom: 14px; color: var(--ink);
}

/* Quote with big mark */
.a2-quote {
  position: relative; border: none !important;
  padding: 8px 0 8px 44px !important; margin: 40px 0 !important;
}
.a2-quote::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 3px;
  background: linear-gradient(var(--wheat-dark), var(--tide)); border-radius: 2px;
}
.a2-quote-mark {
  position: absolute; left: 30px; top: -18px; font-family: var(--font-display);
  font-size: 90px; line-height: 1; color: color-mix(in oklab, var(--tide) 30%, transparent);
  pointer-events: none;
}
.a2-quote p { font-style: italic; font-size: 26px; line-height: 1.4; color: var(--ink); margin: 0 0 10px; }
.a2-quote cite { font-style: normal; font-family: var(--font-ui); font-size: 14px; color: var(--ink-3); }

/* Interactive summary — highlighter reveal */
.a2-summary {
  position: relative;
  margin: 56px 0 8px;
  padding: 34px 32px 30px;
  background: color-mix(in oklab, var(--mist-soft) 70%, transparent);
  border-radius: 18px;
  overflow: hidden;
  cursor: default;
}
.a2-summary::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 120% at 50% 0%, color-mix(in oklab, var(--wheat) 20%, transparent), transparent 70%);
}
.a2-summary-label {
  position: relative;
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--tide-dark);
  margin-bottom: 16px;
}
.a2-summary-text {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(24px, 3.2vw, 32px); line-height: 1.32;
  color: var(--ink); margin: 0; text-wrap: balance;
}
/* Words are hidden until the box is hovered, then fade in one at a time */
.a2-sum-word {
  display: inline;
  color: var(--ink);
  opacity: 0;
  filter: blur(4px);
  transition: opacity 500ms var(--ease), filter 500ms var(--ease);
}
.a2-summary.is-hover .a2-sum-word {
  opacity: 1;
  filter: blur(0);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.a2-summary-hint {
  position: absolute; right: 20px; bottom: 14px; z-index: 2;
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-4);
  transition: opacity 300ms var(--ease);
}
.a2-summary.is-hover .a2-summary-hint { opacity: 0; }
.a2-summary-text.is-empty::before {
  content: attr(data-ph);
  color: var(--ink-4); font-style: italic; opacity: .8;
}
.a2-summary-text--edit {
  color: var(--ink);
  outline: none;
  border-radius: 6px;
  box-shadow: 0 0 0 2px var(--tide);
  background: color-mix(in oklab, var(--tide) 6%, transparent);
}

@media (max-width: 600px) {
  .a2-numbers { grid-template-columns: repeat(2, 1fr); }
  .a2-prog-row { grid-template-columns: auto 1fr auto; }
  .a2-prog-cat { grid-column: 2; font-size: 12px; }
  .a2-prog-note > p { padding-left: 4px; }
}

/* ---- Field note event media ---- */
.fm-wrap { margin: 48px 0 8px; }
.fm-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin-bottom: 14px;
}
.fm-grid .photo-tile { position: relative; border-radius: 12px; overflow: hidden; min-height: 200px; }
.fm-grid .photo-tile.wide { grid-column: span 2; }
.fm-grid .photo-tile.tall { grid-row: span 2; }
.fm-videos { display: grid; gap: 16px; margin: 18px 0 12px; }
.fm-videos .gallery-video-cell { position: relative; }
@media (max-width: 600px) {
  .fm-grid { grid-template-columns: 1fr; }
  .fm-grid .photo-tile.wide { grid-column: auto; }
}

/* ---- Editable field note (No. 03) ---- */
.a3-banner {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  color: var(--tide-dark);
  background: color-mix(in oklab, var(--tide) 12%, var(--bg-card));
  border: 1px solid color-mix(in oklab, var(--tide) 30%, transparent);
  padding: 9px 15px; border-radius: 999px; margin-bottom: 28px;
}
.a3-edit {
  outline: none; border-radius: 6px;
  white-space: pre-wrap;
  transition: box-shadow 180ms var(--ease), background 180ms var(--ease);
  cursor: text;
}
.a3-edit:hover { box-shadow: 0 0 0 1px color-mix(in oklab, var(--tide) 35%, transparent); }
.a3-edit:focus {
  box-shadow: 0 0 0 2px var(--tide);
  background: color-mix(in oklab, var(--tide) 6%, transparent);
}
.a3-edit.is-empty::before {
  content: attr(data-ph);
  color: var(--ink-4);
  font-style: italic;
  opacity: .8;
  pointer-events: none;
}
.a3-title { margin: 0; }
.a3-para {
  font-family: var(--font-display); font-size: 19px; line-height: 1.7;
  color: var(--ink-2); margin: 0 0 22px; padding: 2px 4px; text-wrap: pretty;
}
/* Editable placeholders must stay visible even before scroll-reveal fires */
.article3 .reveal { opacity: 1; transform: none; }
.article3 .reveal:not(.in) { opacity: 1; }

.a3-prog-row { cursor: default; }
.a2-prog-toggle {
  background: none; border: none; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
}
.a2-prog-chevbtn { padding: 4px; margin: -4px; }

.a3-reset {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: .04em; color: var(--ink-3);
  background: none; border: 1px solid var(--mist); border-radius: 999px;
  padding: 7px 15px; cursor: pointer;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}
.a3-reset:hover { color: var(--clay, #b4553a); border-color: currentColor; }

/* Subtle entrance */
@keyframes mir-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.rise { animation: mir-rise var(--dur-hero) var(--ease) both; }
.rise-2 { animation-delay: 120ms; }
.rise-3 { animation-delay: 240ms; }

@media (max-width: 900px) {
  .grid-3, .grid-2, .gallery-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-photo { height: 300px; }
  .counter-grid { grid-template-columns: 1fr; }
  .counter-grid-4 { grid-template-columns: 1fr; }
  .counter-cell { border-left: none; border-top: 1px solid var(--mist); padding-top: 24px; }
  .counter-cell:first-child { border-top: none; padding-top: 8px; }
}


/* ===== About — subnav, story template, team grid ===== */
.about-subnav {
  background: var(--cream-2);
  border-bottom: 1px solid var(--mist);
  position: sticky; top: 72px; z-index: 8;
  backdrop-filter: saturate(140%) blur(6px);
}
.about-subnav-inner {
  display: flex; gap: 32px; padding: 14px 0;
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  letter-spacing: .02em;
}
.about-tab {
  color: var(--ink-3); text-decoration: none;
  padding: 6px 0; position: relative;
  transition: color .18s ease;
}
.about-tab:hover { color: var(--ink); }
.about-tab.active { color: var(--ink); }
.about-tab.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -15px;
  height: 2px; background: var(--tide-dark); border-radius: 2px;
}

.about-template { max-width: 880px; margin: 0 auto; }

/* ============================================================
   Our Story — longform narrative
   Quiet, generous, one-column reading layout. Lets the prose
   carry the weight; section breaks and a single dramatic "turn"
   paragraph create the emotional rhythm.
   ============================================================ */
.story-prose {
  max-width: 660px;
  margin: 0 auto;
}
.story-prose p {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.story-prose p em {
  font-style: italic;
  color: var(--ink);
}
.story-h2 {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tide-dark);
  margin: 56px 0 24px;
}
.story-h2:first-of-type { margin-top: 8px; }
.story-rule {
  border: 0;
  height: 1px;
  width: 64px;
  background: var(--mist);
  margin: 56px auto;
}

/* In-prose scene block — names a moment in time and place
   without breaking the reading flow */
.story-scene {
  margin: 36px 0 28px;
  padding: 22px 0;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  text-align: center;
}
.story-scene-eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--tide-dark);
  display: block;
  margin-bottom: 8px;
}
.story-scene-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
  letter-spacing: -.01em;
}

/* The "turn" — the line where the room reveals itself */
.story-turn {
  font-family: var(--font-display) !important;
  font-size: 32px !important;
  line-height: 1.25 !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  letter-spacing: -.01em !important;
  text-wrap: balance;
  margin: 36px 0 32px !important;
  padding-left: 20px;
  border-left: 3px solid var(--tide);
}

.story-coda {
  font-family: var(--font-display) !important;
  font-style: italic;
  font-size: 22px !important;
  line-height: 1.55 !important;
  color: var(--ink) !important;
  margin: 48px 0 36px !important;
  text-wrap: pretty;
}

.story-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--mist);
}

@media (max-width: 720px) {
  .story-prose p { font-size: 18px; }
  .story-h2 { margin: 40px 0 16px; }
  .story-scene-title { font-size: 22px; }
  .story-turn { font-size: 24px !important; padding-left: 16px; }
  .story-coda { font-size: 19px !important; }
}

/* ============================================================
   Our Story — the problem + chaptered pathway
   ============================================================ */
.story-problem {
  max-width: 760px; margin: 0 auto 56px; text-align: center;
  padding: 40px 40px 36px; border-radius: 20px;
  background: color-mix(in oklab, var(--tide) 10%, var(--bg-paper));
  border: 1px solid color-mix(in oklab, var(--tide) 24%, transparent);
  position: relative;
}
.story-problem-tag {
  display: inline-block; font-family: var(--font-ui); font-size: 12px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: #fff; background: var(--tide-dark);
  padding: 6px 16px; border-radius: 999px; margin-bottom: 20px;
}
.story-problem-lead {
  font-family: var(--font-display); font-size: clamp(21px, 2.6vw, 28px); line-height: 1.4;
  color: var(--ink); margin: 0 0 14px; text-wrap: balance; font-weight: 500;
}
.story-problem-sub {
  font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--tide-dark); margin: 0;
}

.story-path {
  list-style: none; max-width: 720px; margin: 0 auto; padding: 0;
  position: relative;
}
.story-path--continued { margin-top: 8px; }
.story-chapter {
  position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 28px;
  padding-bottom: 44px;
}
.story-chapter:last-child { padding-bottom: 0; }
/* the connecting line runs through the markers */
.story-chapter::before {
  content: ""; position: absolute; left: 27px; top: 8px; bottom: -8px; width: 2px;
  background: linear-gradient(var(--tide), color-mix(in oklab, var(--tide) 35%, transparent));
}
.story-chapter:last-child::before { display: none; }
.chapter-marker {
  position: relative; z-index: 1; width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-card, #fff); border: 2px solid var(--tide);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--tide-dark);
  box-shadow: 0 0 0 6px var(--bg-paper);
}
.chapter-marker--end { background: var(--tide-dark); border-color: var(--tide-dark); color: #fff; }
.chapter-body { padding-top: 4px; }
.chapter-kicker {
  font-family: var(--font-ui); font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--tide-dark); display: block; margin-bottom: 8px;
}
.chapter-title {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 3vw, 30px);
  line-height: 1.15; color: var(--ink); margin: 0 0 4px; letter-spacing: -.01em; text-wrap: balance;
}
.chapter-place {
  font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: 16px;
}
.chapter-body > p {
  font-family: var(--font-display); font-size: 19px; line-height: 1.65; color: var(--ink-2);
  margin: 14px 0 0; text-wrap: pretty;
}
.chapter-body > p:first-of-type { margin-top: 12px; }
.chapter-body > p em { font-style: italic; color: var(--ink); }
.chapter-body .story-turn { margin: 18px 0 !important; }
.chapter-body .quote-block { margin: 24px 0 0; }
.chapter-body .quote-block .container { padding: 0; }
@media (max-width: 720px) {
  .story-chapter { grid-template-columns: 44px 1fr; gap: 18px; }
  .story-chapter::before { left: 21px; }
  .chapter-marker { width: 44px; height: 44px; font-size: 18px; }
  .chapter-body > p { font-size: 17px; }
  .story-problem { padding: 28px 24px; }
}

/* ============================================================
   Our Story — survey voices cinema marquee
   ============================================================ */
.survey-band {
  background: var(--ink); color: #fff;
  padding: clamp(48px, 6vw, 72px) 0; margin-top: 8px;
  overflow: hidden; position: relative;
}
.survey-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 300px at 20% 0%, color-mix(in oklab, var(--tide) 30%, transparent), transparent 70%),
             radial-gradient(600px 280px at 90% 100%, color-mix(in oklab, var(--wheat) 14%, transparent), transparent 70%);
}
.survey-head { position: relative; text-align: center; max-width: 640px; margin: 0 auto clamp(32px, 4vw, 48px); }
.survey-eyebrow { font-family: var(--font-ui); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--wheat); }
.survey-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.12; letter-spacing: -.02em; color: #fff; margin: 14px 0 12px; text-wrap: balance; }
.survey-lead { font-family: var(--font-display); font-size: 18px; line-height: 1.55; color: rgba(255,255,255,.82); margin: 0; text-wrap: pretty; }

.survey-marquee { position: relative; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.survey-track { display: flex; gap: 20px; width: max-content; animation: surveyScroll 60s linear infinite; will-change: transform; }
.survey-marquee:hover .survey-track { animation-play-state: paused; }
@keyframes surveyScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .survey-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

.survey-card {
  position: relative; flex: 0 0 auto; width: 360px; margin: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px; padding: 28px 26px 24px;
  backdrop-filter: blur(4px); transition: transform 300ms var(--ease), background 300ms var(--ease), border-color 300ms var(--ease);
}
.survey-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.28); }
.survey-quote-mark { position: absolute; top: 8px; left: 20px; font-family: var(--font-display); font-size: 60px; line-height: 1; color: var(--wheat); opacity: .5; }
.survey-quote { font-family: var(--font-display); font-size: 18px; line-height: 1.5; color: #fff; margin: 22px 0 16px; text-wrap: pretty; }
.survey-cite { font-family: var(--font-ui); font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--wheat); }
@media (max-width: 640px) { .survey-card { width: 280px; } }

/* ============================================================
   About Me — editable personal page
   ============================================================ */
.aboutme-hero {
  display: grid; grid-template-columns: 300px 1fr; gap: 48px;
  align-items: center; margin-bottom: 56px;
}
.aboutme-portrait {
  width: 300px; height: 360px; border-radius: 20px; overflow: hidden;
  background: var(--mist-soft); box-shadow: 0 24px 56px -24px rgba(15,45,75,.28);
  position: relative;
}
.aboutme-portrait > * { width: 100%; height: 100%; }
.aboutme-name {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.05; letter-spacing: -.02em; color: var(--ink); margin: 0;
}
.aboutme-role {
  font-family: var(--font-ui); font-size: 14px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--tide-dark); margin: 12px 0 0;
}
.aboutme-tagline {
  font-family: var(--font-display); font-style: italic; font-size: 20px; line-height: 1.45;
  color: var(--ink-2); margin: 18px 0 0; max-width: 460px; text-wrap: pretty;
}
.aboutme-facts {
  display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--mist);
}
.aboutme-fact { display: flex; flex-direction: column; gap: 4px; }
.aboutme-fact-v {
  font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--ink); line-height: 1.1;
}
.aboutme-fact-l {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-3);
}

.aboutme-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px 56px;
  max-width: 940px; margin: 0 auto;
}
.aboutme-block { }
.aboutme-h3 {
  font-family: var(--font-ui); font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--tide-dark); margin: 0 0 12px;
  padding-bottom: 10px; border-bottom: 1px solid var(--mist);
}
.aboutme-prose {
  font-family: var(--font-display); font-size: 18px; line-height: 1.65; color: var(--ink-2);
  white-space: pre-wrap; text-wrap: pretty;
}
.aboutme-cta {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin: 56px auto 0; padding-top: 40px; border-top: 1px solid var(--mist);
  max-width: 940px;
}
@media (max-width: 720px) {
  .aboutme-hero { grid-template-columns: 1fr; gap: 28px; justify-items: center; text-align: center; }
  .aboutme-portrait { width: 100%; max-width: 300px; }
  .aboutme-tagline, .aboutme-facts { margin-left: auto; margin-right: auto; }
  .aboutme-facts { justify-content: center; }
  .aboutme-body { grid-template-columns: 1fr; gap: 32px; }
}
.about-template-hint {
  font-family: var(--font-ui); font-size: 13px; color: var(--ink-3);
  background: rgba(91, 160, 176, .08);
  border-left: 3px solid var(--tide);
  padding: 12px 18px; border-radius: 4px;
  margin: 0 0 40px;
}
.about-h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 32px; line-height: 1.2;
  margin: 56px 0 18px; color: var(--ink);
}
.about-h2:first-of-type { margin-top: 12px; }
.about-lead {
  font-family: var(--font-display); font-size: 20px; line-height: 1.6;
  color: var(--ink-2); margin: 0 0 16px; text-wrap: pretty;
}

.timeline {
  list-style: none; padding: 0; margin: 8px 0 24px;
  border-left: 1px solid var(--mist);
}
.timeline li {
  display: flex; gap: 28px; align-items: baseline;
  padding: 14px 0 14px 28px; position: relative;
}
.timeline li::before {
  content: ''; position: absolute; left: -5px; top: 22px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--tide); border: 2px solid var(--cream);
}
.timeline .t-year {
  font-family: var(--font-ui); font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--tide-dark); min-width: 64px;
}
.timeline .t-body {
  font-family: var(--font-ui); font-size: 16px; line-height: 1.55; color: var(--ink-2);
}
.timeline .t-body strong { color: var(--ink); font-weight: 600; }

.team-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  margin: 8px 0 32px;
}
.team-card {
  background: #fff; border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: 28px; text-align: left;
  display: flex; flex-direction: column;
}
.team-card-sm { padding: 20px; }
.team-photo {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--mist), var(--cream-2));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; overflow: hidden;
}
.team-photo-sm { aspect-ratio: 1; }
.team-card-editable { max-width: 340px; }
.team-photo-slot { background: var(--mist-soft); padding: 0; }
.team-photo-slot > * { width: 100%; height: 100%; }
.team-photo-initial {
  font-family: var(--font-display); font-weight: 500;
  font-size: 48px; color: var(--tide-dark); opacity: .35;
}
.team-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; margin: 0 0 4px; color: var(--ink);
}
.team-name-sm { font-size: 18px; }
.team-role {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--tide-dark);
  margin-bottom: 10px;
}
.team-bio {
  font-family: var(--font-ui); font-size: 14px; line-height: 1.55;
  color: var(--ink-2); margin: 8px 0 0;
}

/* ============================================================
   Picture & quote templates (used on About page)
   ============================================================ */

/* ----- PhotoMosaic ----- */
.photo-mosaic { position: relative; padding: 64px 0 48px; margin: 24px 0 8px; }
.mosaic-arch { position: absolute; left: 50%; top: 16px; transform: translateX(-50%); width: 80%; max-width: 520px; opacity: .7; pointer-events: none; }
.mosaic-frames { position: relative; display: flex; justify-content: center; align-items: flex-end; gap: 28px; flex-wrap: wrap; padding: 24px 0; }
.mosaic-frame {
  background: #fff; padding: 14px 14px 56px; margin: 0;
  box-shadow: 0 1px 2px rgba(15,45,75,.04), 0 12px 32px rgba(15,45,75,.10);
  border: 1px solid var(--mist);
  transition: transform 420ms cubic-bezier(.2,.8,.2,1), box-shadow 420ms cubic-bezier(.2,.8,.2,1);
  position: relative; max-width: 280px; flex: 1 1 220px;
}
.mosaic-frame .mosaic-photo {
  width: 100%; aspect-ratio: 4 / 5; background-size: cover; background-position: center;
  background-color: var(--mist-soft);
}
.mosaic-frame figcaption {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  font-family: 'Caveat', var(--font-display), cursive; font-size: 22px;
  color: var(--ink); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.mf-pin { width: 8px; height: 8px; border-radius: 50%; background: var(--tide); display: inline-block; }
.mf-1 { transform: rotate(-4deg) translateY(8px); z-index: 1; }
.mf-2 { transform: rotate(2deg) translateY(-12px); z-index: 3; }
.mf-3 { transform: rotate(5deg) translateY(4px); z-index: 2; }
.mosaic-frame:hover { transform: rotate(0) translateY(-6px) scale(1.02); box-shadow: 0 1px 2px rgba(15,45,75,.06), 0 24px 48px rgba(15,45,75,.16); z-index: 5; }
.mosaic-cap { font-family: var(--font-ui); font-size: 13px; color: var(--ink-3); text-align: center; margin: 24px auto 0; max-width: 520px; font-style: italic; }

/* ----- PolaroidStack ----- */
.polaroid-stack-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding: 56px 0; margin: 24px 0;
}
.ps-heading { font-family: var(--font-display); font-weight: 500; font-size: 30px; line-height: 1.2; color: var(--ink); margin: 0 0 14px; text-wrap: balance; }
.ps-sub { font-family: var(--font-display); font-size: 18px; line-height: 1.6; color: var(--ink-2); margin: 0 0 20px; text-wrap: pretty; }
.ps-controls { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ps-btn {
  font-family: var(--font-ui); font-weight: 600; font-size: 13px;
  background: var(--ink); color: #fff; border: none; padding: 10px 18px;
  border-radius: 999px; cursor: pointer;
  transition: background 200ms cubic-bezier(.2,.8,.2,1), transform 200ms cubic-bezier(.2,.8,.2,1);
}
.ps-btn:hover { background: var(--tide-dark); transform: translateY(-1px); }
.ps-hint { font-family: var(--font-ui); font-size: 12px; color: var(--ink-3); font-style: italic; }

.polaroid-stack { position: relative; height: 380px; perspective: 1200px; }
.polaroid {
  position: absolute; left: 50%; top: 50%; width: 240px; height: 300px;
  background: #fff; padding: 12px 12px 44px; border: none;
  box-shadow: 0 1px 2px rgba(15,45,75,.06), 0 14px 32px rgba(15,45,75,.14);
  transform-origin: center; cursor: pointer;
  transition: transform 520ms cubic-bezier(.2,.8,.2,1), box-shadow 320ms cubic-bezier(.2,.8,.2,1);
  transform: translate(-50%, -50%) rotate(calc((var(--i) - (var(--n) - 1) / 2) * 6deg)) translateZ(calc(var(--z) * 1px));
  z-index: calc(var(--z) + 1);
}
.polaroid-stack.fanned .polaroid {
  transform: translate(calc(-50% + (var(--i) - (var(--n) - 1) / 2) * 92px), -50%) rotate(calc((var(--i) - (var(--n) - 1) / 2) * 4deg));
}
.polaroid:hover { box-shadow: 0 1px 2px rgba(15,45,75,.06), 0 28px 56px rgba(15,45,75,.20); }
.polaroid-photo { width: 100%; aspect-ratio: 1; background-size: cover; background-position: center; background-color: var(--mist-soft); }
.polaroid-cap {
  position: absolute; left: 12px; right: 12px; bottom: 10px;
  display: flex; flex-direction: column; align-items: center; gap: 2px; text-align: center;
}
.pol-where { font-family: 'Caveat', var(--font-display), cursive; font-size: 18px; color: var(--ink); line-height: 1.1; }
.pol-when { font-family: var(--font-ui); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.polaroid-tape {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  width: 64px; height: 20px;
  background: rgba(232, 216, 184, .75); border: 1px solid rgba(15,45,75,.06);
  box-shadow: 0 1px 2px rgba(15,45,75,.08);
}

/* ----- PhotoQuote ----- */
.photo-quote {
  display: grid; grid-template-columns: 5fr 7fr; gap: 0;
  align-items: center; padding: 48px 0; position: relative; margin: 24px 0;
}
.photo-quote.flip { grid-template-columns: 7fr 5fr; }
.photo-quote.flip .pq-photo { order: 2; transform: rotate(2.5deg); }
.photo-quote.flip .pq-card { order: 1; margin-right: -32px; margin-left: 0; }
.pq-photo {
  margin: 0; padding: 12px 12px 12px; background: #fff;
  border: 1px solid var(--mist); transform: rotate(-2deg);
  box-shadow: 0 1px 2px rgba(15,45,75,.05), 0 16px 36px rgba(15,45,75,.12);
  position: relative; z-index: 2;
  transition: transform 380ms cubic-bezier(.2,.8,.2,1);
}
.pq-photo:hover { transform: rotate(0); }
.pq-img { width: 100%; aspect-ratio: 4 / 3; background-size: cover; background-position: center; background-color: var(--mist-soft); }
.pq-where {
  position: absolute; left: 16px; bottom: 16px;
  font-family: 'Caveat', var(--font-display), cursive; font-size: 20px;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.92); padding: 4px 10px;
}
.pq-pin { width: 8px; height: 8px; border-radius: 50%; background: var(--tide); }
.pq-arch { display: none; }
.pq-card {
  background: #fff; border: 1px solid var(--mist); border-radius: 8px;
  padding: 40px 36px 32px; margin-left: -32px; position: relative; z-index: 1;
  box-shadow: 0 1px 2px rgba(15,45,75,.04), 0 8px 24px rgba(15,45,75,.06);
}
.pq-mark { position: absolute; top: 18px; left: 24px; width: 56px; height: 56px; }
.pq-q { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 26px; line-height: 1.35; color: var(--ink); margin: 32px 0 0; text-wrap: balance; }
.pq-rule { width: 32px; height: 1px; background: var(--tide); margin: 24px 0 12px; transition: width 320ms cubic-bezier(.2,.8,.2,1); }
.pq-card:hover .pq-rule { width: 64px; }
.pq-a { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }

/* ----- QuoteCarousel ----- */
.quote-carousel {
  background: #fff; border: 1px solid var(--mist); border-radius: 16px;
  padding: 56px 56px 32px; position: relative; overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,45,75,.04), 0 12px 32px rgba(15,45,75,.08);
  margin: 24px 0; min-height: 360px;
}
.qc-stage { position: relative; min-height: 220px; }
.qc-mark { position: absolute; top: -16px; left: -8px; width: 80px; height: 80px; pointer-events: none; }
.qc-quote {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity 420ms cubic-bezier(.2,.8,.2,1), transform 420ms cubic-bezier(.2,.8,.2,1);
}
.qc-quote.active { opacity: 1; transform: none; pointer-events: auto; }
.qc-q {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 28px; line-height: 1.4; color: var(--ink); margin: 0 0 28px;
  text-wrap: pretty; max-width: 780px; padding-left: 56px;
}
.qc-meta { display: flex; align-items: center; gap: 16px; padding-left: 56px; }
.qc-portrait {
  width: 54px; height: 54px; border-radius: 50%;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff; box-shadow: 0 0 0 1px var(--mist);
}
.qc-initial { font-family: var(--font-display); font-weight: 500; color: var(--tide-dark); font-size: 22px; }
.qc-name { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--ink); line-height: 1.2; }
.qc-role { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tide-dark); margin-top: 4px; }
.qc-controls { display: flex; align-items: center; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.qc-step {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--mist);
  background: var(--bg-paper); color: var(--ink); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 200ms cubic-bezier(.2,.8,.2,1);
}
.qc-step:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.qc-pills { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; }
.qc-pill {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  background: transparent; color: var(--ink-3); border: 1px solid var(--mist);
  padding: 7px 14px; border-radius: 999px; cursor: pointer;
  transition: all 200ms cubic-bezier(.2,.8,.2,1);
}
.qc-pill:hover { background: var(--mist-soft); color: var(--ink); }
.qc-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.qc-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--mist-soft); }
.qc-bar { height: 100%; background: var(--tide); transition: width 420ms cubic-bezier(.2,.8,.2,1); }

/* ----- PhotoStrip ----- */
.photo-strip { padding: 32px 0; margin: 24px 0; }
.ps-heading-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.ps-rule { flex: 1; height: 1px; background: var(--mist); }
.ps-heading-text { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--tide-dark); white-space: nowrap; }
.strip-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.strip-cell { margin: 0; transition: opacity 240ms cubic-bezier(.2,.8,.2,1); }
.strip-row:hover .strip-cell { opacity: .45; }
.strip-row .strip-cell:hover { opacity: 1; }
.strip-img {
  width: 100%; aspect-ratio: 1; background-size: cover; background-position: center;
  background-color: var(--mist-soft); border-radius: 4px;
  filter: grayscale(.6) contrast(1.05);
  transition: filter 320ms cubic-bezier(.2,.8,.2,1), transform 320ms cubic-bezier(.2,.8,.2,1);
}
.strip-cell:hover .strip-img { filter: grayscale(0) contrast(1); transform: scale(1.02); }
.strip-cell figcaption { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.strip-no { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: .14em; color: var(--tide-dark); }
.strip-where { font-family: var(--font-display); font-size: 14px; color: var(--ink); }
.strip-when { font-family: var(--font-ui); font-size: 11px; color: var(--ink-3); margin-left: auto; }

@media (max-width: 900px) {
  .photo-quote, .photo-quote.flip { grid-template-columns: 1fr; gap: 0; }
  .photo-quote.flip .pq-photo, .photo-quote.flip .pq-card { order: initial; }
  .pq-card { margin-left: 0; margin-top: -24px; }
  .photo-quote.flip .pq-card { margin-right: 0; margin-top: -24px; }
  .polaroid-stack-wrap { grid-template-columns: 1fr; }
  .strip-row { grid-template-columns: repeat(2, 1fr); }
  .quote-carousel { padding: 40px 24px 24px; }
  .qc-q, .qc-meta { padding-left: 0; }
  .qc-mark { left: -16px; top: -8px; width: 56px; height: 56px; }
  .mosaic-frame { transform: none !important; }
}

/* ============================================================
   Impact — Our Reach + Communities
   ============================================================ */
/* ---- Communities: simple editable partner list ---- */
.cm-hero {
  text-align: center;
  background: color-mix(in oklab, var(--tide) 9%, var(--bg-paper));
  border: 1px solid color-mix(in oklab, var(--tide) 22%, transparent);
  border-radius: 24px; padding: clamp(40px, 6vw, 72px) 24px;
}
.cm-hero-num {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(96px, 16vw, 180px);
  line-height: .82; letter-spacing: -.04em; color: var(--tide-dark); font-variant-numeric: tabular-nums;
}
.cm-hero-label {
  font-family: var(--font-ui); font-size: 14px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 20px; line-height: 1.5;
}
.cm-list { list-style: none; counter-reset: none; padding: 0; margin: 0 auto; max-width: 720px; }
.cm-card {
  max-width: 720px; margin: 0 auto;
  background: var(--bg-card, #fff); border: 1px solid var(--mist);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,45,75,.04), 0 24px 56px -28px rgba(15,45,75,.22);
}
.cm-card-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--mist);
  background: color-mix(in oklab, var(--tide) 6%, transparent);
}
.cm-card-title { font-family: var(--font-ui); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--tide-dark); }
.cm-card-count { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .04em; color: var(--ink-3); background: color-mix(in oklab, var(--tide) 12%, transparent); padding: 5px 12px; border-radius: 999px; }
.cm-card .cm-list { max-width: none; }
.cm-row {
  display: grid; grid-template-columns: 44px 34px 1fr; align-items: center; gap: 16px;
  padding: 18px 24px; border-bottom: 1px solid color-mix(in oklab, var(--ink) 7%, transparent);
  position: relative; transition: background 220ms var(--ease), padding-left 220ms var(--ease);
}
.cm-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--tide-dark); transform: scaleY(0); transform-origin: center;
  transition: transform 240ms var(--ease);
}
.cm-row:last-child { border-bottom: none; }
.cm-row:hover { background: color-mix(in oklab, var(--tide) 5%, transparent); padding-left: 30px; }
.cm-row:hover::before { transform: scaleY(1); }
.cm-num {
  font-family: var(--font-display); font-weight: 500; font-size: 20px;
  color: var(--ink-4); font-variant-numeric: tabular-nums; transition: color 220ms var(--ease);
}
.cm-row:hover .cm-num { color: var(--tide-dark); }
.cm-pin {
  width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center;
  background: color-mix(in oklab, var(--tide) 12%, transparent); color: var(--tide-dark);
  transition: background 220ms var(--ease), color 220ms var(--ease);
}
.cm-row:hover .cm-pin { background: var(--tide-dark); color: #fff; }
.cm-pin svg { width: 18px; height: 18px; }
.cm-fields { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cm-name {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.2; color: var(--ink); letter-spacing: -.01em;
}
.cm-loc {
  font-family: var(--font-ui); font-size: 13.5px; color: var(--ink-3); line-height: 1.3;
}
@media (max-width: 520px) {
  .cm-row { grid-template-columns: 32px 30px 1fr; gap: 12px; padding: 16px; }
  .cm-row:hover { padding-left: 22px; }
}
/* ============================================================
   Music Volunteer Program — Setting pathway
   ============================================================ */
.mvp-path {
  display: flex; align-items: stretch; gap: 12px;
  flex-wrap: wrap; justify-content: center;
  padding: 16px 0 8px;
}
.mvp-step {
  background: #fff; border: 1px solid var(--mist); border-radius: 12px;
  padding: 18px 22px; cursor: pointer; text-align: left;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-ui); flex: 1 1 240px; min-width: 240px; max-width: 340px;
  transition: transform 240ms cubic-bezier(.2,.8,.2,1), box-shadow 240ms cubic-bezier(.2,.8,.2,1), border-color 240ms cubic-bezier(.2,.8,.2,1);
  position: relative;
}
.mvp-step:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15,45,75,.10); }
.mvp-step.active { border-color: var(--ink); box-shadow: 0 1px 2px rgba(15,45,75,.04), 0 16px 36px rgba(15,45,75,.14); }
.mvp-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 500; font-size: 17px;
  color: #fff; flex-shrink: 0; letter-spacing: -.01em;
  transition: transform 240ms cubic-bezier(.2,.8,.2,1);
}
.tone-a .mvp-step-num { background: var(--tide-dark); }
.tone-b .mvp-step-num { background: var(--ink); }
.tone-c .mvp-step-num { background: linear-gradient(160deg, var(--ink) 0%, var(--wheat) 100%); color: var(--ink); }
.mvp-step.active .mvp-step-num { transform: scale(1.08); }
.mvp-step-body { display: flex; flex-direction: column; gap: 2px; }
.mvp-step-title { font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--ink); letter-spacing: -.005em; }
.mvp-step-sub { font-family: var(--font-ui); font-size: 13px; color: var(--ink-3); line-height: 1.35; }
.mvp-arrow { width: 48px; height: 32px; flex-shrink: 0; align-self: center; opacity: .8; }

.mvp-detail {
  background: #fff; border: 1px solid var(--mist); border-radius: 16px;
  padding: 40px 44px;
  box-shadow: 0 1px 2px rgba(15,45,75,.04), 0 16px 36px rgba(15,45,75,.08);
  animation: mvpFade 360ms cubic-bezier(.2,.8,.2,1);
}
@keyframes mvpFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.mvp-detail-head { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--mist); }
.mvp-detail-num {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--tide-dark);
}
.mvp-detail-head h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 44px; line-height: 1.1; letter-spacing: -.01em;
  color: var(--ink); margin: 6px 0 4px; text-wrap: balance;
}
.mvp-detail-sub {
  font-family: var(--font-display); font-style: italic;
  font-size: 19px; line-height: 1.5; color: var(--ink-2); margin: 0; text-wrap: pretty;
}
.mvp-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-bottom: 28px;
}
.mvp-spec-col { display: flex; flex-direction: column; gap: 18px; }
.mvp-spec { display: flex; flex-direction: column; gap: 6px; }
.mvp-spec-label {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3);
}
.mvp-spec-val { font-family: var(--font-ui); font-size: 15px; line-height: 1.5; color: var(--ink); }
.mvp-spec-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.mvp-spec-list li {
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  padding: 5px 11px; border-radius: 999px;
  background: var(--mist-soft); color: var(--ink);
}
.mvp-detail-body {
  font-family: var(--font-display); font-size: 19px; line-height: 1.6;
  color: var(--ink-2); margin: 0 0 24px; text-wrap: pretty;
}
.mvp-promote {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 20px; border-radius: 10px;
  background: rgba(91, 160, 176, .10);
  border-left: 3px solid var(--tide);
  font-family: var(--font-ui); font-size: 14px; line-height: 1.55; color: var(--ink-2);
}
.mvp-promote svg { color: var(--tide-dark); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 820px) {
  .mvp-arrow { transform: rotate(90deg); width: 32px; height: 24px; }
  .mvp-path { flex-direction: column; align-items: stretch; }
  .mvp-step { max-width: none; }
  .mvp-detail { padding: 28px 24px; }
  .mvp-detail-head h2 { font-size: 32px; }
  .mvp-detail-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   Programs index — a single highlighted card, room for more
   ============================================================ */
.program-crumb-bar {
  padding: 24px 0 0;
}
.program-crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  letter-spacing: .01em; color: var(--ink-3); text-decoration: none;
  padding: 6px 0;
  transition: color .18s ease, gap .18s ease;
}
.program-crumb:hover { color: var(--tide-dark); gap: 11px; }
.program-crumb svg { stroke-width: 2; }

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.program-grid-single {
  grid-template-columns: minmax(0, 560px);
  justify-content: start;
}

.program-card {
  position: relative;
  display: flex; flex-direction: column;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: 20px;
  padding: 36px 36px 32px;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
  min-height: 280px;
}
.program-card.active::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--tide), var(--tide-dark));
  border-radius: 20px 20px 0 0;
}
.program-card.active:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(15,45,75,.28);
  border-color: var(--mist);
}
.program-card.active:hover .program-arrow { transform: translate(2px,-2px); color: var(--tide-dark); }
.program-card.active:focus-visible { outline: 2px solid var(--tide-dark); outline-offset: 3px; }

.program-card.placeholder {
  background: transparent;
  border: 1px dashed var(--mist);
  cursor: default;
  min-height: 240px;
}

.program-card-top {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.program-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--tide-dark);
}
.program-status.muted { color: var(--ink-3); letter-spacing: .14em; }
.program-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--tide);
  box-shadow: 0 0 0 4px rgba(91,160,176,.18);
}
.program-status-dot.muted {
  background: transparent;
  border: 1px solid var(--ink-3);
  box-shadow: none;
}
.program-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--mist-soft);
  color: var(--ink-2);
  transition: transform .25s ease, color .25s ease, background .25s ease;
}

.program-card-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 30px; line-height: 1.15; letter-spacing: -.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.program-card-title.muted { color: var(--ink-3); font-style: italic; }

.program-card-sub {
  font-family: var(--font-display);
  font-size: 18px; line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}
.program-card-sub.muted { color: var(--ink-3); font-size: 16px; }

.program-card-meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--mist-soft);
  font-family: var(--font-ui); font-size: 13px; color: var(--ink-3);
}
.program-meta-item strong {
  font-family: var(--font-display); font-weight: 500;
  font-size: 20px; color: var(--ink);
  margin-right: 6px;
}
.program-meta-divider {
  width: 1px; height: 16px; background: var(--mist);
}

.program-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  color: var(--tide-dark);
  margin-top: 2px;
}

.program-grid-note {
  font-family: var(--font-ui); font-size: 14px; color: var(--ink-3);
  text-align: center;
  margin: 8px 0 0;
}
.program-grid-note a { color: var(--tide-dark); }

@media (max-width: 720px) {
  .program-grid { grid-template-columns: 1fr; gap: 16px; }
  .program-card { padding: 28px 24px; min-height: 0; }
  .program-card-title { font-size: 24px; }
}

/* ============================================================
   Impact Timeline — step-through journey
   ============================================================ */
.jr-section { padding-top: 48px; }

/* ---- The path: clickable progress rail ---- */
.jr-rail {
  position: relative;
  max-width: 880px;
  margin: 8px auto 56px;
  height: 64px;
}
.jr-rail-track {
  position: absolute; left: 0; right: 0; top: 12px; height: 3px;
  background: var(--mist); border-radius: 999px; overflow: hidden;
}
.jr-rail-fill {
  height: 100%; background: linear-gradient(90deg, var(--wheat-dark), var(--tide), var(--tide-dark));
  border-radius: 999px; transition: width 520ms cubic-bezier(.2,.8,.2,1);
}
.jr-node {
  position: absolute; top: 0; transform: translateX(-50%);
  background: none; border: none; cursor: pointer; padding: 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-ui);
}
.jr-node-dot {
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--bg-paper); border: 2px solid var(--mist);
  box-shadow: 0 0 0 4px var(--bg-paper);
  transition: transform 320ms cubic-bezier(.2,.8,.2,1), background 320ms, border-color 320ms;
  margin-top: 5px;
}
.jr-node.done .jr-node-dot { background: var(--tide); border-color: var(--tide); }
.jr-node.active .jr-node-dot {
  background: var(--tide-dark); border-color: var(--tide-dark);
  transform: scale(1.5);
  box-shadow: 0 0 0 4px var(--bg-paper), 0 0 0 7px color-mix(in oklab, var(--tide) 30%, transparent);
}
.jr-node.future .jr-node-dot { border-style: dashed; }
.jr-node.future.active .jr-node-dot { border-style: solid; }
.jr-node:hover .jr-node-dot { border-color: var(--tide-dark); }
.jr-node-cap {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); white-space: nowrap;
  transition: color 320ms, transform 320ms;
}
.jr-node.active .jr-node-cap { color: var(--tide-dark); transform: translateY(2px); }

/* ---- The stage: the focused stop ---- */
.jr-stage {
  position: relative;
  max-width: 880px; margin: 0 auto;
  min-height: 300px;
}
.jr-card {
  display: grid; grid-template-columns: 200px 1fr;
  background: var(--bg-card, #fff); border: 1px solid var(--mist);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,45,75,.04), 0 24px 56px -20px rgba(15,45,75,.22);
}
@keyframes jrInRight { from { opacity: 0; transform: translateX(36px); } to { opacity: 1; transform: none; } }
@keyframes jrInLeft { from { opacity: 0; transform: translateX(-36px); } to { opacity: 1; transform: none; } }
.jr-card.from-right { animation: jrInRight 460ms cubic-bezier(.2,.8,.2,1); }
.jr-card.from-left { animation: jrInLeft 460ms cubic-bezier(.2,.8,.2,1); }

.jr-card-side {
  background: var(--ink); color: #fff;
  padding: 32px 24px; display: flex; flex-direction: column; justify-content: center; gap: 2px;
  position: relative;
}
.tone-b .jr-card-side { background: var(--tide-dark); }
.tone-c .jr-card-side { background: linear-gradient(160deg, var(--tide-dark), var(--ink)); }
.tone-d .jr-card-side { background: var(--wheat); color: var(--ink); }
.jr-date-month { font-family: var(--font-ui); font-size: 12px; font-weight: 700; letter-spacing: .22em; opacity: .85; }
.jr-date-year { font-family: var(--font-display); font-weight: 500; font-size: 52px; line-height: 1; letter-spacing: -.02em; margin: 4px 0 14px; }
.jr-card-index { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; opacity: .7; }

.jr-card-main { padding: 34px 36px; display: flex; flex-direction: column; gap: 14px; }
.jr-card-title { font-family: var(--font-display); font-weight: 500; font-size: 30px; line-height: 1.15; color: var(--ink); margin: 0; letter-spacing: -.01em; text-wrap: balance; }
.jr-card-body { font-family: var(--font-display); font-size: 18px; line-height: 1.55; color: var(--ink-2); margin: 0; text-wrap: pretty; }
.jr-card-detail { font-family: var(--font-display); font-style: italic; font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 0; padding-top: 14px; border-top: 1px solid var(--mist); }
.jr-card-foot { margin-top: auto; padding-top: 8px; }
.jr-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.jr-tag { font-family: var(--font-ui); font-size: 11px; font-weight: 600; padding: 4px 11px; border-radius: 999px; background: var(--mist-soft); color: var(--ink-2); }
.jr-tags-edit {
  display: inline-block; font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: .04em; color: var(--ink-2);
  background: var(--mist-soft); padding: 6px 13px; border-radius: 999px;
}
/* Editable fields on the dark date panel */
.jr-card-side .a3-edit.is-empty::before { color: rgba(255,255,255,.5); }
.jr-card-side .a3-edit:hover { box-shadow: 0 0 0 1px rgba(255,255,255,.35); }
.jr-card-side .a3-edit:focus { box-shadow: 0 0 0 2px var(--wheat); background: rgba(255,255,255,.1); }

/* Future stop */
.jr-card.is-future { grid-template-columns: 1fr; text-align: center; }
.jr-future { padding: 44px 40px; display: flex; flex-direction: column; align-items: center; gap: 14px; background: color-mix(in oklab, var(--wheat) 14%, var(--bg-card)); }
.jr-future-arch { width: 130px; height: auto; }
.jr-future h3 { font-family: var(--font-display); font-weight: 500; font-size: 30px; color: var(--ink); margin: 0; letter-spacing: -.01em; }
.jr-future p { font-family: var(--font-display); font-size: 18px; line-height: 1.5; color: var(--ink-2); margin: 0 0 8px; max-width: 460px; text-wrap: pretty; }

/* ---- Controls + live meter ---- */
.jr-controls {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  max-width: 880px; margin: 32px auto 0;
}
.jr-arrow {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%;
  background: var(--bg-card, #fff); border: 1px solid var(--mist); color: var(--ink);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px -8px rgba(15,45,75,.28);
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), background 220ms, color 220ms, border-color 220ms;
}
.jr-arrow:hover:not(:disabled) { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.jr-arrow:disabled { opacity: .3; cursor: default; }
.jr-meter { flex: 1; max-width: 360px; text-align: center; }
.jr-meter-num { font-family: var(--font-display); color: var(--ink); line-height: 1; }
.jr-meter-big { font-weight: 500; font-size: 40px; color: var(--tide-dark); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.jr-meter-of { font-size: 20px; color: var(--ink-3); }
.jr-meter-label { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin: 8px 0 10px; }
.jr-meter-bar { height: 6px; background: var(--mist); border-radius: 999px; overflow: hidden; }
.jr-meter-barfill { height: 100%; background: linear-gradient(90deg, var(--wheat-dark), var(--tide-dark)); border-radius: 999px; transition: width 520ms cubic-bezier(.2,.8,.2,1); }

@media (max-width: 720px) {
  .jr-card { grid-template-columns: 1fr; }
  .jr-card-side { flex-direction: row; align-items: baseline; gap: 12px; padding: 20px 24px; }
  .jr-date-year { font-size: 32px; margin: 0; }
  .jr-card-index { margin-left: auto; }
  .jr-card-main { padding: 24px; }
  .jr-card-title { font-size: 24px; }
  .jr-rail { max-width: 100%; }
  .jr-node-cap { font-size: 9px; }
  .jr-controls { gap: 14px; }
}

.reach-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist); }
.reach-stat { padding: 32px 24px; border-left: 1px solid var(--mist); transition: background 240ms cubic-bezier(.2,.8,.2,1); }
.reach-stat:first-child { border-left: none; }
.reach-stat:hover { background: var(--mist-soft); }
.rs-num { font-family: var(--font-display); font-weight: 400; font-size: 52px; line-height: 1; color: var(--ink); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.rs-label { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tide-dark); margin-top: 14px; }
.rs-sub { font-family: var(--font-ui); font-size: 13px; color: var(--ink-3); margin-top: 6px; }

.reach-places { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.reach-place { background: #fff; border: 1px solid var(--mist); border-radius: 8px; padding: 28px; display: flex; gap: 24px; align-items: flex-start; transition: transform 240ms cubic-bezier(.2,.8,.2,1), box-shadow 240ms cubic-bezier(.2,.8,.2,1); }
.reach-place:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15,45,75,.10); }
.rp-code { font-family: var(--font-display); font-weight: 500; font-size: 36px; color: var(--tide-dark); width: 64px; flex-shrink: 0; line-height: 1; letter-spacing: -.02em; }
.rp-body h3 { font-family: var(--font-display); font-weight: 500; font-size: 22px; margin: 0 0 4px; color: var(--ink); }
.rp-count { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tide-dark); margin-bottom: 10px; }
.rp-body p { font-family: var(--font-ui); font-size: 14px; line-height: 1.5; color: var(--ink-2); margin: 0; }

.story-list { display: flex; flex-direction: column; gap: 56px; }
.story { display: grid; grid-template-columns: 5fr 6fr; gap: 40px; align-items: center; }
.story.flip { grid-template-columns: 6fr 5fr; }
.story.flip .story-photo { order: 2; }
.story.flip .story-body { order: 1; }
.story-photo { aspect-ratio: 4 / 3; background-size: cover; background-position: center; border-radius: 8px; background-color: var(--mist-soft); position: relative; overflow: hidden; box-shadow: 0 1px 2px rgba(15,45,75,.04), 0 14px 32px rgba(15,45,75,.10); }
.story-stamp { position: absolute; left: 16px; top: 16px; font-family: var(--font-display); font-weight: 500; font-size: 14px; letter-spacing: .14em; color: #fff; background: rgba(15,45,75,.55); backdrop-filter: blur(8px); padding: 6px 12px; border-radius: 4px; }
.story-eyebrow { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tide-dark); display: block; margin-bottom: 12px; }
.story-body h3 { font-family: var(--font-display); font-weight: 500; font-size: 30px; line-height: 1.2; color: var(--ink); margin: 0 0 14px; letter-spacing: -.01em; text-wrap: balance; }
.story-body p { font-family: var(--font-display); font-size: 18px; line-height: 1.6; color: var(--ink-2); margin: 0 0 20px; text-wrap: pretty; }
.story-meta { display: flex; align-items: center; gap: 14px; font-family: var(--font-ui); font-size: 13px; color: var(--ink-3); }
.story-meta span { display: inline-flex; align-items: center; gap: 6px; }
.story-meta .story-when { padding-left: 14px; border-left: 1px solid var(--mist); }

@media (max-width: 900px) {
  .reach-stats { grid-template-columns: 1fr 1fr; }
  .reach-stat:nth-child(3) { border-left: none; }
  .reach-stat { border-top: 1px solid var(--mist); }
  .reach-stat:nth-child(-n+2) { border-top: none; }
  .reach-places { grid-template-columns: 1fr; }
  .story, .story.flip { grid-template-columns: 1fr; gap: 20px; }
  .story.flip .story-photo, .story.flip .story-body { order: initial; }
}

/* ===== HeroWave — ambient equalizer (idea #1) ===== */
.hero-wave { display: flex; align-items: flex-end; justify-content: center; gap: 4px; height: 56px; margin-top: 56px; padding: 0 4px; opacity: .5; }
@media (prefers-reduced-motion: no-preference) {
  .hero-wave-bar { animation: heroWave 1.9s ease-in-out infinite; animation-delay: calc(var(--i) * -0.11s); }
}
.hero-wave-bar {
  flex: 1; max-width: 5px; min-width: 2px; border-radius: 999px;
  background: linear-gradient(to top, var(--tide-dark), color-mix(in oklab, var(--tide) 55%, var(--wheat)));
  height: 24%;
  transform-origin: bottom;
}
@keyframes heroWave {
  0%, 100% { height: 18%; opacity: .55; }
  50% { height: 92%; opacity: 1; }
}

/* ===== VoicesBand — rotating quotes (idea #5) ===== */
.voices { background: var(--ink); color: #fff; padding: clamp(56px, 7vw, 88px) 0; position: relative; overflow: hidden; }
.voices::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(600px 300px at 80% 20%, color-mix(in oklab, var(--tide) 28%, transparent), transparent 70%); }
.voices-inner { position: relative; text-align: center; max-width: 900px; }
.voices-eyebrow { color: var(--wheat); display: block; margin-bottom: 28px; }
.voices-stage { position: relative; min-height: 200px; display: grid; }
.voices-q {
  grid-area: 1 / 1; margin: 0; font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(24px, 3.4vw, 40px); line-height: 1.3; color: #fff; text-wrap: balance;
  opacity: 0; transform: translateY(14px); transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  pointer-events: none; position: relative;
}
.voices-q.on { opacity: 1; transform: none; pointer-events: auto; }
.voices-mark { display: block; font-size: 2.4em; line-height: 0; height: .5em; color: var(--wheat); opacity: .6; margin-bottom: .1em; }
.voices-where { margin-top: 28px; background: none; border: none; cursor: pointer; font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--wheat); display: inline-flex; align-items: center; gap: 7px; transition: gap 200ms var(--ease); }
.voices-where:hover { gap: 12px; }
.voices-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.voices-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.25); cursor: pointer; padding: 0; transition: background 240ms var(--ease), transform 240ms var(--ease); }
.voices-dot.on { background: var(--wheat); transform: scale(1.3); }

/* ===== NextRoomWall — visitor suggestions (idea #4) ===== */
.nrw { padding: clamp(56px, 7vw, 88px) 0; background: color-mix(in oklab, var(--mist-soft) 60%, var(--bg-paper)); }
.nrw-inner { display: grid; grid-template-columns: 400px 1fr; gap: 56px; align-items: start; }
.nrw-head .eyebrow { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--tide-dark); display: block; margin-bottom: 14px; }
.nrw-head h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px, 3.6vw, 42px); line-height: 1.1; color: var(--ink); margin: 0 0 14px; letter-spacing: -.01em; text-wrap: balance; }
.nrw-head p { font-family: var(--font-display); font-size: 17px; line-height: 1.55; color: var(--ink-2); margin: 0 0 24px; text-wrap: pretty; }
.nrw-form { display: flex; flex-direction: column; gap: 12px; }
.nrw-input { font-family: var(--font-ui); font-size: 15px; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--mist); background: var(--bg-card, #fff); color: var(--ink); width: 100%; transition: border-color 180ms var(--ease); }
.nrw-input:focus { outline: none; border-color: var(--tide); }
.nrw-row { display: flex; gap: 12px; }
.nrw-input--name { flex: 1; }
.nrw-row .btn { flex-shrink: 0; }
.nrw-wall { columns: 2; column-gap: 14px; }
@keyframes nrwIn { from { opacity: 0; transform: translateY(10px) rotate(0); } to { opacity: 1; } }
.nrw-note {
  break-inside: avoid; margin-bottom: 14px; padding: 20px 20px 16px; border-radius: 14px;
  background: var(--bg-card, #fff); border: 1px solid var(--mist);
  box-shadow: 0 8px 20px -14px rgba(15,45,75,.25); animation: nrwIn 480ms var(--ease);
  transform: rotate(calc((var(--i) - 2.5) * 0.4deg));
}
.nrw-note:nth-child(3n) { background: color-mix(in oklab, var(--wheat) 16%, var(--bg-card)); }
.nrw-note:nth-child(4n) { background: color-mix(in oklab, var(--tide) 8%, var(--bg-card)); }
.nrw-note-place { font-family: var(--font-display); font-size: 17px; line-height: 1.4; color: var(--ink); margin: 0 0 10px; text-wrap: pretty; }
.nrw-note-name { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .06em; color: var(--tide-dark); }
@media (max-width: 820px) {
  .nrw-inner { grid-template-columns: 1fr; gap: 36px; }
  .nrw-wall { columns: 1; }
}

/* ===== StickyCTA — contextual join bar (idea #6) ===== */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; padding: 0 16px 16px; pointer-events: none; transform: translateY(140%); transition: transform 460ms cubic-bezier(.2,.8,.2,1); }
.sticky-cta.on { transform: none; }
.sticky-cta-inner {
  pointer-events: auto; max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--ink); color: #fff; border-radius: 16px; padding: 14px 16px 14px 24px;
  box-shadow: 0 20px 50px -16px rgba(15,45,75,.5);
}
.sticky-cta-text { font-family: var(--font-display); font-size: 17px; color: rgba(255,255,255,.85); text-wrap: balance; }
.sticky-cta-text strong { color: #fff; font-weight: 600; }
.sticky-cta-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.sticky-cta-close { width: 36px; height: 36px; border-radius: 50%; border: none; background: rgba(255,255,255,.1); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 180ms var(--ease); }
.sticky-cta-close:hover { background: rgba(255,255,255,.22); }
@media (max-width: 640px) {
  .sticky-cta-inner { flex-direction: column; align-items: stretch; gap: 12px; padding: 16px; }
  .sticky-cta-text { text-align: center; font-size: 15px; }
  .sticky-cta-actions { justify-content: center; }
}
