@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif Display";
  src: url("../fonts/NotoSerifDisplay-VariableFont_wdth,wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif Display";
  src: url("../fonts/NotoSerifDisplay-Italic-VariableFont_wdth,wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-heading: "Noto Serif Display", Georgia, serif;

  --color-cream: #f9f2ea;
  --color-surface: #fffafb;
  --color-blush: #fbe2e8;
  --color-blush-deep: #f5ebeb;
  --color-brown: #a88263;
  --color-brown-dark: #7d5b41;
  --color-border: #ceab93;
  --color-accent: #7f7ca4;
  --color-accent-dark: #67648b;
  --color-ink: #304254;
  --color-muted: #6b7280;
  --color-footer: #1a1a1a;
  --color-white: #ffffff;
  --color-shopee: #ee4d2d;
  --color-dragon-red: #c0242e;
  --color-cycles: #e36a9b;
  --color-cradle: #74821c;
  --color-cycles-surface: #fdf3f6;
  --color-cradle-surface: #f5f9ef;

  --container-width: 75rem;
  --header-height: clamp(5rem, 8vw, 7.45rem);
  --section-space: 3rem;
  --section-content-space: 1.5rem;
  --radius-small: 0.625rem;
  --radius-medium: 1rem;
  --shadow-header: 0 0.25rem 1.25rem rgb(125 91 65 / 12%);
  --transition-base: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 20rem;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-ink);
  background: var(--color-cream);
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

strong,
b {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
}

:focus-visible {
  outline: 0.1875rem solid var(--color-accent);
  outline-offset: 0.25rem;
}

.container {
  width: min(var(--container-width), calc(100% - 3rem));
  margin-inline: auto;
}

.visually-hidden {
  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: 0.75rem;
  left: 0.75rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-small);
  color: var(--color-white);
  background: var(--color-accent-dark);
  transform: translateY(-200%);
  transition: transform var(--transition-base);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 0.125rem solid transparent;
  background: var(--color-cream);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.site-header.is-scrolled,
.site-header:has(.mobile-menu:not([hidden])) {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-header);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: clamp(1rem, 3vw, 3rem);
}

.site-logo {
  display: grid;
  align-self: stretch;
  flex: 0 0 auto;
  width: clamp(4.75rem, 9vw, 8.5rem);
  place-items: center;
}

.site-logo img {
  width: auto;
  max-height: calc(var(--header-height) - 0.75rem);
  object-fit: contain;
}

.nav-list--desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(1.25rem, 3vw, 3.25rem);
}

.nav-link {
  position: relative;
  display: inline-block;
  padding-block: 0.5rem;
  color: var(--color-brown);
  font-size: clamp(0.9rem, 1.25vw, 1.125rem);
  font-weight: 800;
  white-space: nowrap;
  transition: color var(--transition-base);
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0.15rem;
  left: 0;
  height: 0.125rem;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-brown);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-tools {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.85rem;
}

.nav-shop-cta {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-shopee);
  box-shadow: 0 0.45rem 1rem rgb(238 77 45 / 24%);
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.05vw, 0.95rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--transition-base), filter var(--transition-base), box-shadow var(--transition-base);
}

.nav-shop-cta img {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.nav-shop-cta:hover {
  box-shadow: 0 0.65rem 1.25rem rgb(238 77 45 / 32%);
  filter: brightness(1.06);
  transform: translateY(-0.0625rem);
}

.nav-shop-cta:focus-visible {
  outline: 0.1875rem solid var(--color-brown-dark);
  outline-offset: 0.1875rem;
}

.language-label {
  color: var(--color-brown);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 800;
  white-space: nowrap;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem clamp(0.875rem, 1.2vw, 1.125rem);
  border: 0.125rem solid var(--color-brown);
  border-radius: 999px;
  color: inherit;
  line-height: 1;
  text-decoration: none;
  transition: background-color var(--transition-base), opacity var(--transition-base);
}

.language-switcher,
.language-switcher:visited,
.language-switcher:hover,
.language-switcher:focus-visible {
  color: var(--color-brown);
}

.language-switcher span {
  display: inline-block;
  transition: transform var(--transition-base);
}

.language-switcher:hover,
.language-switcher:focus-visible {
  background: rgb(255 255 255 / 48%);
}

.language-switcher:hover span,
.language-switcher:focus-visible span {
  transform: scale(1.05);
}

.language-current {
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  border: 0.125rem solid var(--color-border);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 0.125rem;
  margin-block: 0.25rem;
  border-radius: 999px;
  background: var(--color-brown-dark);
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.375rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.375rem) rotate(-45deg);
}

.mobile-menu {
  border-top: 0.0625rem solid rgb(206 171 147 / 55%);
  background: var(--color-surface);
}

.nav-list--mobile {
  display: grid;
  padding-block: 0.75rem 1rem;
}

.nav-list--mobile .nav-link {
  display: block;
  padding: 0.8rem 0;
  border-bottom: 0.0625rem solid rgb(206 171 147 / 45%);
}

main {
  padding-top: var(--header-height);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: var(--header-height);
  background: var(--color-cream);
}

.hero__picture {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
}

.hero__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__brands {
  position: absolute;
  z-index: 1;
  top: clamp(2rem, 5.5vw, 5.5rem);
  left: clamp(60%, 63vw, 65%);
  width: min(55vw, 52rem);
  transform: translateX(-50%);
}

.hero__label {
  width: 100%;
  margin: 0 auto clamp(0.6rem, 1.2vw, 1rem);
  padding: clamp(0.65rem, 1.1vw, 1rem) clamp(1.25rem, 2.2vw, 2.25rem);
  border: 0.0625rem solid rgb(255 255 255 / 35%);
  border-radius: 999px;
  color: var(--color-accent);
  background: rgb(255 255 255 / 42%);
  font-size: clamp(1rem, 1.9vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.hero__label-country {
  color: var(--color-white);
}

.hero__logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.35rem, 1.1vw, 1rem);
}

.hero__logo-frame {
  position: relative;
  flex: 0 1 auto;
  overflow: hidden;
}

.hero__logo-frame img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
}

.hero__logo-frame--cycles {
  width: clamp(15rem, 26vw, 28rem);
  aspect-ratio: 1720 / 616;
}

.hero__logo-frame--cycles img {
  top: -114.5%;
  left: -8.4%;
  width: 116.3%;
}

.hero__logo-frame--cradle {
  width: clamp(11rem, 20vw, 22rem);
  aspect-ratio: 1864 / 912;
}

.hero__logo-frame--cradle img {
  top: -63.2%;
  left: -5.2%;
  width: 107.3%;
}

.hero__logo-separator {
  flex: 0 0 auto;
  color: var(--color-accent);
  font-size: clamp(1.5rem, 3vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}

.hero__cta {
  position: absolute;
  z-index: 1;
  bottom: clamp(2.5rem, 4.5vw, 4rem);
  left: clamp(2.25rem, 4.5vw, 5rem);
  width: clamp(17.5rem, 30vw, 33rem);
  display: inline-flex;
  min-height: clamp(3.75rem, 6.5vw, 6.5rem);
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-inline: clamp(1.35rem, 4vw, 4.5rem);
  border: 0.125rem solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-border);
  font-size: clamp(1.1rem, 2.25vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.hero__cta::after {
  content: "↓";
  font-size: 1.25em;
  line-height: 1;
}

.hero__cta:hover {
  background: var(--color-border);
}

.about-section {
  position: relative;
  background: var(--color-white);
  scroll-margin-top: var(--header-height);
}

.about-video {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about-video__frame {
  position: relative;
  height: clamp(16rem, 56.25vw, 90rem);
  overflow: hidden;
  background: var(--color-blush-deep);
}

.about-video__frame::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgb(48 66 84 / 12%);
  content: "";
  pointer-events: none;
}

.about-video__fallback {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--color-blush-deep);
}

.about-video__fallback img {
  width: min(60vw, 18rem);
  height: auto;
  opacity: 0.65;
}

.about-video iframe {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  min-width: 0;
  min-height: 0;
  border: 0;
  opacity: 0;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.about-video.is-loaded iframe {
  opacity: 1;
}

.about-video.is-loaded .about-video__fallback {
  opacity: 0;
}

.about-video__bar {
  display: flex;
  width: 100%;
  min-height: clamp(3.25rem, 5vw, 4.75rem);
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 7vw, 7rem);
  padding: 0.55rem clamp(1rem, 3vw, 2.5rem);
  background: var(--color-surface);
}

.about-video__bar p {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.25vw, 1.35rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: normal;
  text-transform: none;
}

.about-video__bar img {
  width: clamp(9rem, 15vw, 15rem);
  height: auto;
}

.about-deg {
  display: grid;
  grid-template-columns: minmax(14rem, 0.85fr) minmax(0, 1.35fr);
  align-items: stretch;
  gap: clamp(2rem, 5vw, 5rem);
  padding: var(--section-content-space) 0;
}

.about-deg__visual {
  display: grid;
  min-height: clamp(20rem, 34vw, 34rem);
  place-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--color-dragon-red);
}

.about-deg__visual img {
  width: min(100%, 20rem);
  height: auto;
}

.about-deg__content {
  align-self: center;
  max-width: 48rem;
}

.about-deg__content h2 {
  max-width: 24ch;
  margin: 0 0 clamp(1.5rem, 2.5vw, 2.25rem);
  color: #e12c32;
  font-family: var(--font-body);
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  font-weight: 800;
  font-style: normal;
  line-height: 1.15;
  text-wrap: balance;
}

.about-deg__content p {
  max-width: 62ch;
  margin-bottom: 1.25rem;
  color: #545454;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.7;
  text-align: justify;
}

.about-deg__content p:last-child {
  margin-bottom: 0;
}

.about-deg__content strong {
  font-weight: 800;
}

.products-section {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  scroll-margin-top: var(--header-height);
}

.products-visual {
  position: relative;
  height: clamp(18rem, 35vw, 36rem);
  overflow: hidden;
  isolation: isolate;
}

.products-visual__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.products-bar {
  display: grid;
  width: 100%;
  min-height: clamp(3.25rem, 5vw, 4.75rem);
  place-items: center;
  padding: 0.55rem 1rem;
  background: var(--color-surface);
}

.products-bar h2 {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.25vw, 1.35rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: normal;
  text-transform: none;
}

.products-visual__brands {
  position: absolute;
  z-index: 1;
  top: 56%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1.2vw, 1.25rem);
  transform: translate(-50%, -50%);
}

.products-visual__brands > span {
  color: var(--color-accent);
  font-size: clamp(1.5rem, 3vw, 3.5rem);
  font-weight: 800;
}

.products-visual__logo {
  position: relative;
  overflow: hidden;
}

.products-visual__logo img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
}

.products-visual__logo--cycles {
  width: clamp(13rem, 25vw, 28rem);
  aspect-ratio: 1720 / 616;
}

.products-visual__logo--cycles img {
  top: -114.5%;
  left: -8.4%;
  width: 116.3%;
}

.products-visual__logo--cradle {
  width: clamp(9rem, 18vw, 21rem);
  aspect-ratio: 1864 / 912;
}

.products-visual__logo--cradle img {
  top: -63.2%;
  left: -5.2%;
  width: 107.3%;
}

.products-shell {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: none;
  padding: 0;
}

.products-shell__block {
  min-height: clamp(10rem, 18vw, 16rem);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-bottom: 0.0625rem solid rgb(206 171 147 / 45%);
}

.products-shell__block h3 {
  margin: 0;
  color: var(--color-brown-dark);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 400;
}

.products-shell__block--reason {
  min-height: 0;
  padding: 0;
  border-bottom: 0;
}

.products-shell__block--cycles {
  background: #fffafb;
}

.products-shell__block--cradle {
  background: #ffffff;
}

.products-reason {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: clamp(30rem, 38vw, 36rem);
  padding: clamp(2rem, 5vw, 4rem);
  width: min(92vw, 90rem);
  margin-inline: auto;
}

.products-reason--cycles {
  color: var(--color-cycles);
  background: transparent;
}

.products-reason--cradle {
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  color: var(--color-cradle);
  background: transparent;
  padding-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

.products-reason__content {
  max-width: 62ch;
}

.products-reason__content h3 {
  margin: 0 0 clamp(1.25rem, 2vw, 1.85rem);
  color: currentColor;
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  font-weight: 800;
  font-style: normal;
  line-height: 1.2;
  text-wrap: balance;
}

.products-reason__content p {
  max-width: 62ch;
  margin: 0 0 clamp(1rem, 2vw, 1.75rem);
  color: currentColor;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.65;
  text-align: justify;
}

.products-reason__content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 50.0625rem) {
  :root {
    --section-space: 4rem;
    --section-content-space: 2rem;
  }

  .products-reason__content {
    width: 100%;
    max-width: none;
  }

  .products-reason__content p {
    max-width: none;
    font-size: clamp(1.1rem, 1.45vw, 1.3rem);
  }

  .products-reason--cradle .products-reason__content {
    justify-self: end;
  }
}

.products-reason__media {
  width: 100%;
  max-width: 32rem;
  margin: 0;
  justify-self: center;
}

.products-reason__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.products-reason--cradle .products-reason__media {
  justify-self: center;
}

.products-story {
  display: grid;
  gap: clamp(1.75rem, 3vw, 3rem);
  padding: var(--section-content-space) 0 calc(var(--section-content-space) / 2);
  background: transparent;
  width: min(92vw, 90rem);
  margin-inline: auto;
}

.products-shell__block--story {
  padding-top: 0;
  border-bottom: 0;
  background: #fffafb;
}

.products-story__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 2rem);
  /* Match the image bounds inside the two preceding editorial blocks. */
  width: calc(100% - clamp(4rem, 10vw, 8rem));
  max-width: none;
  margin-inline: auto;
}

.products-story__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.products-story__content {
  text-align: center;
}

.products-story__content h3 {
  margin: 0 0 clamp(1.25rem, 2vw, 2rem);
  color: var(--color-brown);
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 800;
  font-style: normal;
  line-height: 1.2;
  text-wrap: balance;
}

.products-story__body {
  width: min(100% - 2rem, 94ch);
  max-width: none;
  margin-inline: auto;
}

.products-story__body p {
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  color: var(--color-brown);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
}

.products-story__body p:last-child {
  margin-bottom: 0;
}

@media (min-width: 50.0625rem) {
  .products-story__body {
    width: calc(100% - clamp(4rem, 10vw, 8rem));
  }
}

.products-catalog {
  padding: calc(var(--section-content-space) / 2) 0 var(--section-content-space);
  background: var(--color-white);
}

.products-catalog__inner {
  width: min(92vw, 90rem);
  margin-inline: auto;
}

.products-catalog__inner > h3 {
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-brown);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.products-catalog__groups {
  display: grid;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

.products-catalog__grid {
  --catalog-gap: clamp(1rem, 2.4vw, 2.25rem);

  display: grid;
  gap: var(--catalog-gap);
  margin-inline: auto;
}

.products-catalog__grid--cycles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.products-catalog__grid--cradle {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 68%;
}

.products-catalog__grid--gifts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 42rem);
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(3.5rem, auto);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.75rem);
  overflow: hidden;
  border-radius: clamp(1.5rem, 3vw, 2.75rem);
  isolation: isolate;
}

.product-card--cycles {
  background: #f7e0e8;
}

.product-card--cradle {
  background: #e6f2ad;
}

.product-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: inherit;
}

.product-card__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card__image--hover {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.product-card--gift .product-card__image--default {
  transition: transform 420ms ease;
}

@media (hover: hover) {
  .product-card--has-hover:hover .product-card__image--hover {
    opacity: 1;
  }

  .product-card--gift:hover .product-card__image--default {
    transform: scale(1.05);
  }
}

.product-card__name {
  align-self: center;
  margin: 0;
  color: var(--color-brown-dark);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-wrap: balance;
}

.product-card__badge {
  position: absolute;
  z-index: 2;
  top: clamp(0.75rem, 1.5vw, 1.25rem);
  left: clamp(0.75rem, 1.5vw, 1.25rem);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-brown);
  font-size: clamp(0.72rem, 1vw, 0.85rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.product-card__link {
  position: absolute;
  z-index: 3;
  inset: 0;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
}

.product-card__link:focus-visible {
  outline: 0.1875rem solid var(--color-brown-dark);
  outline-offset: -0.375rem;
}

.product-card__unavailable {
  margin: 0;
  color: var(--color-brown-dark);
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: center;
}

.products-catalog__status {
  width: min(100%, 52rem);
  margin: 1.5rem auto 0;
  color: var(--color-brown-dark);
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.products-marketplaces {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin: clamp(2rem, 4vw, 3.5rem) auto 0;
}

.products-marketplaces__link {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem clamp(1.25rem, 2vw, 1.75rem);
  border: 0.125rem solid transparent;
  border-radius: 999px;
  color: var(--color-white);
  box-shadow: 0 0.65rem 1.5rem rgb(40 29 22 / 14%);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.25vw, 1.05rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.products-marketplaces__link--shopee {
  background: #ee4d2d;
}

.products-marketplaces__link--tiktok {
  background: #111111;
}

.products-marketplaces__link img {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.products-marketplaces__link--tiktok img {
  filter: invert(1);
}

.products-marketplaces__link:hover {
  box-shadow: 0 0.85rem 1.75rem rgb(40 29 22 / 20%);
  filter: brightness(1.06);
  transform: translateY(-0.125rem);
}

.products-marketplaces__link:focus-visible {
  outline: 0.1875rem solid var(--color-brown-dark);
  outline-offset: 0.25rem;
}

.product-modal[hidden] {
  display: none;
}

.product-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 2rem);
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgb(40 29 22 / 68%);
  backdrop-filter: blur(0.25rem);
}

.product-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(94vw, 86rem);
  height: min(90vh, 54rem);
  max-height: 90svh;
  overflow: hidden;
  border-radius: clamp(1.25rem, 2.5vw, 2.25rem);
  background: var(--color-white);
  box-shadow: 0 1.5rem 5rem rgb(40 29 22 / 28%);
}

.product-modal__close {
  position: absolute;
  z-index: 5;
  top: 0.85rem;
  right: 0.85rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--color-brown-dark);
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 0.25rem 1rem rgb(40 29 22 / 15%);
  font-family: inherit;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.product-modal__close:focus-visible,
.product-modal__gallery-button:focus-visible,
.product-modal__shop:focus-visible {
  outline: 0.1875rem solid var(--color-brown-dark);
  outline-offset: 0.1875rem;
}

.product-modal__layout {
  display: grid;
  grid-template-columns: minmax(21rem, 0.9fr) minmax(0, 1.1fr);
  height: 100%;
}

.product-modal__left {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 2.5vw, 2.5rem);
  overflow: hidden;
}

.product-modal__gallery {
  position: relative;
  min-height: 0;
  flex: 0 1 auto;
  aspect-ratio: 1 / 1.17;
  overflow: hidden;
  border-radius: clamp(1rem, 2vw, 1.75rem);
  background: #f7e0e8;
}

.product-modal--cradle .product-modal__gallery {
  background: #e6f2ad;
}

.product-modal__gallery > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.product-modal__gallery-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: clamp(2.5rem, 4vw, 3.25rem);
  height: clamp(2.5rem, 4vw, 3.25rem);
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--color-brown-dark);
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 0.25rem 1rem rgb(40 29 22 / 14%);
  font-size: 1.4rem;
  transform: translateY(-50%);
  transition: opacity 220ms ease;
  cursor: pointer;
}

.product-modal__gallery-button--previous {
  left: 0.75rem;
}

.product-modal__gallery-button--next {
  right: 0.75rem;
}

@media (hover: hover) {
  .product-modal__gallery-button {
    opacity: 0.28;
  }

  .product-modal__gallery:hover .product-modal__gallery-button,
  .product-modal__gallery-button:focus-visible {
    opacity: 1;
  }
}

.product-modal__counter {
  position: absolute;
  z-index: 2;
  bottom: 0.75rem;
  left: 50%;
  min-width: 4.25rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: var(--color-brown-dark);
  background: rgb(255 255 255 / 88%);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transform: translateX(-50%);
}

.product-modal__shops {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-modal__shop-group {
  display: grid;
  align-content: start;
  gap: 0.5rem;
  min-width: 0;
}

.product-modal__shop {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  border: 0.125rem solid var(--color-border);
  border-radius: 999px;
  color: var(--color-brown-dark);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
}

.product-modal__shop img {
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.product-modal__shop.is-unavailable {
  cursor: not-allowed;
  opacity: 0.55;
}

.product-modal__shop-message {
  margin: 0;
  color: var(--color-brown);
  font-size: 0.75rem;
  line-height: 1.35;
  text-align: center;
}

.product-modal__detail {
  min-width: 0;
  padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 3.5vw, 3.5rem);
  overflow-y: auto;
  border-left: 0.0625rem solid rgb(206 171 147 / 35%);
  color: var(--color-brown-dark);
  scrollbar-gutter: stable;
}

.product-modal__detail h2 {
  max-width: 24ch;
  margin: 0 0 clamp(1.25rem, 2.5vw, 2rem);
  color: var(--color-brown);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  text-wrap: balance;
}

.product-modal__intro {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.product-modal__detail section + section {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.product-modal__detail h3 {
  margin: 0 0 0.85rem;
  color: var(--color-brown);
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 800;
  font-style: normal;
  line-height: 1.3;
}

.product-modal__detail p,
.product-modal__detail li {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.65;
}

.product-modal__detail p {
  margin: 0 0 1rem;
}

.product-modal__detail ul {
  display: grid;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.product-modal__detail > :last-child,
.product-modal__detail section > :last-child {
  margin-bottom: 0;
}

@media (max-width: 64rem) and (min-width: 50.0625rem) {
  .products-catalog__grid--cycles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-catalog__grid--cycles .product-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - (var(--catalog-gap) / 2));
    justify-self: center;
  }

  .products-catalog__grid--cradle {
    width: 100%;
  }
}

@media (min-width: 64.0625rem) {
  :root {
    --section-space: 5rem;
    --section-content-space: 2.5rem;
  }

  .products-catalog__grid--cycles {
    width: 92%;
  }

  .products-catalog__grid--cradle {
    width: 62%;
  }

  .products-catalog__grid--gifts {
    width: min(100%, 38rem);
  }
}

.parenting-section {
  width: min(calc(100% - 2rem), var(--container-width));
  margin: 0 auto 2rem;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 3vw, 3.25rem);
  border-radius: clamp(2rem, 4vw, 4rem);
  background: var(--color-blush-deep);
  scroll-margin-top: var(--header-height);
}

@media (min-width: 50.0625rem) {
  .parenting-section {
    margin-top: 2rem;
  }
}

.parenting-section__intro {
  max-width: 60rem;
  margin-inline: auto;
  text-align: center;
}

.parenting-section__eyebrow,
.parenting-section__lead {
  margin-bottom: 0;
  color: var(--color-accent);
}

.product-modal__thumbnails {
  position: absolute;
  z-index: 3;
  right: 0.75rem;
  bottom: 0.5rem;
  left: 0.75rem;
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.25rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.product-modal__thumbnail {
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  padding: 0.2rem;
  overflow: hidden;
  border: 0.125rem solid transparent;
  border-radius: 0.75rem;
  background: var(--color-white);
  cursor: pointer;
  transition:
    border-color var(--transition-base),
    transform var(--transition-base);
}

.product-modal__thumbnail:hover,
.product-modal__thumbnail:focus-visible,
.product-modal__thumbnail.is-active {
  border-color: var(--color-border);
  transform: translateY(-0.125rem);
}

.product-modal__thumbnail:focus-visible {
  outline: 0.1875rem solid var(--color-brown-dark);
  outline-offset: 0.125rem;
}

.product-modal__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.parenting-section__eyebrow {
  font-family: var(--font-heading);
  font-size: clamp(1.4125rem, calc(1.8vw + 0.3125rem), 1.8625rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: normal;
  text-transform: none;
}

.parenting-section__lead {
  margin-top: 0.25rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 500;
  font-style: normal;
}

.parenting-section h2 {
  margin: var(--section-content-space) 0;
  color: var(--color-brown);
  font-family: var(--font-body);
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1.2;
}

.parenting-stages {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 2rem);
  align-items: start;
}

.parenting-stage {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.65rem, 1vw, 0.9rem);
  color: #000000;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.45vw, 1.35rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.15;
  text-align: center;
}

.parenting-stage img {
  width: min(100%, 9.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.parenting-stage:hover,
.parenting-stage:focus-visible {
  color: #000000;
}

.faq-section {
  padding: var(--section-content-space) 0;
  background: #fffafb;
  scroll-margin-top: var(--header-height);
}

.faq-section__inner {
  width: min(100% - 2rem, 58rem);
  margin-inline: auto;
}

.faq-section h2 {
  margin: 0 0 clamp(1.75rem, 3vw, 2.75rem);
  color: var(--color-brown);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.faq-item {
  overflow: hidden;
  border: 0.0625rem solid rgb(206 171 147 / 60%);
  border-radius: var(--radius-medium);
  background: var(--color-white);
}

.faq-item summary {
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 2.5vw, 1.5rem);
  color: var(--color-brown);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-brown);
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary {
  border-bottom: 0.0625rem solid rgb(206 171 147 / 45%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:focus-visible {
  outline: 0.1875rem solid var(--color-brown-dark);
  outline-offset: -0.1875rem;
}

.faq-item__answer {
  padding: 0 clamp(1rem, 2.5vw, 1.5rem) clamp(1.25rem, 2.5vw, 1.75rem);
}

.faq-item__answer p {
  margin: 0;
  color: var(--color-brown);
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  font-weight: 400;
  line-height: 1.7;
}

.faq-item[open] .faq-item__answer {
  animation: faq-answer-open 240ms ease-out both;
}

@keyframes faq-answer-open {
  from {
    opacity: 0;
    transform: translateY(-0.35rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  padding-top: var(--section-content-space);
  color: var(--color-footer);
  background: var(--color-cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 1.65fr) minmax(9rem, 0.7fr) minmax(11rem, 0.85fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
}

.footer-grid h2 {
  margin-bottom: 1rem;
  color: var(--color-brown);
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid li,
.footer-address {
  font-size: 0.85rem;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand-lockup img {
  width: 3.25rem;
  height: 3.25rem;
  padding: 0.2rem;
  border-radius: var(--radius-small);
  background: var(--color-white);
  object-fit: contain;
}

.footer-brand-lockup h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.footer-brand > p {
  max-width: 31rem;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.footer-address {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
  font-style: normal;
  line-height: 1.6;
}

.footer-address strong {
  color: var(--color-footer);
  font-weight: 800;
}

.footer-address a,
.footer-nav a,
.footer-products a {
  transition: color var(--transition-base);
}

.footer-address a:hover,
.footer-nav a:hover,
.footer-products a:hover {
  color: var(--color-brown);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-list a {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  padding-inline: 0.75rem;
  border: 0.0625rem solid rgb(168 130 99 / 35%);
  border-radius: 999px;
  background: rgb(255 255 255 / 42%);
  font-size: 0.75rem;
  transition:
    color var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base);
}

.social-list a:hover {
  border-color: var(--color-brown);
  color: var(--color-footer);
  background: var(--color-blush);
}

.footer-nav ul,
.footer-products ul {
  display: grid;
  gap: 0.65rem;
}

.footer-product-logos {
  display: flex;
  min-height: 1.75rem;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.footer-product-logos img {
  width: auto;
  max-width: 4.75rem;
  max-height: 1.6rem;
  object-fit: contain;
  /* Preserve the supplied Cycles and Cradle brand colors. */
  opacity: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.35rem;
  border-top: 0.0625rem solid rgb(168 130 99 / 25%);
}

.footer-bottom img {
  width: auto;
  max-width: 10rem;
  max-height: 2rem;
  object-fit: contain;
  opacity: 0.55;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
}

@media (max-width: 64rem) {
  .hero__brands {
    left: 62%;
    width: min(58vw, 38rem);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .parenting-stages {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 2rem;
  }
}

@media (min-width: 64rem) {
  :root {
    --header-height: 4.75rem;
  }

  .site-header,
  .site-nav {
    height: var(--header-height);
    min-height: var(--header-height);
  }

  .site-nav {
    align-items: center;
    gap: 2rem;
  }

  .site-logo {
    align-self: center;
    width: 6rem;
    overflow: visible;
  }

  .site-logo img {
    height: 7rem;
    max-height: 7rem;
  }

  .nav-list--desktop {
    gap: clamp(2.625rem, 3.25vw, 3.5rem);
  }

  .nav-link {
    padding-block: 0.4rem;
    font-size: clamp(1.125rem, 1.3vw, 1.25rem);
    font-weight: 800;
  }

  .nav-link::after {
    bottom: 0.1rem;
  }

  .language-label {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: 800;
  }
}

@media (min-width: 64.0625rem) {

  .hero__background {
    object-position: center bottom;
  }

  .products-bar {
    display: flex;
    justify-content: flex-start;
    padding-inline: clamp(2rem, 23vw, 24rem);
  }

  .products-bar h2 {
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  }

  .about-video__frame {
    height: clamp(28rem, 56.25vw, 90rem);
    aspect-ratio: auto;
  }

  .about-video__bar {
    gap: 0;
    justify-content: space-between;
    padding-inline: clamp(2rem, 23vw, 24rem);
  }

  .about-video__bar p {
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  }

  .about-deg {
    width: min(92vw, 112rem);
    max-width: none;
    grid-template-columns: minmax(20rem, 0.8fr) minmax(0, 1.5fr);
    gap: clamp(2.5rem, 5vw, 6rem);
    transform: translateX(clamp(0rem, 6.4vw, 8.5rem));
  }

  .about-deg__content h2 {
    max-width: 40ch;
    font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  }

  .about-deg__content p {
    max-width: 72ch;
  }

  .parenting-section {
    width: min(92vw, 112rem);
    max-width: none;
  }

  .parenting-section__intro {
    max-width: none;
  }

  .parenting-section h2 {
    white-space: nowrap;
  }

  .parenting-stages {
    gap: clamp(0.75rem, 1.5vw, 2rem);
  }

  .parenting-stage {
    gap: clamp(0.75rem, 1.2vw, 1.1rem);
    font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  }

  .parenting-stage img {
    width: clamp(13rem, 13vw, 16rem);
    max-width: 100%;
    object-fit: contain;
  }

  .hero__cta {
    padding-inline: clamp(1.35rem, 2vw, 2.5rem);
    white-space: nowrap;
  }
}

@media (max-width: 50rem) {
  :root {
    --header-height: 4.5rem;
  }

  .site-nav {
    gap: 0.25rem;
  }

  .nav-tools {
    gap: 0.35rem;
  }

  .nav-shop-cta {
    min-height: 2.5rem;
    gap: 0.35rem;
    padding: 0.5rem 0.625rem;
    font-size: 0.75rem;
  }

  .nav-shop-cta img {
    width: 1rem;
    height: 1rem;
  }

  .language-switcher {
    gap: 0.2rem;
    padding: 0.35rem 0.55rem;
  }

  .language-label {
    font-size: 0.75rem;
  }

  .nav-list--desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0.55rem;
  }

  .site-logo {
    width: 4.5rem;
  }

  .site-logo img {
    max-height: 4.1rem;
  }

  .hero {
    height: clamp(100vw, calc(75svh - var(--header-height)), 120vw);
    min-height: 0;
    margin-bottom: calc(var(--section-space) + 4.25rem);
    overflow: visible;
  }

  .hero__background {
    object-fit: cover;
  }

  .hero__brands {
    top: clamp(1rem, 3svh, 2rem);
    right: clamp(0.5rem, 2.5vw, 1rem);
    left: clamp(0.5rem, 2.5vw, 1rem);
    width: auto;
    transform: none;
  }

  .hero__label {
    padding: 0.65rem 0.5rem;
    font-size: clamp(0.82rem, 4.1vw, 1.1rem);
    white-space: nowrap;
  }

  .hero__logo-frame--cycles {
    width: min(43vw, 16rem);
  }

  .hero__logo-frame--cradle {
    width: min(30vw, 11rem);
  }

  .hero__cta {
    top: calc(100% + 0.5rem);
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .about-video__frame {
    height: clamp(14rem, 56.25vw, 90rem);
  }

  .about-video__bar {
    width: 100%;
    min-height: 3.25rem;
    gap: 1rem;
    padding-inline: 0.75rem;
  }

  .about-video__bar p {
    font-size: 0.78rem;
  }

  .about-video__bar img {
    width: clamp(7.5rem, 36vw, 10rem);
  }

  .about-deg.container {
    width: calc(100% - 3rem);
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: var(--section-content-space);
  }

  .faq-section__inner,
  .site-footer .container {
    width: calc(100% - 3rem);
  }

  .about-deg__visual {
    min-height: clamp(16rem, 72vw, 22rem);
  }

  .about-deg__visual img {
    width: min(70%, 16rem);
  }

  .about-deg__content h2 {
    max-width: 20ch;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .products-visual {
    height: clamp(14rem, 60vw, 24rem);
  }

  .products-visual__brands {
    top: 57%;
    gap: 0.45rem;
  }

  .products-visual__logo--cycles {
    width: min(48vw, 15rem);
  }

  .products-visual__logo--cradle {
    width: min(31vw, 10rem);
  }

  .products-shell {
    width: 100%;
    padding: 0;
  }

  .products-shell__block--cycles,
  .products-shell__block--cradle,
  .products-shell__block--story {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .products-reason,
  .products-reason--cradle {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: 0;
    width: 100%;
    padding: 1.5rem;
  }

  .products-reason__content,
  .products-reason__media {
    max-width: none;
  }

  .products-reason__content {
    order: 1;
  }

  .products-reason__media,
  .products-reason--cradle .products-reason__media {
    order: 2;
    justify-self: center;
  }

  .products-story {
    width: calc(100% - 3rem);
    gap: 1.5rem;
    padding: var(--section-content-space) 0 calc(var(--section-content-space) / 2);
  }

  .products-story__body {
    width: 100%;
  }

  .products-story__media {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
  }

  .products-catalog {
    padding: calc(var(--section-content-space) / 2) 0 var(--section-content-space);
  }

  .products-catalog__inner {
    width: min(100% - 2rem, 32rem);
  }

  .products-catalog__inner > h3 {
    margin-bottom: 1.5rem;
  }

  .products-catalog__groups {
    gap: 1.5rem;
  }

  .products-catalog__grid--cycles,
  .products-catalog__grid--cradle,
  .products-catalog__grid--gifts {
    grid-template-columns: 1fr;
    width: min(100%, 28rem);
  }

  .products-marketplaces {
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .products-marketplaces__link {
    min-height: 3rem;
    gap: 0.45rem;
    padding: 0.65rem 0.8rem;
    font-size: clamp(0.78rem, 3.4vw, 0.9rem);
  }

  .products-marketplaces__link img {
    width: 1.25rem;
    height: 1.25rem;
  }

  .product-modal {
    place-items: end center;
    padding: 0.5rem;
  }

  .product-modal__dialog {
    width: 100%;
    height: auto;
    max-height: calc(100svh - 1rem);
    overflow-y: auto;
    border-radius: 1.25rem;
  }

  .product-modal__layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .product-modal__left {
    min-height: auto;
    gap: 1rem;
    padding: 1rem;
    overflow: visible;
  }

  .product-modal__gallery {
    min-height: auto;
    flex: none;
    aspect-ratio: 1 / 1.17;
  }

  .product-modal__shops {
    grid-template-columns: 1fr;
  }

  .product-modal__detail {
    padding: 1.5rem 1.25rem 2rem;
    overflow: visible;
    border-top: 0.0625rem solid rgb(206 171 147 / 35%);
    border-left: 0;
  }

  .product-modal__detail h2 {
    padding-right: 2.5rem;
  }

  .parenting-section {
    width: min(calc(100% - 1.5rem), var(--container-width));
    padding-inline: 1rem;
  }

  .parenting-stages {
    gap: 1.5rem 0.75rem;
  }

  .parenting-stage img {
    width: min(34vw, 9rem);
  }
}

@media (max-width: 40rem) {
  .container {
    width: min(100% - 2rem, var(--container-width));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 22rem) {
  .products-marketplaces {
    width: 100%;
    max-width: 20rem;
    flex-direction: column;
  }

  .products-marketplaces__link {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .faq-item[open] .faq-item__answer {
    animation: none;
  }
}

/* Shared homepage footer: four-column editorial layout. */
.site-footer .footer-grid {
  grid-template-areas: "brand nav products social";
  grid-template-columns: minmax(24rem, 1.9fr) minmax(9rem, 0.75fr) minmax(10rem, 0.8fr) minmax(12.5rem, 0.9fr);
  column-gap: clamp(2rem, 3.5vw, 3.75rem);
}

.site-footer .footer-brand {
  grid-area: brand;
  grid-column: auto;
}

.site-footer .footer-nav {
  grid-area: nav;
}

.site-footer .footer-products {
  grid-area: products;
}

.site-footer .footer-social {
  grid-area: social;
}

.site-footer .footer-social h2 {
  white-space: nowrap;
}

.site-footer .footer-grid h2 {
  margin: 0 0 1.2rem;
  color: var(--color-brown);
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  line-height: 1.25;
}

.site-footer .footer-grid p,
.site-footer .footer-grid li,
.site-footer .footer-address {
  color: var(--color-footer);
  font-size: 0.95rem;
}

.site-footer .footer-brand > p {
  max-width: 34rem;
  line-height: 1.8;
  text-align: justify;
}

.site-footer .footer-nav ul,
.site-footer .footer-products ul,
.site-footer .social-list {
  gap: 0.75rem;
}

.site-footer .social-list {
  display: grid;
}

.site-footer .social-list a {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  gap: 0.625rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--color-footer);
  background: transparent;
  font-size: 0.95rem;
  line-height: 1.4;
  transition:
    color var(--transition-base),
    opacity var(--transition-base);
}

.site-footer .social-list__platform {
  display: grid;
  gap: 0.2rem;
}

.site-footer .social-list__platform-label {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  gap: 0.625rem;
  color: var(--color-footer);
  font-size: 0.95rem;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.site-footer .social-list__platform-label::-webkit-details-marker {
  display: none;
}

.site-footer .social-list__platform-label::after {
  margin-left: 0.25rem;
  content: "▾";
  font-size: 0.8em;
  transition: transform var(--transition-base);
}

.site-footer .social-list__platform[open] .social-list__platform-label::after {
  transform: rotate(180deg);
}

.site-footer .social-list__brand-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-left: 1.775rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-0.35rem);
  transition:
    max-height 0.28s ease,
    opacity 0.2s ease,
    transform 0.28s ease;
}

.site-footer .social-list__platform[open] .social-list__brand-links {
  max-height: 5rem;
  opacity: 1;
  transform: translateY(0);
}

.site-footer .social-list__brand-links a {
  min-height: 0;
  color: var(--color-footer);
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-footer .social-list svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.site-footer .social-list a:hover,
.site-footer .social-list a:focus-visible {
  color: var(--color-brown-dark);
  background: transparent;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.2em;
}

@media (min-width: 75rem) {
  .site-footer .container {
    width: min(82rem, calc(100% - 3rem));
  }

  .site-footer .footer-grid {
    grid-template-areas: "brand spacer-one nav spacer-two products spacer-three social";
    grid-template-columns: minmax(28rem, 2.3fr) 0.5rem minmax(9rem, 0.75fr) 3rem minmax(10rem, 0.8fr) 3rem minmax(12.5rem, 0.9fr);
    column-gap: 0;
  }

  .site-footer .footer-brand {
    margin-left: 0;
    transform: translateX(-2.5rem);
  }

  .site-footer .footer-brand > p {
    width: auto;
    max-width: 36rem;
    text-wrap: pretty;
  }
}

@media (max-width: 64rem) {
  .site-footer .footer-grid {
    grid-template-areas:
      "brand nav"
      "products social";
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 40rem) {
  .site-footer .footer-grid {
    grid-template-areas:
      "brand"
      "nav"
      "products"
      "social";
    grid-template-columns: 1fr;
  }
}

@media (max-width: 40rem) and (min-width: 22.0625rem) {
  .site-footer .footer-grid {
    grid-template-areas:
      "brand brand"
      "nav products"
      "social social";
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 40rem) {
  .site-footer .footer-grid h2 {
    font-size: 1rem;
    line-height: 1.25;
  }
}

/* Parenting blog listing pages */
.blog-listing-page {
  background: var(--color-cream);
}

.blog-category-header {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  border-bottom: 0.0625rem solid rgb(168 130 99 / 18%);
  background: var(--color-surface);
}

.blog-category-header__inner {
  width: min(90rem, calc(100% - 3rem));
}

.blog-category-header h1,
.blog-category-content h2 {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
}

.blog-category-header h1 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.08;
}

.blog-stage-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.8vw, 1.75rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.blog-stage-link {
  width: 100%;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.8rem;
  min-width: 0;
  padding: clamp(0.65rem, 1.2vw, 1rem);
  border: 0.125rem solid transparent;
  border-radius: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-brown-dark);
  background: transparent;
  font: inherit;
  cursor: pointer;
  appearance: none;
  text-align: center;
  transition:
    color var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base);
}

.blog-stage-link img {
  width: min(100%, 9rem);
  height: auto;
  aspect-ratio: 1;
  border: 0.1875rem solid transparent;
  border-radius: 50%;
  object-fit: contain;
  transition: border-color var(--transition-base);
}

.blog-stage-link span {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 800;
  line-height: 1.25;
}

.blog-stage-link:hover {
  color: var(--color-brown-dark);
  background: rgb(251 226 232 / 55%);
  transform: translateY(-0.2rem);
}

.blog-stage-link.is-active {
  border-color: rgb(168 130 99 / 35%);
  color: var(--color-brown-dark);
  background: var(--color-blush);
}

.blog-stage-link.is-active img {
  border-color: var(--color-brown);
}

.blog-category-content {
  padding-block: clamp(3rem, 6vw, 6rem);
  background: var(--color-white);
}

.blog-category-content__inner {
  width: min(76rem, calc(100% - 3rem));
}

.blog-category-content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
}

.blog-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.75rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.blog-category-content.is-single-result .blog-article-grid {
  grid-template-columns: minmax(0, 42rem);
  justify-content: center;
}

.blog-article-grid__item[hidden] {
  display: none;
}

.blog-article-grid__item {
  min-width: 0;
}

.blog-article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 0.0625rem solid rgb(168 130 99 / 16%);
  border-radius: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--color-surface);
  box-shadow: 0 0.75rem 2.25rem rgb(125 91 65 / 8%);
}

.blog-article-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--color-blush-deep);
}

.blog-article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.blog-article-card:hover .blog-article-card__media img {
  transform: scale(1.025);
}

.blog-article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.35rem, 2.5vw, 2.25rem);
}

.blog-article-card h3 {
  margin: 0;
  color: var(--color-accent);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  text-wrap: pretty;
}

.blog-article-card h3 a:hover {
  color: var(--color-accent);
}

.blog-article-card p {
  margin: 1rem 0 1.5rem;
  color: var(--color-footer);
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  line-height: 1.7;
}

.blog-article-card__cta {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  padding: 0.6rem 1.1rem;
  border: 0.125rem solid var(--color-accent);
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-accent);
  font-weight: 800;
  transition:
    color var(--transition-base),
    background var(--transition-base),
    filter var(--transition-base),
    transform var(--transition-base);
}

.blog-article-card__cta:hover,
.blog-article-card__cta:focus-visible {
  color: var(--color-white);
  background: var(--color-accent);
  filter: brightness(0.92);
  transform: translateY(-0.125rem);
}

.blog-article-card--text-only {
  min-height: clamp(20rem, 36vw, 28rem);
}

.blog-article-card--text-only .blog-article-card__body {
  justify-content: center;
}

@media (max-width: 64rem) {
  .blog-stage-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 48rem) {
  .blog-category-header__inner,
  .blog-category-content__inner {
    width: min(100% - 2rem, 76rem);
  }

  .blog-article-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 34rem) {
  .blog-stage-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-stage-link {
    padding: 0.65rem 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-stage-link,
  .blog-article-card__media img,
  .blog-article-card__cta {
    transition: none;
  }
}

/* Article detail pilot: scoped to avoid changing homepage and blog listing. */
.article-detail-page {
  background: var(--color-white);
}

.article-detail-page .article-stage-header h2 {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
}

/* The article stage strip sits before <main>, so it needs its own fixed-header offset. */
.article-detail-page .article-stage-header {
  padding-top: calc(var(--header-height) + clamp(2.5rem, 5vw, 4.5rem));
}

.article-detail-main {
  padding-block: clamp(1.5rem, 3vw, 2.75rem) clamp(4rem, 8vw, 7rem);
  background: var(--color-white);
}

.article-breadcrumb {
  width: min(76rem, calc(100% - 3rem));
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.article-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.65rem;
  margin: 0;
  padding: 0;
  color: var(--color-brown);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  list-style: none;
}

.article-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.article-breadcrumb li:not(:last-child)::after {
  content: "→";
  color: var(--color-border);
}

.article-breadcrumb a:hover,
.article-breadcrumb a:focus-visible {
  color: var(--color-accent);
}

.article-breadcrumb [aria-current="page"] {
  color: var(--color-footer);
}

.article-detail {
  width: min(76rem, calc(100% - 3rem));
}

.article-detail__header {
  width: min(100%, 62rem);
  margin-inline: auto;
  text-align: center;
}

.article-detail__category {
  margin: 0 0 0.75rem;
  color: var(--color-brown);
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-detail__header h1 {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4.75rem);
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

.article-detail__cover {
  overflow: hidden;
  margin: clamp(2rem, 5vw, 4.5rem) 0 0;
  border-radius: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--color-blush);
}

.article-detail__cover img,
.article-detail__body-image img {
  width: 100%;
  height: auto;
}

.article-detail__content {
  width: min(100%, 54rem);
  margin: clamp(2.5rem, 5vw, 4.5rem) auto 0;
  color: var(--color-footer);
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  line-height: 1.85;
}

.article-detail__content h2,
.article-detail__content h3 {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  text-wrap: pretty;
}

.article-detail__content h2 {
  margin: clamp(2.75rem, 6vw, 4.5rem) 0 1.1rem;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.18;
}

.article-detail__content h3 {
  margin: 2.2rem 0 0.75rem;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.25;
}

.article-detail__content p {
  margin: 0 0 1.4rem;
  text-align: justify;
  text-justify: inter-word;
}

.article-detail__content ul,
.article-detail__content ol {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 2rem;
  padding-left: 1.4rem;
}

.article-detail__content li {
  padding-left: 0.35rem;
  text-align: justify;
  text-justify: inter-word;
}

.article-detail__content li::marker {
  color: var(--color-accent);
}

.article-detail__body-image {
  overflow: hidden;
  width: min(68rem, calc(100vw - 3rem));
  margin: clamp(2rem, 5vw, 4rem) 50%;
  border-radius: clamp(1rem, 2vw, 1.75rem);
  transform: translateX(-50%);
  background: var(--color-blush);
}

/* Reserved floating-action area: future support tools can share this stack
   without colliding with the Messenger contact link. */
:root {
  --floating-action-right: clamp(1rem, 2.5vw, 2rem);
  --floating-action-bottom: clamp(1rem, 2.5vw, 2rem);
  --floating-action-size: clamp(3.25rem, 5vw, 4rem);
  --floating-action-gap: 0.75rem;
  --messenger-float-offset: 0px;
}

.messenger-float {
  position: fixed;
  z-index: 30;
  right: var(--floating-action-right);
  bottom: calc(var(--floating-action-bottom) + var(--messenger-float-offset));
  display: grid;
  place-items: center;
  width: var(--floating-action-size);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #0084ff;
  box-shadow: 0 0.5rem 1.5rem rgb(0 0 0 / 18%);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.messenger-float:hover,
.messenger-float:focus-visible {
  transform: translateY(-0.15rem);
  box-shadow: 0 0.75rem 1.75rem rgb(0 0 0 / 24%);
}

.messenger-float:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 3px;
}

.messenger-float img {
  width: 52%;
  height: auto;
}

@media (min-width: 64rem) {
  .article-breadcrumb,
  .article-detail {
    width: min(80rem, calc(100% - 4rem));
  }

  .article-detail__cover {
    width: min(100%, 58rem);
    margin: clamp(1.75rem, 3vw, 3.25rem) auto 0;
  }

  .article-detail__content {
    width: min(100%, 62rem);
    margin-top: clamp(2.25rem, 3.5vw, 3.25rem);
  }

  .article-detail__body-image {
    width: min(100%, 62rem);
    margin: clamp(2.25rem, 3.5vw, 3.25rem) auto;
    transform: none;
  }
}

@media (max-width: 48rem) {
  .article-breadcrumb,
  .article-detail {
    width: min(100% - 2rem, 76rem);
  }

  .article-detail__content {
    line-height: 1.75;
  }

  .article-detail__body-image {
    width: calc(100vw - 2rem);
  }
}

/* Instagram footer link is temporarily hidden. */
.site-footer .social-list li:has(a[data-link="instagram"]) {
  display: none;
}

/* Client Canva typography mapping: editorial titles use the display face only
   where a title is intentionally present; all other text inherits Montserrat. */
.products-bar h2,
.products-catalog__inner > h3,
.product-card__name,
.product-modal__detail h2,
.faq-section h2,
.blog-category-header h1,
.blog-category-content h2,
.blog-article-card h3,
.article-detail-page .article-stage-header h2,
.article-detail__header h1,
.article-detail__content h2,
.article-detail__content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
}

.products-story__body p {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
}

/* Product-card labels share the story body typography. */
.products-story__body p,
.product-card__name {
  color: var(--color-brown);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 600;
  font-style: normal;
}

/* Shared treatment for the four editorial section headers. */
:is(
  .about-video__bar p,
  .products-bar h2,
  .products-catalog__inner > h3,
  .parenting-section__eyebrow,
  .faq-section h2
) {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: normal;
  text-transform: none;
}
