/* One Human Family — brand tokens from OHF Original branding (Pantone Connect) */
/* Fonts: same files used on onehuman.family (One Human Family + Franie) */
@font-face {
  font-family: "One Human Family";
  src: url("/assets/fonts/OneHumanFamily.ttf") format("truetype");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Franie";
  src: url("/assets/fonts/FranieVF.woff2") format("woff2"),
       url("/assets/fonts/FranieVF.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Franie";
  src: url("/assets/fonts/Franie-Regular.woff2") format("woff2"),
       url("/assets/fonts/Franie-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Franie";
  src: url("/assets/fonts/Franie-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --chocolate: #572d2d;
  --mango: #f1be48;
  --teal: #007396;
  --pink: #f67599;
  --orange: #f4633a;
  --green: #3e7054;
  --red: #c54644;
  --aqua: #71b0b4;
  --nude: #e6baa8;
  --black: #101820;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-400: #bdbdbd;
  --gray-600: #616161;
  --gray-700: #424242;

  --bg: var(--white);
  --text: var(--black);
  --muted: var(--gray-600);
  --border: var(--gray-200);
  --surface: var(--gray-50);

  --font: "Franie", Helvetica, Arial, sans-serif;
  --font-display: "One Human Family", "Franie", Helvetica, Arial, sans-serif;
  --max: 1120px;
  --pad: 24px;
  --nav-h: 64px;
  --radius: 0;
  --ease: 160ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.brand-name,
.hero h1,
.page-band h1,
.ohf-display {
  font-family: var(--font-display);
}

h1 { font-size: clamp(28px, 4vw, 40px); }
h2 { font-size: clamp(22px, 3vw, 32px); }
h3 { font-size: 18px; }
p { margin: 0 0 16px; }

.muted { color: var(--muted); }
.center { text-align: center; }

/* Brand color bar */
.color-bar {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  height: 8px;
  width: 100%;
}

.color-bar span:nth-child(1) { background: var(--chocolate); }
.color-bar span:nth-child(2) { background: var(--mango); }
.color-bar span:nth-child(3) { background: var(--teal); }
.color-bar span:nth-child(4) { background: var(--pink); }
.color-bar span:nth-child(5) { background: var(--orange); }
.color-bar span:nth-child(6) { background: var(--green); }
.color-bar span:nth-child(7) { background: var(--red); }
.color-bar span:nth-child(8) { background: var(--aqua); }
.color-bar span:nth-child(9) { background: var(--nude); }
.color-bar span:nth-child(10) { background: var(--black); }

.color-bar.reverse span:nth-child(1) { background: var(--black); }
.color-bar.reverse span:nth-child(2) { background: var(--nude); }
.color-bar.reverse span:nth-child(3) { background: var(--aqua); }
.color-bar.reverse span:nth-child(4) { background: var(--red); }
.color-bar.reverse span:nth-child(5) { background: var(--green); }
.color-bar.reverse span:nth-child(6) { background: var(--orange); }
.color-bar.reverse span:nth-child(7) { background: var(--pink); }
.color-bar.reverse span:nth-child(8) { background: var(--teal); }
.color-bar.reverse span:nth-child(9) { background: var(--mango); }
.color-bar.reverse span:nth-child(10) { background: var(--chocolate); }

/* Layout */
.container {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
  max-width: 100%;
  box-sizing: border-box;
}

.site-header,
main,
.site-footer {
  max-width: 100%;
  overflow-x: clip;
}

.section {
  padding: 40px 0;
}

.section-sm {
  padding: 28px 0;
}

.section-tight {
  padding: 20px 0;
}

@media (min-width: 900px) {
  .section { padding: 48px 0; }
}

.stack-8 > * + * { margin-top: 8px; }
.stack-16 > * + * { margin-top: 16px; }
.stack-24 > * + * { margin-top: 24px; }

.grid-2 {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

.grid-3 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.grid-4 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Header — playful brand bar (not newspaper) */
.site-header,
.site-header--fun {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 0;
  color: var(--white);
}

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand--nav:hover .brand-name--nav {
  color: var(--mango);
}

.brand-emblem {
  width: 36px;
  height: 36px;
  color: var(--black);
  flex-shrink: 0;
}

.site-header--fun .brand-emblem--on-dark {
  width: 42px;
  height: 42px;
  color: var(--white);
}

.brand-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-transform: lowercase;
}

.brand-name--nav {
  color: var(--white);
  font-family: var(--font-display), Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 160ms ease;
}

@media (max-width: 720px) {
  .site-header--fun .brand-name--nav {
    display: none;
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 70px;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px var(--pad) 20px;
}

.site-nav.open { display: block; }

.site-nav ul,
.site-nav ul.site-nav__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: transparent;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
  cursor: pointer;
  list-style: none;
}

.nav-chip:hover {
  transform: translateY(-1px);
}

.nav-chip--teal:hover,
.nav-chip--teal[aria-current="page"] { background: var(--teal); border-color: var(--teal); color: var(--white); }
.nav-chip--mango:hover,
.nav-chip--mango[aria-current="page"] { background: var(--mango); border-color: var(--mango); color: var(--black); }
.nav-chip--pink:hover,
.nav-chip--pink[aria-current="page"] { background: var(--pink); border-color: var(--pink); color: var(--black); }
.nav-chip--aqua:hover,
.nav-chip--aqua[aria-current="page"] { background: var(--aqua); border-color: var(--aqua); color: var(--black); }
.nav-chip--orange:hover,
.nav-chip--orange[aria-current="page"] { background: var(--orange); border-color: var(--orange); color: var(--white); }
.nav-chip--green:hover,
.nav-chip--green[aria-current="page"] { background: var(--green); border-color: var(--green); color: var(--white); }

.nav-chip--more {
  border-style: dashed;
}

.nav-more__details {
  position: relative;
}

.nav-more__details > summary {
  list-style: none;
}

.nav-more__details > summary::-webkit-details-marker {
  display: none;
}

.nav-more__menu {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.header-mobile-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.btn-nav-play {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
  font-size: 13px;
  border-radius: 999px;
}

.btn.btn-nav-play:hover {
  border-color: var(--aqua);
  color: var(--aqua);
  background: transparent;
}

.btn.btn-nav-cta {
  min-height: 36px;
  padding: 0 16px;
  font-size: 13px;
  border-radius: 999px;
  background: var(--mango);
  border-color: var(--mango);
  color: var(--black);
}

.btn.btn-nav-cta:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.nav-chip--more.is-active {
  background: var(--mango);
  border-color: var(--mango);
  border-style: solid;
  color: var(--black);
}

@media (min-width: 1100px) {
  .header-mobile-actions { display: none; }

  .site-header--fun .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 64px;
  }

  .site-header--fun .site-nav {
    display: block;
    position: static;
    border: 0;
    padding: 0;
    background: transparent;
    min-width: 0;
    overflow: visible;
  }

  .site-header--fun .site-nav ul.site-nav__chips {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  .site-header--fun .site-nav ul.site-nav__chips > li {
    display: flex;
    flex-shrink: 0;
  }

  .site-header--fun .nav-chip {
    font-size: 12px;
    padding: 0 12px;
    min-height: 32px;
  }

  .site-header--fun .nav-more__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    padding: 10px;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 60;
    flex-direction: column;
  }

  .site-header--fun .header-actions {
    display: inline-flex;
  }
}

@media (max-width: 1099px) {
  .site-header--fun .site-nav.open {
    display: block;
  }

  .site-header--fun .site-nav.open ul.site-nav__chips {
    display: flex;
    flex-direction: column;
  }

  .site-header--fun .site-nav.open .nav-chip {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-lg {
  min-height: 48px;
  padding: 0 24px;
  font-size: 14px;
}

.btn:focus-visible,
.icon-link:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-primary:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}

.btn-on-dark:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.btn-teal {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.btn-teal:hover {
  background: #005f7a;
  border-color: #005f7a;
}

.btn-ghost {
  background: transparent;
  color: var(--teal);
  padding-inline: 0;
  border: 0;
  min-height: auto;
}

.btn-ghost:hover {
  color: var(--black);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(360px, 58vh, 520px);
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.hero--home {
  min-height: clamp(380px, 62vh, 560px);
}

.hero img,
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 32, 0.48);
  pointer-events: none;
}

/* Joyful home moments */
.joy-ticker {
  overflow: hidden;
  max-width: 100%;
  border-block: 1px solid var(--border);
  background: var(--white);
  padding: 12px 0;
}

.joy-ticker__track {
  display: flex;
  gap: 28px;
  width: max-content;
  max-width: none;
  animation: joy-marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  color: var(--black);
}

.joy-ticker__track span {
  white-space: nowrap;
}

.joy-ticker__track span i {
  font-style: normal;
  color: var(--orange);
  margin-inline: 8px;
}

@keyframes joy-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.video-moment {
  position: relative;
  min-height: clamp(260px, 42vh, 420px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
  color: #fff;
}

.video-moment video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-moment__scrim {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 32, 0.42);
}

.video-moment--quote .video-moment__scrim {
  background: rgba(16, 24, 32, 0.55);
}

.video-moment__copy {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
  max-width: 22ch;
}

.video-moment__copy--wide {
  max-width: 34ch;
}

.video-moment__copy h2 {
  color: #fff;
  font-size: clamp(26px, 4.5vw, 44px);
  margin: 0 0 10px;
}

.video-moment__copy p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.video-moment__copy blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.8vw, 28px);
  line-height: 1.35;
  font-weight: 400;
  color: #fff;
}

/* No native media chrome anywhere on the site */
video::-webkit-media-controls {
  display: none !important;
}

video::-webkit-media-controls-enclosure {
  display: none !important;
}

video {
  pointer-events: none;
}

.film-block,
.video-moment--film {
  background: var(--black);
}

.value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.value-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
}

.value-chip:nth-child(1) { background: var(--teal); }
.value-chip:nth-child(2) { background: var(--orange); }
.value-chip:nth-child(3) { background: var(--pink); }
.value-chip:nth-child(4) { background: var(--green); }
.value-chip:nth-child(5) { background: var(--mango); color: var(--black); }
.value-chip:nth-child(6) { background: var(--chocolate); }

.home-soft {
  text-align: center;
  padding: 72px 0;
}

.home-soft h2 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 12px;
}

.home-soft p {
  max-width: 34ch;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 16px;
}

.pulse-heart {
  display: inline-block;
  color: var(--pink);
  animation: heart-pulse 1.6s ease-in-out infinite;
}

@keyframes heart-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  .joy-ticker__track,
  .pulse-heart {
    animation: none !important;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 0 48px;
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-kicker,
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--teal);
  font-weight: 500;
}

.hero-kicker,
.eyebrow--light {
  color: var(--nude);
}

.hero h1 {
  max-width: 16ch;
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
  line-height: 1.1;
}

.hero-lead,
.hero p {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.5;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions--center {
  justify-content: center;
}

.hero .btn-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.hero .btn-primary:hover {
  background: var(--mango);
  border-color: var(--mango);
  color: var(--black);
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 24px;
  max-width: 20ch;
}

.manifesto-band {
  text-align: center;
  padding: 36px 0;
}

.manifesto-display {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  margin: 0 0 12px;
  color: var(--black);
  line-height: 1.15;
}

.pvm-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .pvm-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.pvm-item {
  padding-top: 16px;
  border-top: 3px solid var(--teal);
}

.pvm-item:nth-child(2) { border-top-color: var(--orange); }
.pvm-item:nth-child(3) { border-top-color: var(--mango); }

.pvm-item h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.pvm-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* Colorful symbol ribbon — surprise band between chapters */
.symbol-ribbon {
  overflow: hidden;
  max-width: 100%;
  border-block: 1px solid var(--border);
}

.symbol-ribbon__track {
  display: flex;
  width: max-content;
  animation: symbol-ribbon 36s linear infinite;
}

.symbol-ribbon__cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(18vw, 160px);
  min-width: 112px;
  height: 88px;
  flex-shrink: 0;
}

.symbol-ribbon__cell img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.symbol-ribbon__cell--teal { background: var(--teal); }
.symbol-ribbon__cell--mango { background: var(--mango); }
.symbol-ribbon__cell--pink { background: var(--pink); }
.symbol-ribbon__cell--aqua { background: var(--aqua); }
.symbol-ribbon__cell--orange { background: var(--orange); }
.symbol-ribbon__cell--green { background: var(--green); }
.symbol-ribbon__cell--chocolate { background: var(--chocolate); }

@keyframes symbol-ribbon {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.pillars-section {
  background: var(--white);
  padding-top: 56px;
  padding-bottom: 56px;
}

.pillars-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.pillars-dot {
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
}

.pillar-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pillar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 40px;
  }
}

@media (min-width: 1100px) {
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  padding: 0;
  border: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-num {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pillar h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 32ch;
}

.brand-mosaic-section {
  padding: 40px 0 48px;
  background: var(--surface);
  overflow: hidden;
}

.brand-mosaic-head {
  margin-bottom: 20px;
}

.brand-mosaic-head .muted {
  max-width: 48ch;
}

.brand-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
}

@media (max-width: 700px) {
  .brand-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}

.brand-mosaic img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: var(--white);
}

.tip-band {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .tip-band {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
  }
}

.tip-band__intro .muted {
  max-width: 36ch;
  margin-bottom: 24px;
}

.tip-band__list {
  display: grid;
  gap: 0;
}

.wear-split {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .wear-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
}

.wear-split__media {
  background: var(--black);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.wear-split__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wear-split__copy .section-title {
  margin-bottom: 12px;
}

.wear-split__copy > p {
  color: var(--muted);
  max-width: 40ch;
  margin-bottom: 8px;
}

.join-band {
  background: var(--black);
  color: var(--white);
  padding: 80px 0;
}

.join-band__inner {
  text-align: center;
}

.join-band h2 {
  color: var(--white);
  font-size: clamp(28px, 4.5vw, 44px);
  margin-bottom: 12px;
}

.join-band > .container > p,
.join-band__inner > p {
  max-width: 42ch;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.78);
}

.join-grid {
  display: grid;
  gap: 20px;
  text-align: left;
}

@media (min-width: 800px) {
  .join-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.join-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.join-card h3 {
  color: var(--white);
  margin: 0;
  font-size: 22px;
}

.join-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  flex: 1;
}

.join-card .btn-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  align-self: flex-start;
}

.join-card .btn-primary:hover {
  background: var(--mango);
  border-color: var(--mango);
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer .btn-on-dark {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

/* Manifesto / prose */
.manifesto {
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.55;
}

.manifesto strong {
  font-weight: 500;
  color: var(--chocolate);
}

.prose {
  max-width: 68ch;
}

.prose p + p { margin-top: 16px; }

.split {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }

  .split.reverse { grid-template-columns: 1.1fr 0.9fr; }
  .split.reverse > :first-child { order: 2; }
}

.media-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(1);
}

.media-frame.square img { aspect-ratio: 1; }
.media-frame.portrait img { aspect-ratio: 3 / 4; }

/* Values */
.value-card {
  border-top: 3px solid var(--value-color, var(--teal));
  padding: 20px 0 8px;
}

.value-card h3 {
  text-transform: capitalize;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* Products */
.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card .thumb {
  background: var(--gray-100);
  border: 1px solid var(--border);
  aspect-ratio: 1;
  overflow: hidden;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  font-size: 16px;
  margin: 0;
}

.product-meta {
  font-size: 13px;
  color: var(--muted);
}

.price {
  font-size: 15px;
  font-weight: 500;
}

.price.free { color: var(--green); }

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 500;
  background: var(--mango);
  color: var(--black);
}

.badge.soon {
  background: var(--nude);
}

/* News / tips */
.news-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.news-card h3 {
  font-size: 18px;
  margin: 0;
}

.news-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.tip-item {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.tip-item h3 {
  font-size: 16px;
  margin: 0;
}

.tip-item p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(1);
}

.gallery-grid a:hover img {
  filter: grayscale(0.35);
}

/* Forms */
.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  font-size: 13px;
  font-weight: 500;
}

.form-row .req { color: var(--red); }

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
  border-color: var(--teal);
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

/* Impact list */
.impact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.impact-list li {
  padding-left: 16px;
  border-left: 3px solid var(--teal);
}

.impact-list h3 {
  margin-bottom: 8px;
}

.impact-list p {
  margin: 0;
  color: var(--muted);
}

/* Footer */
.site-footer {
  margin-top: 48px;
  background: var(--black);
  color: var(--white);
}

.site-footer a { color: var(--nude); }
.site-footer a:hover { color: var(--mango); }

.footer-inner {
  padding: 48px 0 32px;
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .brand-emblem,
.footer-brand .brand-emblem--on-dark {
  color: var(--white);
  width: 48px;
  height: 48px;
}

.footer-brand .brand-lockup {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: none;
}

.footer-brand .brand--on-dark {
  gap: 12px;
  align-items: center;
}

.footer-brand .brand-name--on-dark {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

@media (max-width: 720px) {
  .footer-brand .brand-emblem--on-dark { display: none; }
  .footer-brand .brand-lockup { display: block; }
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  max-width: 36ch;
  margin: 0;
}

.footer-col h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--aqua);
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  text-align: center;
}

.footer-bottom a {
  color: var(--nude);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover {
  color: var(--mango);
}

/* Film blocks must not force giant page height */
.film-block video,
.video-moment--film video {
  width: 100%;
  max-height: min(52vh, 480px);
  object-fit: cover;
  display: block;
}

/* Page title band */
.page-band {
  padding: 40px 0 24px;
  border-bottom: 1px solid var(--border);
}

.page-band .eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.empty-state {
  border: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  background: var(--surface);
}

.empty-state .brand-emblem {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--teal);
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.accent-teal { color: var(--teal); }
.accent-chocolate { color: var(--chocolate); }
.bg-nude { background: var(--nude); }
.bg-surface { background: var(--surface); }

/* Community share */
.community-share-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 900px) {
  .community-share-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
}

.community-share-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 14px;
}

.community-share-panel {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 28px 24px;
}

.community-share-panel h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.community-share-panel .muted {
  margin: 0 0 20px;
}

.community-cta-band {
  background: var(--black);
  color: var(--white);
  padding: 64px 0;
}

.community-cta-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .community-cta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.community-cta-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  padding: 28px 24px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.community-cta-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.community-cta-card__mark {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--aqua);
  font-weight: 600;
}

.community-cta-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 3vw, 32px);
}

.community-cta-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
  max-width: 36ch;
}

.community-cta-card .btn-primary {
  align-self: flex-start;
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.community-cta-card .btn-primary:hover {
  background: var(--mango);
  border-color: var(--mango);
  color: var(--black);
}

/* —— Symbol page (animated, no pale-orange band) —— */
.sym-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.sym-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.sym-hero__scrim {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 32, 0.55);
  pointer-events: none;
}

.sym-hero__copy {
  position: relative;
  z-index: 1;
  padding: 48px 0 56px;
  max-width: 720px;
}

.sym-hero h1 {
  color: var(--white);
  font-size: clamp(32px, 6vw, 56px);
  margin: 0 0 12px;
}

.sym-hero__lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  max-width: 40ch;
  margin: 0 0 24px;
}

.sym-letters__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 960px) {
  .sym-letters__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
  }
}

.sym-stage {
  position: relative;
  background: var(--black);
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 32px 24px 48px;
  overflow: hidden;
}

.sym-stage__ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 220px;
  height: 220px;
  animation: sym-pulse 4.5s ease-in-out infinite;
}

.sym-stage__ring:nth-child(2) {
  width: 280px;
  height: 280px;
  animation-delay: 0.6s;
}

@keyframes sym-pulse {
  0%, 100% { opacity: 0.25; transform: scale(0.96); }
  50% { opacity: 0.55; transform: scale(1); }
}

.sym-stage__svg {
  width: min(220px, 60vw);
  height: auto;
  position: relative;
  z-index: 1;
}

.sym-draw {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 320ms ease, opacity 320ms ease;
}

.sym-draw.is-dim {
  stroke: rgba(255, 255, 255, 0.16);
  opacity: 0.55;
}

.sym-draw.is-lit.is-teal { stroke: var(--aqua); opacity: 1; }
.sym-draw.is-lit.is-orange { stroke: var(--mango); opacity: 1; }
.sym-draw.is-lit.is-aqua { stroke: var(--green); opacity: 1; }
.sym-draw.is-lit.is-white { stroke: #ffffff; opacity: 1; }

.sym-stage__caption {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.sym-letter-list {
  display: grid;
  gap: 16px;
}

.sym-letter-card {
  border: 1px solid var(--border);
  padding: 20px;
  background: var(--white);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms ease, transform 400ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.sym-letter-card.is-in {
  opacity: 1;
  transform: none;
}

.sym-letter-card.is-active {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal);
}

.sym-letter-card__mark {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 10px;
}

.sym-letter-card__mark--accent {
  border-color: var(--orange);
  color: var(--orange);
}

.sym-letter-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.sym-letter-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.sym-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 700px) {
  .sym-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sym-mosaic img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 500ms ease, transform 500ms ease;
}

.sym-mosaic img.is-in {
  opacity: 1;
  transform: none;
}

.sym-close {
  background: var(--black);
  color: var(--white);
  padding: 72px 0;
}

.sym-close .prose {
  max-width: 640px;
  margin-inline: auto;
}

.sym-close h2 {
  color: var(--white);
  font-size: clamp(28px, 4.5vw, 42px);
  margin: 0 0 20px;
}

.sym-close p {
  color: rgba(255, 255, 255, 0.8);
}

.sym-close__strong {
  margin: 28px 0 32px;
  color: var(--white) !important;
  font-size: 18px;
  line-height: 1.45;
}

.sym-close[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 450ms ease, transform 450ms ease;
}

.sym-close[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* Cheerful news rail — moves right → left */
.news-rail-section {
  overflow: hidden;
  padding-bottom: 8px;
}

.news-rail-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.news-rail-head .muted {
  max-width: 48ch;
  margin: 0;
}

.news-rail {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.news-rail__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: news-rtl 42s linear infinite;
}

.news-rail__track:hover {
  animation-play-state: paused;
}

@keyframes news-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.news-rail__card {
  flex: 0 0 min(320px, 78vw);
  min-height: 180px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid transparent;
}

.news-rail__card:hover {
  filter: brightness(1.05);
}

.news-rail__card--teal { background: var(--teal); }
.news-rail__card--mango { background: var(--mango); color: var(--black); }
.news-rail__card--aqua { background: var(--aqua); color: var(--black); }
.news-rail__card--green { background: var(--green); color: var(--black); }
.news-rail__card--orange { background: var(--orange); color: var(--black); }
.news-rail__card--pink { background: var(--pink); color: var(--black); }

.news-rail__date {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
}

.news-rail__title {
  font-family: var(--font-display), Georgia, serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
}

.news-rail__cta {
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Site-wide quote under nav — new one each page */
.nav-quote {
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.nav-quote.is-in {
  opacity: 1;
  transform: none;
}

.nav-quote__inner {
  padding: 10px 0;
  display: grid;
  gap: 2px;
  text-align: center;
}

.nav-quote__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua);
}

.nav-quote__text {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(15px, 2.2vw, 20px);
  line-height: 1.35;
  color: var(--white);
}

.nav-quote__note {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* Quote flash while navigating between pages */
.quote-transit {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.quote-transit.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-transit__panel {
  width: min(640px, calc(100% - 40px));
  text-align: center;
  padding: 24px;
}

.quote-transit__label {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aqua);
}

.quote-transit__text {
  margin: 0 0 10px;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(24px, 5vw, 40px);
  line-height: 1.25;
}

.quote-transit__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

/* Homepage random quote stage */
.quote-stage {
  background: var(--black);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}

.quote-stage__inner {
  max-width: 820px;
}

.quote-stage__kicker {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.quote-stage__text {
  margin: 0 0 16px;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.2;
  font-weight: 400;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.quote-stage__note {
  margin: 0 auto 28px;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  opacity: 0;
  transition: opacity 280ms ease;
}

.quote-stage__text.is-in,
.quote-stage__note.is-in {
  opacity: 1;
  transform: none;
}

/* Help / gathering / giving moments */
.moments-lead {
  max-width: 52ch;
  margin-bottom: 24px;
}

.moments-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .moments-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.moment-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background: var(--black);
  color: var(--white);
}

.moment-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.moment-card h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 14px 16px;
  font-size: 18px;
  background: rgba(16, 24, 32, 0.82);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .joy-ticker__track,
  .news-rail__track,
  .symbol-ribbon__track,
  .pulse-heart,
  .hero video,
  .video-moment video,
  .wear-split__media video,
  .moment-card video {
    animation: none !important;
  }
  .hero video,
  .video-moment video,
  .wear-split__media video,
  .moment-card video {
    display: none;
  }
  .quote-stage__text,
  .quote-stage__note,
  .nav-quote {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .quote-transit {
    display: none !important;
  }
  .sym-stage__ring {
    animation: none !important;
  }
  .sym-letter-card,
  .sym-mosaic img,
  .sym-close[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
