:root {
  --cream: #f4eedf;
  --cream-deep: #e8dfca;
  --paper: #fffdf7;
  --graphite: #232421;
  --graphite-soft: #4d4f48;
  --lime: #c9ff45;
  --lime-deep: #aee527;
  --line: 2px solid var(--graphite);
  --shadow: 8px 8px 0 var(--graphite);
  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --shell: min(1440px, calc(100% - 80px));
  --font: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--cream);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--graphite);
  background: var(--lime);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  display: block;
}

.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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--graphite);
  border-radius: 8px;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--lime-deep);
  outline-offset: 4px;
}

.announcement {
  display: grid;
  min-height: 36px;
  place-items: center;
  color: var(--cream);
  background: var(--graphite);
  border-bottom: 1px solid var(--graphite);
}

.announcement p {
  margin: 0;
  padding: 5px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
}

.announcement span {
  margin: 0 12px;
  color: var(--lime);
  font-size: 8px;
  vertical-align: 2px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  padding: 12px 40px;
  background: rgb(244 238 223 / 92%);
  border-bottom: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-mark {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  background: var(--lime);
  border: var(--line);
  border-radius: 50% 50% 44% 56%;
  transform: rotate(-5deg);
}

.brand-eye,
.brand-eye::after {
  position: absolute;
  top: 16px;
  width: 4px;
  height: 5px;
  content: "";
  background: var(--graphite);
  border-radius: 50%;
}

.brand-eye {
  left: 14px;
}

.brand-eye::after {
  top: 0;
  left: 16px;
}

.brand-smile {
  position: absolute;
  bottom: 11px;
  left: 17px;
  width: 15px;
  height: 8px;
  border-bottom: 2px solid var(--graphite);
  border-radius: 50%;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--graphite-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 54px);
}

.primary-nav a,
.closing-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 800;
}

.primary-nav a::after,
.closing-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--graphite);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.closing-nav a:hover::after,
.closing-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.bag-button,
.menu-toggle {
  cursor: pointer;
  background: transparent;
}

.bag-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 9px 8px 16px;
  font-size: 13px;
  font-weight: 800;
  border: var(--line);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.bag-button:hover {
  color: var(--paper);
  background: var(--graphite);
  transform: translateY(-2px);
}

.bag-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bag-count {
  display: grid;
  width: 27px;
  height: 27px;
  margin-left: 2px;
  place-items: center;
  color: var(--graphite);
  background: var(--lime);
  border-radius: 50%;
}

.menu-toggle {
  display: none;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(480px, 1.07fr);
  min-height: min(760px, calc(100vh - 118px));
  overflow: hidden;
  border-bottom: var(--line);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.33;
  background-image: linear-gradient(to right, rgb(35 36 33 / 10%) 1px, transparent 1px), linear-gradient(to bottom, rgb(35 36 33 / 10%) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, #000, transparent 68%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 5vw 72px max(40px, calc((100vw - 1440px) / 2));
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.eyebrow span {
  display: inline-flex;
  padding: 6px 11px;
  letter-spacing: 0.16em;
  background: var(--lime);
  border: 1.5px solid var(--graphite);
  border-radius: 99px;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.guide-heading h2,
.closing h2 {
  margin: 0;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(60px, 6.8vw, 112px);
}

.hero h1 em,
.story-copy h2 em {
  position: relative;
  display: inline-block;
  z-index: 0;
  font-style: normal;
}

.hero h1 em::after,
.story-copy h2 em::after {
  position: absolute;
  z-index: -1;
  right: -3%;
  bottom: 4%;
  left: -2%;
  height: 31%;
  content: "";
  background: var(--lime);
  border: 2px solid var(--graphite);
  transform: rotate(-1.5deg);
}

.hero-intro {
  max-width: 570px;
  margin: 34px 0 0;
  color: var(--graphite-soft);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 900;
  border: var(--line);
  border-radius: 14px;
  box-shadow: 5px 5px 0 var(--graphite);
  transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  box-shadow: 2px 2px 0 var(--graphite);
  transform: translate(3px, 3px);
}

.button-dark {
  color: var(--paper);
  background: var(--graphite);
}

.button-lime {
  background: var(--lime);
}

.text-link {
  font-size: 14px;
  font-weight: 900;
  border-bottom: 2px solid var(--graphite);
}

.text-link span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-points {
  display: flex;
  gap: 26px;
  margin: 54px 0 0;
  padding: 23px 0 0;
  list-style: none;
  border-top: 1.5px solid var(--graphite);
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
}

.hero-points span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--paper);
  background: var(--graphite);
  border-radius: 50%;
  font-size: 8px;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  background: var(--graphite);
  border-left: var(--line);
  isolation: isolate;
}

.hero-stage::before,
.hero-stage::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-stage::before {
  top: 0;
  right: 0;
  width: 56%;
  height: 40%;
  opacity: 0.18;
  background-image: radial-gradient(var(--cream) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}

.hero-stage::after {
  right: -70px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border: 48px solid var(--lime);
  border-radius: 50%;
}

.layer {
  transform: translate3d(var(--layer-x, 0), var(--layer-y, 0), 0);
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.stage-shadow {
  position: absolute;
  z-index: -1;
  top: 13%;
  left: 16%;
  width: 67%;
  height: 74%;
  background: var(--lime);
  border: var(--line);
  border-radius: 38px;
  transform: rotate(-5deg);
}

.lime-orbit {
  position: absolute;
  z-index: -1;
  top: 6%;
  left: 4%;
  width: 130px;
  height: 130px;
  border: 24px solid var(--lime);
  border-radius: 50%;
}

.hero-card {
  position: absolute;
  top: 9%;
  right: 13%;
  bottom: 8%;
  left: 12%;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--cream-deep);
  border: var(--line);
  border-radius: 38px;
  box-shadow: 11px 11px 0 rgb(0 0 0 / 32%);
  overflow: hidden;
}

.hero-card::before {
  position: absolute;
  top: -42px;
  right: -35px;
  width: 145px;
  height: 145px;
  content: "";
  background: var(--paper);
  border: var(--line);
  border-radius: 50%;
}

.hero-card-tag,
.product-badge {
  position: relative;
  z-index: 2;
  width: max-content;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: var(--paper);
  border: 1.5px solid var(--graphite);
  border-radius: 999px;
}

.stroller-illustration {
  min-height: 0;
  flex: 1;
}

.stroller-illustration svg {
  width: 100%;
  height: 100%;
  max-height: 450px;
  margin: auto;
  fill: none;
  stroke: var(--graphite);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stroller-illustration .fill-cream {
  fill: var(--paper);
}

.stroller-illustration .fill-lime {
  fill: var(--lime);
}

.stroller-illustration .fill-paper {
  fill: var(--paper);
}

.stroller-illustration .fill-dark {
  fill: var(--graphite);
}

.hero-card-caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1.5px solid var(--graphite);
  line-height: 1.2;
}

.hero-card-caption span {
  font-size: 12px;
  font-weight: 700;
}

.hero-card-caption strong {
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.mini-note {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  background: var(--paper);
  border: var(--line);
  box-shadow: 5px 5px 0 var(--graphite);
  font-size: 11px;
  line-height: 1.35;
}

.mini-note p {
  margin: 0;
}

.mini-note-top {
  top: 16%;
  right: 3%;
  transform: rotate(6deg);
}

.mini-note-top > span {
  color: var(--lime-deep);
  font-size: 27px;
}

.mini-note-bottom {
  bottom: 13%;
  left: 3%;
  transform: rotate(-5deg);
}

.scribble {
  display: block;
  width: 35px;
  height: 22px;
  border-top: 3px solid var(--graphite);
  border-bottom: 3px solid var(--graphite);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.doodle {
  position: absolute;
  z-index: 3;
  color: var(--lime);
}

.doodle-star {
  right: 5%;
  bottom: 26%;
  font-size: 50px;
  line-height: 1;
}

.doodle-loop {
  top: 7%;
  right: 23%;
  width: 55px;
  height: 23px;
  border-top: 3px solid var(--lime);
  border-radius: 50%;
  transform: rotate(20deg);
}

.marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: var(--lime);
  border-bottom: var(--line);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.marquee i {
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.categories,
.products {
  padding-top: 125px;
  padding-bottom: 125px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 62px;
}

.section-heading h2,
.story-copy h2,
.guide-heading h2 {
  font-size: clamp(48px, 5.5vw, 84px);
}

.section-heading .eyebrow {
  margin-bottom: 22px;
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 4px auto;
  color: var(--graphite-soft);
  font-size: 15px;
  line-height: 1.9;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 21px;
  background: var(--paper);
  border: var(--line);
  border-radius: var(--radius-md);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.category-card:nth-child(even) {
  margin-top: 28px;
}

.category-card:hover,
.category-card:focus-visible {
  box-shadow: var(--shadow);
  transform: translate(-4px, -4px);
}

.category-number {
  align-self: flex-end;
  font-size: 11px;
  font-weight: 900;
}

.category-art {
  display: grid;
  min-height: 230px;
  flex: 1;
  place-items: center;
}

.category-art svg {
  width: 92%;
  max-width: 220px;
  max-height: 210px;
  fill: none;
  stroke: var(--graphite);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s cubic-bezier(.2, .8, .2, 1);
}

.category-card:hover svg {
  transform: rotate(-3deg) scale(1.05);
}

.category-art .accent-fill {
  fill: var(--lime);
}

.category-art .face {
  stroke-width: 4.5;
}

.category-card h3 {
  margin: 2px 0 4px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.category-card p {
  margin: 0;
  color: var(--graphite-soft);
  font-size: 12px;
}

.round-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--lime);
  border: 1.5px solid var(--graphite);
  border-radius: 50%;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.category-card:hover .round-arrow {
  transform: rotate(45deg);
}

.products {
  width: 100%;
  padding-right: max(40px, calc((100vw - 1440px) / 2));
  padding-left: max(40px, calc((100vw - 1440px) / 2));
  color: var(--paper);
  background: var(--graphite);
}

.section-heading-inline {
  grid-template-columns: 1fr auto;
}

.products .eyebrow span {
  color: var(--graphite);
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-button {
  display: grid;
  width: 52px;
  height: 52px;
  cursor: pointer;
  place-items: center;
  color: var(--paper);
  background: transparent;
  border: 1.5px solid var(--paper);
  border-radius: 50%;
  font-size: 20px;
  transition: color 0.2s ease, background 0.2s ease;
}

.slider-button:hover {
  color: var(--graphite);
  background: var(--lime);
  border-color: var(--lime);
}

.product-scroll {
  display: grid;
  grid-template-columns: repeat(4, minmax(270px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding: 0 0 18px;
  scroll-behavior: smooth;
  scrollbar-color: var(--lime) #3b3d38;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

.product-card {
  min-width: 0;
  color: var(--graphite);
  background: var(--cream);
  border: 2px solid var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  scroll-snap-align: start;
}

.product-visual {
  position: relative;
  height: 350px;
  padding: 20px;
  background: var(--cream-deep);
  border-bottom: var(--line);
  overflow: hidden;
}

.product-visual::before {
  position: absolute;
  width: 160px;
  height: 160px;
  content: "";
  background: var(--lime);
  border: var(--line);
  border-radius: 50%;
}

.visual-bottle::before {
  right: -40px;
  bottom: -25px;
}

.visual-toy::before {
  top: 57px;
  left: -56px;
  border-radius: 14px;
  transform: rotate(20deg);
}

.visual-clothes::before {
  top: -50px;
  right: 36px;
}

.visual-stroller::before {
  right: -50px;
  bottom: -36px;
  width: 200px;
  height: 120px;
  border-radius: 50% 50% 0 0;
}

.product-visual svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  fill: var(--graphite);
  stroke: var(--graphite);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s cubic-bezier(.2, .8, .2, 1);
}

.product-card:hover .product-visual svg {
  transform: translateY(-8px) rotate(-2deg);
}

.product-visual svg .paper {
  fill: var(--paper);
}

.product-visual svg .lime {
  fill: var(--lime);
}

.product-badge {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
}

.product-info {
  padding: 24px;
}

.product-type {
  margin: 0 0 6px;
  color: var(--graphite-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.product-info h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

.product-bottom strong {
  font-size: 19px;
}

.add-button {
  display: grid;
  width: 44px;
  height: 44px;
  cursor: pointer;
  place-items: center;
  color: var(--paper);
  background: var(--graphite);
  border: 0;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.add-button:hover {
  color: var(--graphite);
  background: var(--lime);
  transform: rotate(90deg);
}

.add-button.added {
  color: var(--graphite);
  background: var(--lime);
}

.story {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: clamp(60px, 8vw, 135px);
  padding-top: 140px;
  padding-bottom: 140px;
}

.story-visual {
  position: relative;
  min-height: 650px;
}

.story-frame {
  position: absolute;
  inset: 25px 30px 35px 0;
  background: var(--graphite);
  border: var(--line);
  border-radius: 180px 180px var(--radius-lg) var(--radius-lg);
  box-shadow: 15px 15px 0 var(--lime);
  overflow: hidden;
}

.story-frame::before {
  position: absolute;
  inset: 20px;
  content: "";
  border: 1.5px solid rgb(244 238 223 / 35%);
  border-radius: 160px 160px 28px 28px;
}

.sun-shape {
  position: absolute;
  top: 45px;
  left: 49px;
  width: 100px;
  height: 100px;
  background: var(--lime);
  border: var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgb(201 255 69 / 14%);
}

.family-art {
  position: absolute;
  inset: 85px 10px 0;
}

.family-art svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--graphite);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.family-art .cream {
  fill: var(--cream);
}

.family-art .lime-fill {
  fill: var(--lime);
}

.story-sticker {
  position: absolute;
  right: 24px;
  bottom: 29px;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  color: var(--graphite);
  background: var(--lime);
  border: var(--line);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transform: rotate(8deg);
}

.story-dots {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -10px;
  width: 110px;
  height: 110px;
  opacity: 0.65;
  background-image: radial-gradient(var(--graphite) 2px, transparent 2px);
  background-size: 14px 14px;
}

.story-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 34px 0;
  color: var(--graphite-soft);
  font-size: 16px;
  line-height: 2;
}

.care-list {
  margin-bottom: 38px;
  border-top: var(--line);
}

.care-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1.5px solid var(--graphite);
}

.care-list span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--paper);
  background: var(--graphite);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.care-list p {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  margin: 1px 0 0;
  color: var(--graphite-soft);
  font-size: 13px;
}

.care-list strong {
  color: var(--graphite);
  font-size: 15px;
}

.age-guide {
  padding: 125px 0;
  background: var(--paper);
  border-top: var(--line);
  border-bottom: var(--line);
}

.age-guide-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(560px, 1.25fr);
  align-items: start;
  gap: clamp(50px, 8vw, 130px);
}

.guide-heading {
  position: sticky;
  top: 135px;
}

.guide-heading > p:last-child {
  max-width: 390px;
  margin: 30px 0 0;
  color: var(--graphite-soft);
}

.age-cards {
  display: grid;
  gap: 16px;
}

.age-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 19px;
  min-height: 190px;
  padding: 26px;
  background: var(--cream);
  border: var(--line);
  border-radius: var(--radius-md);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.age-card:hover,
.age-card:focus-visible {
  box-shadow: var(--shadow);
  transform: translate(-4px, -4px);
}

.age-card-featured {
  background: var(--lime);
}

.age-index {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--paper);
  background: var(--graphite);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.age-card strong {
  font-size: 12px;
  letter-spacing: 0.12em;
}

.age-card h3 {
  margin: 13px 0 4px;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.age-card p {
  margin: 0;
  color: var(--graphite-soft);
  font-size: 13px;
}

.age-arrow {
  align-self: end;
  font-size: 22px;
  font-weight: 900;
}

.closing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(440px, 1fr) minmax(420px, 0.8fr);
  min-height: 600px;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

.closing-copy {
  position: relative;
  z-index: 3;
}

.closing-copy > p {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.closing h2 {
  margin-bottom: 38px;
  font-size: clamp(58px, 7vw, 100px);
}

.closing h2 span {
  position: relative;
  z-index: 0;
  color: var(--graphite);
}

.closing h2 span::before {
  position: absolute;
  z-index: -1;
  inset: -4px -12px -4px -8px;
  content: "";
  background: var(--lime);
  border: var(--line);
  transform: rotate(2deg);
}

.closing-art {
  position: relative;
  height: 430px;
}

.rainbow {
  position: absolute;
  top: 75px;
  left: 50%;
  width: 330px;
  height: 290px;
  border: 40px solid var(--graphite);
  border-bottom: 0;
  border-radius: 170px 170px 0 0;
  transform: translateX(-50%);
}

.rainbow::before,
.rainbow::after {
  position: absolute;
  content: "";
  border-bottom: 0;
  border-radius: 140px 140px 0 0;
}

.rainbow::before {
  inset: 24px 24px 0;
  border: 35px solid var(--lime);
  border-bottom: 0;
}

.rainbow::after {
  inset: 74px 74px 0;
  border: 33px solid var(--graphite);
  border-bottom: 0;
}

.cloud {
  position: absolute;
  z-index: 2;
  bottom: 42px;
  width: 155px;
  height: 76px;
  background: var(--paper);
  border: var(--line);
  border-radius: 55px;
}

.cloud::before,
.cloud::after {
  position: absolute;
  content: "";
  background: var(--paper);
  border: var(--line);
  border-bottom-color: transparent;
  border-radius: 50%;
}

.cloud::before {
  top: -39px;
  left: 22px;
  width: 70px;
  height: 70px;
}

.cloud::after {
  top: -22px;
  right: 17px;
  width: 55px;
  height: 55px;
}

.cloud-one {
  left: 4%;
}

.cloud-two {
  right: 1%;
  transform: scale(0.82);
}

.closing-face {
  position: absolute;
  z-index: 4;
  top: 178px;
  left: 50%;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.2em;
  transform: translateX(-44%);
}

.closing-nav {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  display: flex;
  gap: 30px;
  justify-content: center;
  padding-top: 18px;
  border-top: 1.5px solid var(--graphite);
}

.toast {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100% - 44px));
  padding: 13px 18px;
  color: var(--paper);
  background: var(--graphite);
  border: 2px solid var(--lime);
  border-radius: 12px;
  box-shadow: 5px 5px 0 var(--lime);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2, .75, .25, 1);
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1100px);
  }

  .site-header {
    padding-inline: 24px;
  }

  .primary-nav {
    gap: 24px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  }

  .hero-copy {
    padding-left: 34px;
  }

  .hero h1 {
    font-size: clamp(57px, 6.6vw, 80px);
  }

  .hero-stage {
    min-height: 570px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card:nth-child(even) {
    margin-top: 0;
  }

  .category-card:nth-child(3),
  .category-card:nth-child(4) {
    margin-top: 8px;
  }

  .product-scroll {
    grid-template-columns: repeat(4, minmax(310px, 1fr));
  }

  .story {
    gap: 65px;
  }

  .care-list p {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100% - 40px);
  }

  html {
    scroll-padding-top: 80px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
    min-height: 72px;
    gap: 10px;
    padding: 10px 20px;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .brand-eye {
    top: 14px;
    left: 12px;
  }

  .brand-eye::after {
    left: 15px;
  }

  .brand-smile {
    bottom: 10px;
    left: 15px;
  }

  .primary-nav {
    position: fixed;
    z-index: 98;
    top: 108px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    justify-content: start;
    gap: 0;
    padding: 24px 20px;
    background: var(--cream);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 20px 6px;
    border-bottom: 1.5px solid var(--graphite);
    font-size: 24px;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    padding: 0;
    border: var(--line);
    border-radius: 50%;
  }

  .menu-toggle span:not(.sr-only) {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background: var(--graphite);
    transition: transform 0.2s ease, top 0.2s ease;
  }

  .menu-toggle span:nth-child(2) { top: 15px; }
  .menu-toggle span:nth-child(3) { top: 24px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 20px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

  .hero {
    display: block;
  }

  .hero-copy {
    min-height: 640px;
    padding: 80px 40px 70px;
  }

  .hero h1 {
    font-size: clamp(64px, 10vw, 92px);
  }

  .hero-stage {
    min-height: 700px;
    border-top: var(--line);
    border-left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading > p {
    margin-left: 0;
  }

  .section-heading-inline {
    grid-template-columns: 1fr auto;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story-visual {
    min-height: 700px;
  }

  .story-copy {
    max-width: 680px;
  }

  .age-guide-inner {
    grid-template-columns: 1fr;
  }

  .guide-heading {
    position: static;
  }

  .closing {
    grid-template-columns: 1fr;
    padding-top: 110px;
    padding-bottom: 90px;
  }

  .closing-art {
    height: 380px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
    --line: 1.7px solid var(--graphite);
    --radius-md: 22px;
  }

  .announcement p {
    letter-spacing: 0.06em;
  }

  .announcement span {
    margin-inline: 6px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .bag-button {
    width: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .bag-button > span:not(.bag-count) {
    display: none;
  }

  .bag-count {
    position: absolute;
    top: 6px;
    right: 5px;
    width: 16px;
    height: 16px;
    font-size: 9px;
  }

  .primary-nav {
    top: 108px;
  }

  .hero-copy {
    min-height: 580px;
    padding: 68px 20px 58px;
  }

  .eyebrow {
    margin-bottom: 19px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 72px);
    line-height: 0.98;
  }

  .hero-intro {
    margin-top: 26px;
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 28px;
  }

  .hero-points {
    gap: 10px;
    justify-content: space-between;
    margin-top: 42px;
  }

  .hero-points li {
    display: grid;
    justify-items: center;
    gap: 5px;
    font-size: 10px;
  }

  .hero-stage {
    min-height: 550px;
  }

  .stage-shadow {
    top: 15%;
    left: 10%;
    width: 79%;
    height: 70%;
  }

  .hero-card {
    top: 10%;
    right: 8%;
    bottom: 9%;
    left: 7%;
    padding: 16px;
    border-radius: 28px;
  }

  .hero-card-caption strong {
    font-size: 21px;
  }

  .hero-card-caption span {
    font-size: 10px;
  }

  .mini-note {
    padding: 8px 10px;
    font-size: 9px;
  }

  .mini-note-top {
    top: 16%;
    right: 2%;
  }

  .mini-note-bottom {
    bottom: 12%;
    left: 1%;
  }

  .doodle-star {
    display: none;
  }

  .marquee span {
    padding: 13px 20px;
    font-size: 12px;
  }

  .categories,
  .products {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .story-copy h2,
  .guide-heading h2 {
    font-size: clamp(44px, 13vw, 62px);
    line-height: 1;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card:nth-child(3),
  .category-card:nth-child(4) {
    min-height: 355px;
    margin-top: 0;
  }

  .category-art {
    min-height: 180px;
  }

  .section-heading-inline {
    grid-template-columns: 1fr;
  }

  .slider-controls {
    display: none;
  }

  .products {
    padding-right: 14px;
    padding-left: 14px;
  }

  .product-scroll {
    grid-template-columns: repeat(4, 84vw);
    gap: 12px;
  }

  .product-visual {
    height: 320px;
  }

  .story {
    gap: 55px;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .story-visual {
    min-height: 490px;
  }

  .story-frame {
    inset: 15px 12px 20px 0;
    border-radius: 100px 100px 28px 28px;
    box-shadow: 8px 8px 0 var(--lime);
  }

  .story-frame::before {
    inset: 12px;
    border-radius: 88px 88px 20px 20px;
  }

  .family-art {
    inset: 58px 0 0;
  }

  .sun-shape {
    top: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
  }

  .story-sticker {
    right: 15px;
    bottom: 18px;
    width: 80px;
    height: 80px;
    font-size: 10px;
  }

  .story-copy > p:not(.eyebrow) {
    font-size: 14px;
  }

  .care-list p {
    grid-template-columns: 1fr;
  }

  .age-guide {
    padding-block: 85px;
  }

  .age-card {
    grid-template-columns: 40px 1fr;
    min-height: 200px;
    padding: 21px;
  }

  .age-arrow {
    position: absolute;
    right: 20px;
    bottom: 18px;
  }

  .age-card h3 {
    font-size: 25px;
  }

  .closing {
    width: 100%;
    padding: 90px 14px 85px;
  }

  .closing h2 {
    font-size: clamp(57px, 16vw, 78px);
  }

  .closing-art {
    height: 330px;
  }

  .rainbow {
    top: 65px;
    width: 270px;
    height: 240px;
    border-width: 32px;
  }

  .rainbow::before {
    inset: 20px 20px 0;
    border-width: 29px;
  }

  .rainbow::after {
    inset: 61px 61px 0;
    border-width: 27px;
  }

  .cloud {
    bottom: 20px;
    transform: scale(0.78);
  }

  .cloud-one {
    left: -5%;
  }

  .cloud-two {
    right: -7%;
    transform: scale(0.65);
  }

  .closing-face {
    top: 148px;
    font-size: 23px;
  }

  .closing-nav {
    right: 14px;
    bottom: 20px;
    left: 14px;
    gap: 18px;
  }

  .closing-nav a {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .layer {
    transform: none !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
