/* ============================================================
   GLOBAL RELAY TRACK — one lap, around the world
   Mobile-first. Every color is a shade or cousin of the ACS / Relay For Life
   palette; every font is a cousin of the brand fonts (Fraunces ~ Source Serif,
   Outfit ~ Poppins, Source Sans 3 = brand body).
   Works with no JavaScript: sections carry their own sky color, the rail
   simply doesn't move, clocks show a static line.
   ============================================================ */

:root {
  /* the sky — dawn to night to sunrise */
  --dawn: #FFF3E0;        /* warm cream-peach (gold at 15%) */
  --day: #F2E9FF;         /* lilac (RFL purple at 8%) */
  --lilac: #E5D6FF;
  --dusk: #7A3BC8;        /* between RFL purple and Light Purple */
  --purple: #5F249F;      /* RFL Purple */
  --violet: #A054FF;      /* RFL Light Purple */
  --orchid: #C9A0FF;
  --deep: #2A0F55;
  --night: #14062B;
  --sunrise: #FFB84D;     /* gold warmed toward ACS orange */
  --gold: #FFC600;        /* RFL gold */
  --amber: #FF9E1B;
  --ember: #FF7500;       /* ACS orange, sparingly */
  --blue: #2746F8;        /* ACS Core Blue — Remember */
  --sky: #63C7FF;
  --red: #FF0000;         /* ACS Core Red — Fight Back, hairlines only */
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --paper: #FDFAF3;

  --font-display: 'Fraunces', 'Source Serif 4', Georgia, serif;
  --font-head: 'Outfit', 'Poppins', system-ui, sans-serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  --wrap: 1100px;
  --rail: 0px;            /* becomes 56px on wide screens */
  --radius: 22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--night);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

h1, h2, h3 { margin: 0; line-height: 1.1; }
[id] { scroll-margin-top: 64px; }   /* anchor jumps land below the sticky header */
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
@media (min-width: 720px) { .wrap { padding: 0 32px; } }

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20, 6, 43, .82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hdr .bar { display: flex; align-items: center; min-height: 60px; padding: 8px 16px; }
.hdr .brand { display: flex; align-items: center; text-decoration: none; color: #fff; min-height: 44px; flex-shrink: 0; }
.hdr .brand img { height: 30px; width: auto; margin-right: 12px; }
.hdr .brand .name { font-family: var(--font-head); font-weight: 600; font-size: 15px; letter-spacing: .01em; line-height: 1.1; }
.hdr .brand .name small { display: block; font-weight: 400; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; margin-top: 2px; }
.hdr .spacer { flex: 1; }

.menu-box { position: absolute; opacity: 0; pointer-events: none; }
.menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px; padding: 0 14px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px; cursor: pointer;
  color: #fff; border: 1.5px solid rgba(255,255,255,.35); background: transparent;
}
.menu-btn:hover { background: rgba(255,255,255,.1); }
.nav {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: rgba(20, 6, 43, .97); padding: 8px 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.menu-box:checked ~ .nav { display: block; }
.menu-box:focus-visible ~ .menu-btn { outline: 3px solid var(--gold); }
.nav a {
  display: block; padding: 12px 6px; min-height: 44px;
  font-family: var(--font-head); font-weight: 500; font-size: 17px;
  text-decoration: none; color: #fff; border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav a .k { color: var(--gold); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-right: 10px; }
.nav a:hover { color: var(--gold); }
@media (min-width: 900px) {
  .menu-btn { display: none; }
  .nav { display: flex; position: static; background: transparent; padding: 0; border: 0; }
  .nav a { border: 0; padding: 10px 14px; font-size: 15px; }
  .nav a .k { display: none; }
}

/* ---------- the rail (progress + navigation) ---------- */
.rail { display: none; }
@media (min-width: 1180px) {
  :root { --rail: 56px; }
  .rail {
    display: block; position: fixed; left: 22px; top: 50%; transform: translateY(-50%);
    z-index: 40; width: 44px;
  }
  .rail ol { list-style: none; margin: 0; padding: 0; position: relative; }
  .rail ol::before {
    content: ""; position: absolute; left: 21px; top: 8px; bottom: 8px; width: 2px;
    background: rgba(255,255,255,.18); border-radius: 2px;
  }
  .rail .prog {
    position: absolute; left: 21px; top: 8px; width: 2px; height: 0;
    background: var(--gold); border-radius: 2px; transition: height .25s ease-out;
  }
  .rail li { position: relative; margin: 14px 0; }
  .rail a {
    display: flex; align-items: center; width: 44px; height: 44px; text-decoration: none;
    color: rgba(255,255,255,.8); position: relative;
  }
  .rail a::before {
    content: ""; position: absolute; left: 16px; width: 12px; height: 12px; border-radius: 50%;
    background: var(--deep); border: 2px solid rgba(255,255,255,.6); transition: transform .2s, background .2s, border-color .2s;
  }
  .rail a .lbl {
    position: absolute; left: 48px; white-space: nowrap; font-family: var(--font-head); font-size: 13px; font-weight: 600;
    background: rgba(20,6,43,.92); color: #fff; padding: 5px 10px; border-radius: 999px;
    opacity: 0; transform: translateX(-6px); transition: opacity .2s, transform .2s; pointer-events: none;
  }
  .rail a:hover .lbl, .rail a:focus-visible .lbl { opacity: 1; transform: none; }
  .rail li.on a::before { background: var(--gold); border-color: var(--gold); transform: scale(1.35); }
  .rail li.done a::before { background: var(--gold); border-color: var(--gold); }
}

/* ---------- stops (sections) ---------- */
.stop { position: relative; padding: 72px 0; overflow: hidden; }
@media (min-width: 720px) { .stop { padding: 104px 0; } }
.stop .wrap { position: relative; z-index: 2; padding-left: calc(20px + var(--rail)); }
@media (min-width: 720px) { .stop .wrap { padding-left: calc(32px + var(--rail)); } }

.chip {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase; padding: 7px 13px; border-radius: 999px;
  margin-bottom: 18px;
}
.h-display {
  font-family: var(--font-display); font-weight: 500; font-variation-settings: "SOFT" 60, "WONK" 1;
  font-size: 34px; font-size: clamp(30px, 6.4vw, 60px); line-height: 1.03; letter-spacing: -.015em; margin-bottom: 18px;
  text-wrap: pretty;
}
.h-display em { font-style: italic; font-weight: 400; }
.lede { font-size: 18px; font-size: clamp(17px, 2.1vw, 21px); line-height: 1.55; max-width: 60ch; text-wrap: pretty; }

.btn-row { display: flex; flex-wrap: wrap; margin: 26px -6px 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 12px 22px; margin: 6px; border-radius: 999px; text-decoration: none;
  font-family: var(--font-head); font-weight: 600; font-size: 16px; border: 2px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn.gold { background: var(--gold); color: var(--deep); box-shadow: 0 10px 30px -10px rgba(255,198,0,.7); }
.btn.gold:hover { background: #FFD23A; }
.btn.purple { background: var(--purple); color: #fff; }
.btn.purple:hover { background: var(--deep); }
.btn.ghost-dark { border-color: rgba(26,26,26,.35); color: var(--ink); background: rgba(255,255,255,.6); }
.btn.ghost-dark:hover { background: rgba(255,255,255,.9); }
.btn.ghost-light { border-color: rgba(255,255,255,.45); color: #fff; }
.btn.ghost-light:hover { background: rgba(255,255,255,.1); }
.btn.blue { background: var(--blue); color: #fff; }
.btn.blue:hover { background: #1B33C4; }

/* ---------- HERO: dawn ---------- */
.hero {
  position: relative; overflow: hidden; color: var(--ink);
  background: var(--dawn);
  background: linear-gradient(180deg, #FFF3E0 0%, #F8EAF5 45%, #EADDFF 100%);
  min-height: 560px; min-height: min(92svh, 860px);
  display: flex; align-items: flex-start; padding: 56px 0 58vw;
}
.hero .wrap { position: relative; z-index: 3; min-width: 0; padding-left: calc(20px + var(--rail)); }
@media (min-width: 720px) { .hero .wrap { padding-left: calc(32px + var(--rail)); } }
.hero .planet {
  position: absolute; z-index: 1; right: -26vw; bottom: -9vw; width: 124vw; max-width: 1500px; pointer-events: none;
}
.hero .planet::before { content: ""; display: block; padding-top: 71.4286%; }   /* 1400 × 1000 box */
.hero .planet > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero .planet .world {
  position: absolute; left: 27.1429%; top: 18%; width: 45.7143%; height: 64%;   /* the still picture's box */
  opacity: 0; transition: opacity .6s ease;
}
.hero .planet .world.on { opacity: 1; }
.hero .planet .still { transition: opacity .6s ease; }
@media (min-width: 600px) { .hero { padding-bottom: 46vw; } .hero .planet { right: -18vw; bottom: -8vw; width: 96vw; } }
@media (min-width: 900px) {
  .hero { align-items: center; padding-bottom: 110px; }
  .hero .planet { right: -22vw; bottom: -7vw; width: 70vw; }
  /* the text column stops before the globe's left edge (about 71vw at these widths) */
  .hero .lede { max-width: min(60ch, 62vw); }
}
@media (min-width: 1400px) { .hero .planet { right: -13vw; bottom: -8vw; width: 60vw; } }
.hero .glow {
  position: absolute; z-index: 0; left: -20%; top: -30%; width: 80vw; height: 80vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(closest-side, rgba(255,198,0,.28), rgba(255,198,0,0) 72%); filter: blur(12px); pointer-events: none;
}
/* the ring */
.hero .planet .lane { fill: none; stroke: rgba(95,36,159,.26); stroke-width: 44; stroke-linecap: butt; }   /* butt: the two half-arcs meet edge to edge, no doubled cap at the seam */
.hero .planet .line { fill: none; stroke: #fff; stroke-width: 3.5; stroke-dasharray: 26 30; }
/* phase the two half-arcs so the dashes continue through the seam at the left of the ring (half-ellipse ≈ 1143.6 long, period 56) */
.hero .planet > svg:first-child .line { stroke-dashoffset: 26; }
.hero .planet > svg:last-child .line { stroke-dashoffset: 2.4; }
/* the runner laps the whole ring: front half first (0–50%), then behind the world */
.hero .planet .runner {
  fill: var(--gold); stroke: var(--purple); stroke-width: 5;
  offset-path: path('M 170 520 A 530 140 0 0 0 1230 520 A 530 140 0 0 0 170 520');  /* counter-clockwise: left to right along the front */
  offset-distance: 0%;
  animation: lap 32s linear infinite;
}
.hero .planet .runner.front { animation: lap 32s linear infinite, front-half 32s steps(1, end) infinite; }
@keyframes lap { to { offset-distance: 100%; } }
@keyframes front-half { 0%, 49.9% { opacity: 1; } 50%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .hero .planet .runner { animation: none; offset-distance: 30%; }
  .hero .planet .runner.back { opacity: 0; }
}

.eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 16px;
}
.eyebrow::before { content: ""; display: inline-block; width: 26px; height: 2px; background: var(--gold); vertical-align: middle; margin-right: 10px; }
.hero h1 { font-size: 44px; font-size: clamp(40px, 9vw, 96px); color: var(--deep); }
.hero h1 em { color: var(--purple); }
.hero .lede { color: var(--ink-soft); font-size: 18px; font-size: clamp(17px, 2.3vw, 22px); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
  font-family: var(--font-head); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--purple);
  text-decoration: none; display: flex; flex-direction: column; align-items: center; min-height: 44px; justify-content: flex-end;
}
.scroll-cue span { display: block; width: 2px; height: 28px; background: var(--purple); margin-top: 8px; animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: scaleY(.4); transform-origin: top; opacity: .3; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 899px) { .scroll-cue { left: 20px; transform: none; align-items: flex-start; bottom: 18px; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue span { animation: none; } }

/* ---------- "I'm looking for…" shortcuts ---------- */
.looking { background: var(--paper); border-top: 1px solid rgba(95,36,159,.08); border-bottom: 1px solid rgba(95,36,159,.08); }
.looking .wrap { display: flex; flex-wrap: wrap; align-items: center; padding-top: 12px; padding-bottom: 12px; padding-left: calc(20px + var(--rail)); }
@media (min-width: 720px) { .looking .wrap { padding-left: calc(32px + var(--rail)); } }
.looking .lead { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--deep); margin: 6px 16px 6px 0; }
.looking a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 6px 16px; margin: 4px 8px 4px 0; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--purple); text-decoration: none;
  background: #fff; border: 1.5px solid rgba(95,36,159,.25); transition: background .15s, border-color .15s;
}
.looking a:hover { background: var(--purple); border-color: var(--purple); color: #fff; }

/* ---------- the "always Relay somewhere" ticker ---------- */
.somewhere {
  background: var(--deep); color: #fff; padding: 22px 0;
}
.somewhere .wrap { display: flex; flex-wrap: wrap; align-items: center; padding-left: calc(20px + var(--rail)); }
@media (min-width: 720px) { .somewhere .wrap { padding-left: calc(32px + var(--rail)); } }
.somewhere .lead {
  font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
  margin: 0 24px 8px 0; white-space: nowrap;
}
.clocks { display: flex; flex-wrap: wrap; margin: 0 -8px; }
.clock {
  font-family: var(--font-display); font-variation-settings: "SOFT" 80; font-size: 20px; margin: 4px 8px; white-space: nowrap;
}
.clock b { font-weight: 600; color: var(--gold); font-variant-numeric: tabular-nums; }
.clock .flag { margin-right: 6px; }
.clock .when { font-family: var(--font-body); font-size: 14px; opacity: .7; margin-left: 6px; }
.somewhere .qa { width: 100%; margin: 12px 0 0; font-family: var(--font-display); font-variation-settings: "SOFT" 80; font-size: 20px; color: #fff; }
.somewhere .qa .q { font-style: italic; color: var(--orchid); margin-right: 8px; }
.somewhere .qa a { color: var(--gold); font-weight: 600; text-decoration: none; border-bottom: 2px solid rgba(255,198,0,.5); display: inline-block; padding: 6px 0; min-height: 44px; }
.somewhere .qa a:hover { border-bottom-color: var(--gold); }

/* ---------- STOP 1: Celebrate (day) ---------- */
.s-learn { background: var(--day); color: var(--ink); }
.s-learn .chip { background: var(--purple); color: #fff; }
.s-learn .h-display { color: var(--deep); }
.three { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 34px; }
@media (min-width: 720px) { .three { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.word {
  position: relative; border-radius: var(--radius); padding: 26px 24px 24px; color: #fff; min-height: 220px;
  display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; text-decoration: none;
  transform: translateZ(0); transition: transform .25s ease;
}
.word:hover { transform: translateY(-4px); }
.word h3 { font-family: var(--font-display); font-variation-settings: "SOFT" 40; font-weight: 600; font-size: 36px; margin-bottom: 8px; }
.word p { margin: 0; font-size: 16px; line-height: 1.5; opacity: .95; }
.word .n { position: absolute; top: 18px; left: 22px; font-family: var(--font-head); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; opacity: .8; }
.word::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 170px; height: 170px; border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.word.celebrate { background: var(--purple); background: linear-gradient(160deg, #7A3BC8, #5F249F 60%, #4A1A80); }
.word.remember { background: var(--blue); background: linear-gradient(160deg, #3B5BFF, #2746F8 60%, #1B33C4); }
.word.fight { background: #B0224F; background: linear-gradient(160deg, #D42A5C, #B0224F 60%, #7A1040); }   /* crimson: ACS red pulled toward RFL purple, same weight as its neighbours */

/* ---------- STOP 2: the world ---------- */
.s-world { background: var(--lilac); background: linear-gradient(180deg, #F2E9FF 0%, #E5D6FF 100%); }
.s-world .chip { background: var(--gold); color: var(--deep); }
.s-world .h-display { color: var(--deep); }
.strip-wrap { margin: 30px 0 8px; position: relative; }
.strip {
  display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity;
  padding: 8px 20px 18px; margin: 0 -20px; scrollbar-width: thin; scrollbar-color: var(--purple) transparent;
}
.strip::-webkit-scrollbar { height: 6px; }
.strip::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }
.place {
  flex: 0 0 auto; scroll-snap-align: start; background: #fff; border-radius: 16px; padding: 12px 16px; margin-right: 10px;
  min-width: 150px; min-height: 64px; box-shadow: 0 8px 24px -14px rgba(59,20,102,.5); border: 1px solid rgba(95,36,159,.08);
}
.place .c { display: block; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--deep); white-space: nowrap; }
.place .c .flag { margin-right: 6px; }
.place .t { display: block; font-size: 13px; color: var(--ink-soft); font-variant-numeric: tabular-nums; margin-top: 2px; }
.place.now { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,198,0,.55), 0 8px 24px -14px rgba(59,20,102,.5); }
.place.now .t { color: var(--purple); font-weight: 600; }
.strip-note { font-size: 14px; color: var(--ink-soft); margin: 0 0 6px; }

/* ---------- STOP 3: do something (gold hour) ---------- */
.s-do { background: var(--dawn); background: linear-gradient(180deg, #E5D6FF 0%, #FFF3E0 30%, #FFE7B8 100%); }
.s-do .chip { background: var(--deep); color: var(--gold); }
.s-do .h-display { color: var(--deep); }
.tools { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 30px; }
@media (min-width: 560px) { .tools { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .tools { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.tool {
  display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
  background: #fff; border-radius: 18px; padding: 20px 20px 18px; min-height: 150px; position: relative;
  border: 1px solid rgba(95,36,159,.1); box-shadow: 0 10px 30px -18px rgba(59,20,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.tool:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -18px rgba(59,20,102,.55); }
.tool .ico { font-size: 28px; line-height: 1; margin-bottom: 12px; }
.tool h3 { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--deep); margin-bottom: 6px; }
.tool p { font-size: 15px; color: var(--ink-soft); margin: 0 0 14px; flex: 1; }
.tool .go { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--purple); }
.tool .go::after { content: " →"; }
.tool .tag { position: absolute; top: 16px; right: 16px; font-family: var(--font-head); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); background: var(--day); border-radius: 999px; padding: 4px 9px; }

/* ---------- dusk band ---------- */
.dusk {
  height: 140px; background: linear-gradient(180deg, #FFE7B8 0%, #E29A5C 20%, #9A4FB8 55%, #3A1670 85%, var(--deep) 100%);
  position: relative;
}
@media (min-width: 720px) { .dusk { height: 220px; } }
.dusk .sun {
  /* not a ball: a low, wide wash of warm light where the sun has just gone */
  position: absolute; left: 10%; right: 10%; bottom: 40%; height: 46%;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,224,138,.85) 0%, rgba(255,158,27,.45) 35%, rgba(255,158,27,0) 70%);
  filter: blur(6px); pointer-events: none;
}
.dusk .horizon { position: absolute; left: 0; right: 0; bottom: 0; height: 48%; background: var(--deep); border-radius: 50% 50% 0 0 / 40px 40px 0 0; }

/* ---------- STOP 4: Remember (night) ---------- */
.s-remember { background: var(--deep); background: linear-gradient(180deg, var(--deep) 0%, var(--night) 100%); color: #fff; padding-top: 40px; }
.s-remember .chip { background: var(--blue); color: #fff; }
.s-remember .h-display { color: #fff; }
.s-remember .lede { color: rgba(255,255,255,.82); }
.stars { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.stars i {
  position: absolute; width: 2px; height: 2px; border-radius: 50%; background: #fff; opacity: .7;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle { 0%,100% { opacity: .25; } 50% { opacity: .95; } }
@media (prefers-reduced-motion: reduce) { .stars i { animation: none; opacity: .6; } }
.bags { display: flex; justify-content: center; align-items: flex-end; margin: 36px auto 10px; max-width: 520px; }
.bags img { width: 30%; max-width: 150px; margin: 0 2%; filter: drop-shadow(0 0 22px rgba(255,198,0,.55)); animation: breathe 5s ease-in-out infinite; }
.bags img:nth-child(2) { width: 36%; max-width: 180px; animation-delay: -1.7s; }
.bags img:nth-child(3) { animation-delay: -3.1s; }
@keyframes breathe { 0%,100% { filter: drop-shadow(0 0 16px rgba(255,198,0,.35)); } 50% { filter: drop-shadow(0 0 30px rgba(255,198,0,.75)); } }
@media (prefers-reduced-motion: reduce) { .bags img { animation: none; } }
.quiet {
  font-family: var(--font-display); font-style: italic; font-variation-settings: "SOFT" 100; font-size: 20px; font-size: clamp(19px, 2.4vw, 26px);
  color: var(--orchid); text-align: center; max-width: 34ch; margin: 22px auto 0; line-height: 1.4;
}

/* ---------- STOP 5: Give (late night) ---------- */
.s-give { background: var(--night); color: #fff; }
.s-give .chip { background: rgba(255,255,255,.12); color: var(--gold); border: 1px solid rgba(255,198,0,.35); }
.s-give .h-display { color: #fff; }
.s-give .lede { color: rgba(255,255,255,.8); }
.gives { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 30px; }
@media (min-width: 760px) { .gives { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.give {
  border-radius: var(--radius); padding: 24px 22px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  display: flex; flex-direction: column;
}
.give h3 { font-family: var(--font-display); font-variation-settings: "SOFT" 60; font-weight: 600; font-size: 28px; margin-bottom: 10px; }
.give h3 span { color: var(--gold); }
.give p { color: rgba(255,255,255,.82); font-size: 16px; flex: 1; }
.give .btn { align-self: flex-start; margin: 6px 0 0; }
.share-row { display: flex; flex-wrap: wrap; margin: 4px -5px 0; }
.share-row a, .share-row button {
  display: inline-flex; align-items: center; min-height: 44px; padding: 8px 14px; margin: 5px; border-radius: 999px; text-decoration: none;
  font-family: var(--font-head); font-weight: 600; font-size: 14px; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); cursor: pointer;
}
.share-row a:hover, .share-row button:hover { background: rgba(255,255,255,.18); }
.share-row .wa { background: #1E9E5A; border-color: #1E9E5A; }   /* WhatsApp first: the channel our partners use most */
.share-row .wa:hover { background: #22B366; }
.share-row .copied { background: var(--gold); color: var(--deep); border-color: var(--gold); }
.media-note { margin-top: 26px; padding: 18px 20px; border-left: 3px solid var(--sky); background: rgba(99,199,255,.08); border-radius: 0 16px 16px 0; font-size: 16px; color: rgba(255,255,255,.85); }
.media-note a { color: var(--sky); font-weight: 600; }

/* ---------- STOP 6: sunrise / closing ---------- */
.s-sunrise {
  background: var(--sunrise);
  background: linear-gradient(180deg, var(--night) 0%, #4A1A80 22%, #B25AA8 48%, #FF9E1B 76%, #FFE08A 100%);
  color: #fff; padding-bottom: 200px;
}
.s-sunrise .chip { background: rgba(255,255,255,.18); color: #fff; }
.s-sunrise .h-display { color: #fff; text-shadow: 0 2px 30px rgba(42,15,85,.4); }
.s-sunrise .lede { color: rgba(255,255,255,.92); }
.s-sunrise .sun2 {
  position: absolute; left: -10%; right: -10%; bottom: 0; height: 240px; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at 50% 110%, rgba(255,243,196,.95) 0%, rgba(255,198,0,.55) 30%, rgba(255,198,0,0) 68%);
  filter: blur(10px);
}
@media (min-width: 720px) { .s-sunrise { padding-bottom: 240px; } .s-sunrise .sun2 { height: 340px; } }
.s-sunrise .btn.gold { box-shadow: 0 10px 30px -8px rgba(42,15,85,.5); }

/* ---------- footer ---------- */
.ftr { background: var(--paper); color: var(--ink-soft); padding: 34px 0 46px; font-size: 14px; }
.ftr .wrap { padding-left: calc(20px + var(--rail)); }
@media (min-width: 720px) { .ftr .wrap { padding-left: calc(32px + var(--rail)); } }
.ftr .disc { font-family: var(--font-head); font-weight: 600; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--purple); margin-bottom: 12px; }
.ftr .disc b { color: var(--red); }
.ftr .links a { color: var(--purple); text-decoration: none; font-weight: 600; margin-right: 14px; display: inline-block; min-height: 32px; line-height: 32px; }
.ftr .links a:hover { text-decoration: underline; }
.ftr .made { margin-top: 10px; font-family: var(--font-display); font-style: italic; color: var(--ink-soft); }

/* ---------- inner pages ---------- */
.page-hero { position: relative; overflow: hidden; color: #fff; padding: 64px 0 56px; }
@media (min-width: 720px) { .page-hero { padding: 90px 0 76px; } }
.page-hero .wrap { position: relative; z-index: 2; padding-left: calc(20px + var(--rail)); }
@media (min-width: 720px) { .page-hero .wrap { padding-left: calc(32px + var(--rail)); } }
.page-hero .h-display { color: #fff; }
.page-hero .lede { color: rgba(255,255,255,.88); }
.page-hero .globe { position: absolute; right: -32vw; top: -10vw; width: 80vw; max-width: 560px; opacity: .35; pointer-events: none; z-index: 1; }
@media (min-width: 900px) { .page-hero .globe { right: -6vw; top: -14vw; width: 46vw; } }
.ph-purple { background: linear-gradient(160deg, #7A3BC8, #5F249F 55%, #3B1466); }
.ph-blue { background: linear-gradient(160deg, #3B5BFF, #2746F8 55%, #14062B); }
.ph-night { background: linear-gradient(160deg, #3A1670, #14062B); }
.ph-gold { background: linear-gradient(160deg, #FFB84D, #FF9E1B 50%, #7A3BC8); }
.ph-sky { background: linear-gradient(160deg, #63C7FF, #2746F8 60%, #2A0F55); }
.body { background: var(--paper); color: var(--ink); padding: 44px 0 70px; }
.body .wrap { padding-left: calc(20px + var(--rail)); }
@media (min-width: 720px) { .body .wrap { padding-left: calc(32px + var(--rail)); } }
.prose { max-width: 66ch; }
.prose h2 { font-family: var(--font-head); font-weight: 600; font-size: 24px; color: var(--deep); margin: 34px 0 10px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--purple); margin: 22px 0 6px; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--purple); font-weight: 600; }
.prose .callout {
  font-family: var(--font-display); font-style: italic; font-variation-settings: "SOFT" 100; font-size: 21px; color: var(--deep);
  border-left: 4px solid var(--gold); padding: 6px 0 6px 20px; margin: 26px 0;
}
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 12px 0 20px; }
.prose th, .prose td { text-align: left; vertical-align: top; padding: 10px 12px; border: 1px solid #E5E2D9; }
.prose th { background: #F5EFE2; font-family: var(--font-head); font-weight: 600; color: var(--deep); }
.table-scroll { overflow-x: auto; }
.cards { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 24px 0; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
.card {
  display: block; text-decoration: none; color: var(--ink); background: #fff; border-radius: 18px; padding: 20px 20px 18px;
  border: 1px solid rgba(95,36,159,.1); box-shadow: 0 10px 30px -18px rgba(59,20,102,.45); transition: transform .2s;
}
.card:hover { transform: translateY(-3px); }
.card h3 { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--deep); margin: 0 0 6px; }
.card p { font-size: 15px; color: var(--ink-soft); margin: 0 0 10px; }
.card .go { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--purple); }
.card .go::after { content: " →"; }

/* ---------- cookie page ---------- */
.ck-hero-img { display: block; width: min(240px, 52vw); margin: 0 auto 22px; filter: drop-shadow(0 16px 34px rgba(31,10,60,.25)); }
.ck-big { font-family: var(--font-display); font-variation-settings: "SOFT" 60; font-weight: 600; text-align: center; font-size: 30px; font-size: clamp(28px, 4vw, 40px); color: var(--deep); margin-bottom: 8px; }
.ck-sub { font-family: var(--font-display); font-style: italic; text-align: center; font-size: 19px; color: var(--purple); max-width: 44ch; margin: 0 auto 26px; }
.ck-fine { background: #fff; border: 1.5px solid #E5E2D9; border-left: 5px solid var(--gold); border-radius: 16px; padding: 20px 24px; max-width: 62ch; margin: 26px auto 0; }
.ck-fine h2 { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--deep); margin: 0 0 10px; }
.ck-fine ul { margin: 0; padding-left: 20px; }
.ck-fine li { margin-bottom: 8px; font-size: 15px; }
.center { text-align: center; }

/* ---------- reveal (JS-only enhancement) ---------- */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- photos ---------- */
.word.photo { background: var(--deep); }
.word.photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0; background: var(--photo) center/cover no-repeat;
}
.word.photo::after {
  /* the color wash sits between the photo and the words */
  content: ""; position: absolute; inset: 0; z-index: 1; right: 0; top: 0; width: auto; height: auto; border-radius: 0;
}
.word.photo > * { position: relative; z-index: 2; }
.word.photo > .n { position: absolute; }
.word.celebrate.photo::after { background: linear-gradient(180deg, rgba(95,36,159,.10) 0%, rgba(95,36,159,.55) 40%, rgba(59,20,102,.97) 100%); }
.word.remember.photo::after { background: linear-gradient(180deg, rgba(39,70,248,.04) 0%, rgba(39,70,248,.30) 42%, rgba(27,51,196,.95) 100%); }
.word.remember.photo::before { background-position: 50% 35%; }
.word.fight.photo::after { background: linear-gradient(180deg, rgba(176,34,79,.08) 0%, rgba(176,34,79,.45) 40%, rgba(110,14,58,.96) 100%); }
.word.photo { min-height: 300px; }
.word.photo p { text-shadow: 0 1px 2px rgba(0,0,0,.35); }
.credit { font-size: 13px; color: var(--ink-soft); margin: 12px 0 0; }
.s-remember .credit, .s-give .credit, .s-sunrise .credit { color: rgba(255,255,255,.7); }

.postcards {
  display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity;
  padding: 18px 20px 26px; margin: 22px -20px 0; scrollbar-width: thin; scrollbar-color: var(--purple) transparent;
}
.postcard {
  flex: 0 0 auto; width: 230px; margin: 0 14px 0 0; scroll-snap-align: center;
  background: #fff; padding: 10px 10px 12px; border-radius: 6px; box-shadow: 0 14px 34px -16px rgba(59,20,102,.55);
  transform: rotate(-1.5deg);
}
.postcard:nth-child(2) { transform: rotate(1.2deg); margin-top: 10px; }
.postcard:nth-child(3) { transform: rotate(-.8deg); }
.postcard:nth-child(4) { transform: rotate(1.6deg); margin-top: 8px; }
.postcard img { width: 100%; height: 190px; object-fit: cover; border-radius: 3px; background: var(--lilac); }
.postcard figcaption { font-size: 13px; line-height: 1.4; color: var(--ink-soft); margin-top: 9px; }
.postcard figcaption b { display: block; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--deep); }
@media (min-width: 900px) {
  .postcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 26px; overflow: visible; padding: 18px 0 10px; margin: 26px 0 0; }
  .postcard:nth-child(5) { transform: rotate(-1.2deg); }
  .postcard:nth-child(6) { transform: rotate(1deg); margin-top: 6px; }
  .postcard { width: auto; margin-right: 0; }
  .postcard img { height: 210px; }
}

/* ---------- click-to-load video ---------- */
.watch {
  display: grid; grid-template-columns: 1fr; gap: 16px; align-items: center; margin-top: 30px;
  background: #fff; border-radius: var(--radius); padding: 14px; border: 1px solid rgba(95,36,159,.1); box-shadow: 0 14px 34px -18px rgba(59,20,102,.5);
}
@media (min-width: 720px) { .watch { grid-template-columns: minmax(0, 1.1fr) 1fr; gap: 26px; padding: 16px 26px 16px 16px; } }
.lite {
  position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; padding: 0; border-radius: 14px; overflow: hidden;
  background: var(--night); cursor: pointer;
}
.lite img { width: 100%; height: 100%; object-fit: cover; opacity: .92; transition: transform .4s ease, opacity .3s; }
.lite:hover img { transform: scale(1.03); opacity: 1; }
.lite .play {
  position: absolute; left: 50%; top: 50%; width: 68px; height: 68px; margin: -34px 0 0 -34px; border-radius: 50%;
  background: var(--gold); color: var(--deep); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,.6); transition: transform .2s;
}
.lite:hover .play { transform: scale(1.06); }
.lite .play svg { width: 34px; height: 34px; fill: currentColor; margin-left: 3px; }
.lite iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.watch-text h3 { font-family: var(--font-display); font-variation-settings: "SOFT" 60; font-weight: 600; font-size: 24px; color: var(--deep); margin: 8px 0 8px; }
.watch-text p { font-size: 15px; color: var(--ink-soft); margin: 0; }
.prose .watch { margin: 18px 0 26px; }

/* ---------- sunrise photo ---------- */
.sunrise-grid { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center; }
@media (min-width: 860px) { .sunrise-grid { grid-template-columns: 300px 1fr; gap: 48px; } }
.polaroid {
  margin: 0 auto; width: min(260px, 70vw); background: #fff; padding: 10px 10px 12px; border-radius: 6px;
  box-shadow: 0 20px 50px -18px rgba(20,6,43,.6); transform: rotate(-2deg);
}
@media (min-width: 860px) { .polaroid { width: 100%; } }
.polaroid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 30%; border-radius: 3px; background: var(--lilac); }
.polaroid figcaption { font-size: 12.5px; line-height: 1.4; color: var(--ink-soft); margin-top: 9px; }

/* ---------- answers (questions Relayers ask) ---------- */
.prose .idea { margin: 0 0 14px; padding: 14px 18px 12px; background: #fff; border: 1px solid rgba(95,36,159,.1); border-radius: 14px; box-shadow: 0 8px 24px -18px rgba(59,20,102,.4); }
.prose .idea h3 { margin: 0 0 4px; }
.prose .idea p { margin: 0 0 6px; font-size: 16px; }
.prose .idea .watch-out { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.prose .idea .watch-out b { color: var(--deep); }
.prose .source { font-size: 14.5px; color: var(--ink-soft); border-top: 1px solid #E5E2D9; padding-top: 14px; margin-top: 34px; }
.prose ol.steps { padding-left: 0; list-style: none; counter-reset: s; margin: 14px 0 6px; }
.prose ol.steps li { position: relative; padding-left: 44px; margin-bottom: 14px; counter-increment: s; }
.prose ol.steps li::before { content: counter(s); position: absolute; left: 0; top: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: var(--deep); font-family: var(--font-head); font-weight: 600; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.prose .story { font-family: var(--font-display); font-variation-settings: "SOFT" 100; font-size: 18px; line-height: 1.5; background: var(--day); border-radius: 18px; padding: 18px 22px; margin: 16px 0; }
.prose .story b { display: block; font-family: var(--font-head); font-weight: 600; font-size: 13.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--purple); margin-bottom: 6px; }
.ask { max-width: 66ch; margin: 40px 0 0; padding: 24px 26px 22px; border-radius: 20px; background: var(--deep); color: #fff; }
.ask h2 { font-family: var(--font-display); font-variation-settings: "SOFT" 60; font-weight: 600; font-size: 26px; color: #fff; margin: 0 0 8px; }
.ask p { color: rgba(255,255,255,.85); font-size: 15.5px; }
.ask .btn { margin: 6px 8px 0 0; }
.jumps { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 0 0 30px; }
.jumps .lbl { flex-basis: 100%; font-family: var(--font-head); font-weight: 600; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.jumps a {
  display: inline-flex; align-items: center; min-height: 40px; padding: 6px 14px; border-radius: 999px;
  background: #fff; border: 1.5px solid rgba(95,36,159,.28); color: var(--purple); text-decoration: none;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
}
.jumps a:hover { background: var(--day); border-color: var(--purple); }

/* ---------- glossary + templates (round 2) ---------- */
.prose .gloss { margin: 12px 0 18px; }
.prose .gloss dt { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--deep); margin: 16px 0 3px; }
.prose .gloss dd { margin: 0; font-size: 16px; color: var(--ink); }
.tpl-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 8px 0 8px; font-size: 14.5px; color: var(--ink-soft); }
.tpl-bar .btn { min-height: 40px; padding: 6px 16px; font-size: 14px; flex-shrink: 0; }
.prose .tpl { white-space: pre-wrap; word-wrap: break-word; font-family: var(--font-body); font-size: 15.5px; line-height: 1.55; color: var(--ink);
  background: #fff; border: 1px solid rgba(95,36,159,.14); border-left: 4px solid var(--gold); border-radius: 14px; padding: 18px 20px; margin: 0 0 30px; overflow-x: auto; }
@media (min-width: 900px) and (max-width: 1099px) { .nav a { padding: 10px 9px; font-size: 14px; } }
/* share row on a light page (Give) */
.prose .share-row { margin: 6px -5px 18px; }
.share-row.on-paper a, .share-row.on-paper button { color: var(--purple); border-color: rgba(95,36,159,.4); background: #fff; }
.share-row.on-paper a:hover, .share-row.on-paper button:hover { background: var(--day); }
.share-row.on-paper .wa { color: #fff; background: #1E9E5A; border-color: #1E9E5A; }
.share-row.on-paper .wa:hover { background: #22B366; }

/* ---------- stories from the track ---------- */
.story-list { display: grid; gap: 22px; margin: 18px 0 8px; }
.story-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid rgba(95,36,159,.1); box-shadow: 0 14px 34px -22px rgba(59,20,102,.5); }
.story-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; background: var(--lilac); }
.story-card .story-body { padding: 16px 20px 18px; }
.story-card .chip { background: var(--day); color: var(--purple); }
.story-card h3 { font-family: var(--font-display); font-variation-settings: "SOFT" 60; font-weight: 600; font-size: 22px; line-height: 1.2; color: var(--deep); margin: 10px 0 8px; }
.story-card p { font-size: 16px; margin: 0 0 10px; }
.story-card details.more { margin: 0 0 10px; }
.story-card details.more summary { cursor: pointer; list-style: none; display: inline-flex; align-items: center; min-height: 40px; padding: 6px 14px; border-radius: 999px; border: 1.5px solid rgba(95,36,159,.3); color: var(--purple); font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.story-card details.more summary::-webkit-details-marker { display: none; }
.story-card details.more[open] summary { margin-bottom: 10px; }
.story-card details.more[open] summary::after { content: " ↑"; }
.story-card .story-credit { font-size: 13.5px; color: var(--ink-soft); margin: 4px 0 0; }

/* ---------- site search ---------- */
.s-box { position: relative; display: flex; align-items: stretch; margin: 4px 8px 4px 0; flex: 1 1 260px; max-width: 420px; }
.s-box input { flex: 1; min-width: 0; min-height: 44px; padding: 8px 14px; border-radius: 999px 0 0 999px; border: 1.5px solid rgba(95,36,159,.25); border-right: 0; font: 600 14px var(--font-head); color: var(--ink); background: #fff; }
.s-box input::placeholder { color: var(--ink-soft); font-weight: 500; }
.s-box input:focus { outline: none; border-color: var(--purple); }
.s-box input:focus + button { border-color: var(--purple); }
.s-box button { min-height: 44px; padding: 0 16px; border-radius: 0 999px 999px 0; border: 1.5px solid rgba(95,36,159,.25); background: var(--purple); color: #fff; font: 600 14px var(--font-head); cursor: pointer; }
.s-box button:hover { background: var(--deep); }
.s-results { position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 30; background: #fff; border: 1px solid rgba(95,36,159,.18); border-radius: 16px; box-shadow: 0 18px 40px -16px rgba(42,15,85,.45); overflow: hidden; }
.s-results a { display: block; padding: 10px 14px; text-decoration: none; color: var(--ink); border-bottom: 1px solid rgba(95,36,159,.08); }
.s-results a:last-child { border-bottom: 0; }
.s-results a:hover, .s-results a.is-active { background: var(--day); }
.s-results .s-page { display: block; font: 600 13px var(--font-head); color: var(--purple); margin-bottom: 2px; }
.s-results .s-snip { display: block; font-size: 14px; line-height: 1.4; color: var(--ink-soft); }
.s-results mark { background: rgba(255,198,0,.55); color: inherit; padding: 0 1px; border-radius: 2px; }
.s-results .s-empty { padding: 12px 14px; font-size: 14px; color: var(--ink-soft); }
.s-results .s-empty a { color: var(--purple); font-weight: 600; }
.s-big { max-width: 100%; margin: 0 0 12px; }
.s-big input { font-size: 17px; min-height: 52px; padding-left: 18px; }
.s-big button { font-size: 15px; padding: 0 22px; }
.s-big .s-results { position: static; margin-top: 12px; }
.s-hint { font-size: 15px; color: var(--ink-soft); }
.hdr-search { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-right: 6px; border-radius: 50%; color: #fff; text-decoration: none; }
.hdr-search:hover { background: rgba(255,255,255,.12); }
@media (min-width: 900px) { .hdr-search { order: 2; margin-left: 4px; } .nav { order: 1; } }
/* results inside the "I'm looking for…" strip must not inherit the pill buttons */
.looking .s-results a, .looking .s-results a:hover {
  display: block; min-height: 0; margin: 0; padding: 10px 14px; border-radius: 0; border: 0;
  border-bottom: 1px solid rgba(95,36,159,.08); background: #fff; color: var(--ink); font-weight: 400; transition: none;
}
.looking .s-results a:last-child { border-bottom: 0; }
.looking .s-results a:hover, .looking .s-results a.is-active { background: var(--day); color: var(--ink); }
.looking .s-box { min-width: 0; }
.looking .s-results { width: min(520px, calc(100vw - 40px)); right: auto; }
/* header must never overflow a narrow phone: the brand text gives way, not the buttons */
.hdr .brand { min-width: 0; flex-shrink: 1; }
.hdr .brand .name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 440px) { .hdr .brand .name small { display: none; } .hdr-search { margin-right: 2px; } .hdr .bar { padding: 8px 12px; } }
