:root {
  --ink: #111111;
  --ink-soft: #3f342b;
  --cream: #fff7ea;
  --paper: #f7eddf;
  --gold: #d7a052;
  --crust: #7a4b2d;
  --rose: #f28fb3;
  --apricot: #f5aa72;
  --yellow: #f7d86a;
  --seafoam: #8cd5c2;
  --sky: #7ec8e8;
  --lavender: #b8a3e6;
  --white: #fffdf8;
  --shadow: 0 28px 80px rgba(80, 55, 35, 0.15);
  --small-shadow: 0 16px 44px rgba(80, 55, 35, 0.12);
  --radius-lg: 36px;
  --radius-md: 24px;
  --shell: min(1180px, calc(100% - 40px));
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: rgba(242, 143, 179, .45); color: var(--ink); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 999;
  transform: translateY(-160%); padding: 10px 15px; border-radius: 999px;
  background: var(--ink); color: white; text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 118px 0; position: relative; }
.eyebrow {
  margin: 0 0 17px;
  font-size: .76rem;
  line-height: 1.2;
  letter-spacing: .19em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--crust);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -.035em;
  line-height: 1.02;
}
h1 { font-size: clamp(3.65rem, 7.4vw, 7rem); margin-bottom: 28px; font-weight: 600; }
h2 { font-size: clamp(3rem, 5.3vw, 5.2rem); margin-bottom: 24px; font-weight: 600; }
h3 { font-size: 1.72rem; margin-bottom: 12px; font-weight: 600; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(255, 247, 234, .88);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(50, 37, 27, .08);
}
.header-inner {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.parent-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1;
}
.parent-brand-mark {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 22% 28%, var(--rose) 0 17%, transparent 19%),
    radial-gradient(circle at 72% 26%, var(--sky) 0 22%, transparent 24%),
    radial-gradient(circle at 40% 78%, var(--seafoam) 0 23%, transparent 25%),
    radial-gradient(circle at 82% 76%, var(--lavender) 0 21%, transparent 23%),
    var(--yellow);
  box-shadow: inset 0 0 0 1px rgba(17,17,17,.08);
}
.parent-brand strong { display: block; font-family: "Fraunces", Georgia, serif; font-size: 1.18rem; font-weight: 650; }
.parent-brand small { display: block; margin-top: 4px; letter-spacing: .23em; font-size: .57rem; font-weight: 800; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -5px;
  height: 2px;
  background: var(--ink);
  transition: right .25s ease;
}
.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-cta:hover, .nav-cta:focus-visible { background: var(--ink); color: var(--cream); transform: translateY(-1px); }
.menu-button { display: none; }

.hero {
  min-height: 860px;
  padding: 156px 0 88px;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: -10%; right: -10%; bottom: -115px;
  height: 220px;
  background: var(--cream);
  border-radius: 50% 50% 0 0;
  z-index: -1;
}
.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse at 7% 13%, rgba(242,143,179,.38), transparent 31%),
    radial-gradient(ellipse at 42% 4%, rgba(247,216,106,.32), transparent 25%),
    radial-gradient(ellipse at 82% 15%, rgba(126,200,232,.31), transparent 30%),
    radial-gradient(ellipse at 95% 75%, rgba(184,163,230,.29), transparent 31%),
    radial-gradient(ellipse at 45% 95%, rgba(140,213,194,.26), transparent 34%),
    linear-gradient(135deg, #fff8ed, #fdf3e6 46%, #fff9ef);
}
.hero-wash::before {
  content: "";
  position: absolute;
  inset: -20%;
  opacity: .22;
  background: repeating-conic-gradient(from 8deg at 73% 44%, rgba(255,255,255,.8) 0 2.5deg, transparent 3deg 8deg);
  filter: blur(2px);
}
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(38px, 7vw, 110px); }
.hero-copy { position: relative; z-index: 2; }
.hero-logo { width: min(480px, 92%); margin: 0 0 30px -6px; }
.hero-copy h1 { max-width: 760px; }
.hero-lede { max-width: 690px; font-size: clamp(1.08rem, 1.55vw, 1.3rem); color: var(--ink-soft); margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  min-height: 54px;
  padding: 13px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: .93rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--cream); box-shadow: 0 14px 30px rgba(17,17,17,.16); }
.button-dark:hover, .button-dark:focus-visible { box-shadow: 0 18px 38px rgba(17,17,17,.24); }
.button-ghost { background: rgba(255,255,255,.48); border: 1px solid rgba(17,17,17,.22); backdrop-filter: blur(12px); }
.play-icon { font-size: .75rem; transform: translateX(1px); }
.hero-notes { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 29px; margin-bottom: 0; color: var(--crust); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-notes span { display: inline-flex; align-items: center; gap: 10px; }
.hero-notes span:not(:last-child)::after { content: "•"; color: var(--gold); margin-left: 10px; }
.hero-visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.photo-orbit {
  position: absolute;
  width: 112%;
  aspect-ratio: 1;
  border-radius: 45% 55% 58% 42% / 43% 39% 61% 57%;
  background:
    radial-gradient(circle at 28% 22%, rgba(242,143,179,.83), transparent 32%),
    radial-gradient(circle at 72% 20%, rgba(247,216,106,.8), transparent 29%),
    radial-gradient(circle at 85% 68%, rgba(126,200,232,.72), transparent 30%),
    radial-gradient(circle at 38% 85%, rgba(140,213,194,.72), transparent 31%),
    radial-gradient(circle at 65% 58%, rgba(184,163,230,.58), transparent 34%);
  filter: blur(4px);
  opacity: .8;
  animation: breathe 9s ease-in-out infinite alternate;
}
.starter-card {
  width: min(465px, 88%);
  margin: 0;
  position: relative;
  z-index: 2;
  border-radius: 240px 240px 46px 46px;
  overflow: hidden;
  box-shadow: 0 40px 85px rgba(66, 40, 22, .28);
  border: 8px solid rgba(255,255,255,.72);
  background: white;
}
.starter-card img { width: 100%; aspect-ratio: .92; object-fit: cover; }
.starter-card figcaption {
  position: absolute;
  inset: auto 18px 18px;
  padding: 14px 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  background: rgba(255,247,234,.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(30,20,12,.15);
}
.starter-card figcaption strong { font-family: "Fraunces", Georgia, serif; font-size: 1.05rem; }
.starter-card figcaption span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: var(--crust); white-space: nowrap; }
.bubble { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.75); background: rgba(255,255,255,.22); box-shadow: inset 0 0 12px rgba(255,255,255,.5); z-index: 3; }
.bubble-one { width: 44px; height: 44px; right: 2%; top: 16%; animation: float 5.8s ease-in-out infinite; }
.bubble-two { width: 22px; height: 22px; left: 5%; top: 31%; animation: float 4.2s ease-in-out infinite reverse; }
.bubble-three { width: 31px; height: 31px; right: 7%; bottom: 18%; animation: float 5.1s ease-in-out infinite 1s; }

.brand-ribbon { overflow: hidden; background: var(--ink); color: var(--cream); padding: 14px 0; transform: rotate(-1.1deg); margin: -8px -20px 0; position: relative; z-index: 3; }
.ribbon-track { display: flex; align-items: center; gap: 24px; width: max-content; animation: marquee 28s linear infinite; font-size: .78rem; font-weight: 800; letter-spacing: .17em; white-space: nowrap; }
.ribbon-track i { color: var(--yellow); font-style: normal; }

.section-heading { max-width: 750px; margin-bottom: 54px; }
.section-heading > p:last-child { max-width: 690px; color: var(--ink-soft); font-size: 1.1rem; }
.promise { background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card {
  min-height: 338px;
  padding: 32px 27px;
  border: 1px solid rgba(62,45,33,.11);
  border-radius: var(--radius-md);
  background: rgba(255,253,248,.68);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.value-card:hover { transform: translateY(-7px); box-shadow: var(--small-shadow); background: var(--white); }
.value-card p { color: var(--ink-soft); margin-bottom: 0; font-size: .98rem; }
.value-icon { width: 72px; height: 72px; margin-bottom: 30px; display: grid; place-items: center; border-radius: 22px; }
.value-icon svg { width: 38px; height: 38px; fill: none; stroke: var(--ink); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.icon-gold { background: rgba(215,160,82,.28); }
.icon-sea { background: rgba(140,213,194,.32); }
.icon-rose { background: rgba(242,143,179,.27); }
.icon-lavender { background: rgba(184,163,230,.28); }

.story { padding-top: 72px; background: linear-gradient(180deg, var(--cream), #f7ecdd); }
.story-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(55px, 8vw, 120px); align-items: center; }
.story-image { position: relative; min-width: 0; }
.story-image::before {
  content: "";
  position: absolute;
  inset: -32px 42px 20px -36px;
  border-radius: 45% 55% 50% 50% / 50% 42% 58% 50%;
  background:
    radial-gradient(circle at 15% 20%, rgba(242,143,179,.48), transparent 32%),
    radial-gradient(circle at 72% 14%, rgba(247,216,106,.5), transparent 31%),
    radial-gradient(circle at 85% 72%, rgba(126,200,232,.46), transparent 32%),
    radial-gradient(circle at 27% 88%, rgba(140,213,194,.45), transparent 34%),
    #fff3e4;
  transform: rotate(-4deg);
}
.story-image img { position: relative; border-radius: 30px 140px 30px 140px; box-shadow: var(--shadow); width: 100%; min-height: 520px; object-fit: cover; }
.story-stamp {
  position: absolute;
  right: -22px;
  bottom: -36px;
  width: 160px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.05;
  background: var(--ink);
  color: var(--cream);
  border: 7px solid var(--cream);
  box-shadow: var(--small-shadow);
  transform: rotate(5deg);
}
.story-stamp span { font-size: .67rem; text-transform: uppercase; letter-spacing: .12em; max-width: 100px; }
.story-stamp strong { font-family: "Fraunces", Georgia, serif; font-size: 3.7rem; line-height: .82; margin: 8px 0 6px; color: var(--yellow); }
.story-copy > p:not(.eyebrow) { color: var(--ink-soft); }
.story-copy blockquote {
  margin: 35px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(85,60,42,.22);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  line-height: 1.23;
  font-weight: 600;
  letter-spacing: -.025em;
}

.listen { overflow: hidden; background: var(--ink); color: var(--cream); isolation: isolate; }
.listen-wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .72;
  background:
    radial-gradient(circle at 5% 10%, rgba(242,143,179,.42), transparent 30%),
    radial-gradient(circle at 34% 100%, rgba(140,213,194,.34), transparent 31%),
    radial-gradient(circle at 78% 12%, rgba(126,200,232,.3), transparent 30%),
    radial-gradient(circle at 100% 86%, rgba(184,163,230,.38), transparent 33%);
}
.listen-wash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(17,17,17,.34), rgba(17,17,17,.84));
}
.listen-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(55px, 8vw, 110px); align-items: center; }
.record-wrap { position: relative; display: grid; place-items: center; }
.record-halo { position: absolute; width: 118%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 0 0 35px rgba(255,255,255,.035), 0 0 0 70px rgba(255,255,255,.022); }
.song-cover { width: min(440px, 90%); aspect-ratio: 1; object-fit: cover; border-radius: 50%; box-shadow: 0 30px 90px rgba(0,0,0,.42); border: 8px solid rgba(255,255,255,.12); position: relative; }
body.audio-playing .song-cover { animation: slowspin 28s linear infinite; }
.listen .eyebrow { color: var(--yellow); }
.listen-copy h2 { margin-bottom: 17px; }
.song-intro { max-width: 650px; color: rgba(255,247,234,.74); font-size: 1.08rem; }
.lyric { font-family: "Fraunces", Georgia, serif; font-size: clamp(1.45rem, 2.5vw, 2.15rem); line-height: 1.35; color: white; margin: 31px 0 36px; }
.audio-player {
  max-width: 680px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 17px 20px;
  border-radius: 25px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(15px);
}
.audio-main-button {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  transition: transform .2s ease;
}
.audio-main-button:hover, .audio-main-button:focus-visible { transform: scale(1.06); }
.audio-details { flex: 1; min-width: 0; }
.audio-topline { display: flex; justify-content: space-between; gap: 15px; align-items: baseline; margin-bottom: 8px; }
.audio-topline strong { font-size: .95rem; }
.audio-topline span { color: rgba(255,247,234,.6); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.audio-progress {
  width: 100%;
  height: 5px;
  appearance: none;
  border: 0;
  border-radius: 99px;
  background: linear-gradient(to right, var(--yellow) 0 var(--progress, 0%), rgba(255,255,255,.2) var(--progress, 0%) 100%);
  cursor: pointer;
}
.audio-progress::-webkit-slider-thumb { appearance: none; width: 15px; height: 15px; border-radius: 50%; background: var(--cream); box-shadow: 0 2px 8px rgba(0,0,0,.4); }
.audio-progress::-moz-range-thumb { width: 15px; height: 15px; border: 0; border-radius: 50%; background: var(--cream); box-shadow: 0 2px 8px rgba(0,0,0,.4); }
.audio-time { display: flex; justify-content: space-between; margin-top: 4px; color: rgba(255,247,234,.55); font-size: .7rem; }

.join { background: var(--cream); }
.join-card {
  min-height: 440px;
  padding: clamp(45px, 7vw, 90px);
  display: grid;
  grid-template-columns: 1fr .83fr;
  gap: clamp(45px, 7vw, 100px);
  align-items: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 0% 0%, rgba(242,143,179,.36), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(126,200,232,.35), transparent 35%),
    radial-gradient(circle at 100% 100%, rgba(184,163,230,.34), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(140,213,194,.34), transparent 34%),
    linear-gradient(135deg, #fff4e4, #fffaf1);
  box-shadow: var(--shadow);
}
.join-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background: repeating-conic-gradient(from 0deg at 50% 50%, white 0 3deg, transparent 3deg 8deg);
  pointer-events: none;
}
.join-copy, .join-action { position: relative; z-index: 1; }
.join-copy p:last-child { color: var(--ink-soft); max-width: 630px; }
.email-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 15px;
  padding: 25px 0;
  text-decoration: none;
  border-top: 1px solid rgba(17,17,17,.25);
  border-bottom: 1px solid rgba(17,17,17,.25);
}
.email-link span { grid-column: 1; text-transform: uppercase; letter-spacing: .15em; font-size: .7rem; font-weight: 800; color: var(--crust); }
.email-link strong { grid-column: 1; font-family: "Fraunces", Georgia, serif; font-size: clamp(1.35rem, 2.25vw, 2.05rem); letter-spacing: -.02em; word-break: break-word; }
.email-link i { grid-column: 2; grid-row: 1 / 3; align-self: center; font-style: normal; font-size: 2.3rem; transition: transform .2s ease; }
.email-link:hover i, .email-link:focus-visible i { transform: translate(4px,-4px); }
.join-action > p { margin: 15px 0 0; font-size: .82rem; color: var(--ink-soft); }

.site-footer { padding: 40px 0; background: var(--ink); color: var(--cream); }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 30px; font-size: .8rem; }
.footer-brand strong { display: block; font-family: "Fraunces", Georgia, serif; font-size: 1.15rem; }
.footer-brand span { display: block; color: rgba(255,247,234,.58); margin-top: 2px; }
.site-footer p { margin: 0; color: rgba(255,247,234,.67); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay, .reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .32s; }

@keyframes breathe { to { transform: rotate(5deg) scale(1.035); } }
@keyframes float { 50% { transform: translateY(-17px) translateX(7px); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes slowspin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  :root { --header-height: 76px; }
  .site-nav {
    position: fixed;
    top: 74px;
    right: 20px;
    width: min(340px, calc(100% - 40px));
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,247,234,.97);
    box-shadow: var(--shadow);
    display: grid;
    gap: 15px;
    transform: translateY(-12px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .site-nav a { padding: 8px 4px; }
  .nav-cta { text-align: center; padding: 12px 18px !important; }
  .menu-button {
    width: 44px; height: 44px; padding: 10px; display: grid; place-content: center; gap: 5px;
    border: 1px solid rgba(17,17,17,.18); border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer;
  }
  .menu-button span:not(.sr-only) { display: block; width: 20px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 132px; }
  .hero-grid, .story-grid, .listen-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 18px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { min-height: 570px; }
  .starter-card { width: min(480px, 80%); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { gap: 90px; }
  .story-image { width: min(780px, 92%); }
  .listen-grid { text-align: center; }
  .listen-copy { max-width: 780px; margin: 0 auto; }
  .song-intro, .audio-player { margin-left: auto; margin-right: auto; }
  .join-card { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > p:nth-child(2) { display: none; }
  .footer-inner > p:last-child { text-align: right; }
}

@media (max-width: 640px) {
  :root { --shell: min(100% - 28px, 1180px); }
  body { font-size: 16px; }
  .section { padding: 84px 0; }
  h1 { font-size: clamp(3.1rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .parent-brand strong { font-size: 1.04rem; }
  .parent-brand-mark { width: 29px; height: 29px; }
  .hero { padding-top: 118px; padding-bottom: 65px; }
  .hero-logo { width: 92%; margin-bottom: 24px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-notes { display: grid; gap: 8px; }
  .hero-notes span:not(:last-child)::after { display: none; }
  .hero-visual { min-height: 480px; margin-top: 12px; }
  .starter-card { width: 91%; border-radius: 170px 170px 36px 36px; border-width: 6px; }
  .starter-card figcaption { inset: auto 10px 10px; flex-direction: column; align-items: flex-start; gap: 2px; }
  .photo-orbit { width: 108%; }
  .brand-ribbon { padding: 11px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: auto; }
  .story-image { width: calc(100% - 12px); }
  .story-image img { min-height: 410px; border-radius: 24px 90px 24px 90px; }
  .story-stamp { width: 130px; right: -12px; bottom: -45px; }
  .story-stamp strong { font-size: 3rem; }
  .story-grid { gap: 82px; }
  .record-halo { width: 105%; }
  .audio-player { padding: 14px; gap: 13px; }
  .audio-main-button { flex-basis: 50px; width: 50px; height: 50px; }
  .audio-topline span { display: none; }
  .join-card { padding: 42px 24px; border-radius: 28px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-inner > p:last-child { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
