:root {
  --paper: #faf8f1;
  --white: #fffdf7;
  --ink: #173e35;
  --muted: #53655a;
  --line: #d9ded2;
  --orange: #c66848;
  --mint: #dce8d8;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a,
button,
summary {
  touch-action: manipulation;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}
::selection {
  background: #cee1b7;
  color: var(--ink);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
h1,
h2,
h3 {
  letter-spacing: -0.055em;
}
p {
  color: var(--muted);
}
.shell {
  width: min(1360px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 10px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  background: var(--paper);
  border-bottom: 1px solid rgba(23, 62, 53, 0.12);
}
.navigation {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 1;
}
.wordmark-dot {
  color: var(--orange);
  margin-left: -7px;
}
.brand-symbol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 10px);
  gap: 2px;
  transform: rotate(-12deg);
  margin-right: 3px;
}
.brand-symbol i {
  width: 10px;
  height: 13px;
  border-radius: 80% 80% 35% 80%;
  background: var(--ink);
}
.brand-symbol i:nth-child(2) {
  transform: rotate(90deg);
}
.brand-symbol i:nth-child(3) {
  transform: rotate(-90deg);
}
.brand-symbol i:nth-child(4) {
  transform: rotate(180deg);
  background: var(--orange);
}
.navigation nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 13px;
  font-weight: 600;
}
.navigation nav > a:not(.nav-cta) {
  padding-block: 10px;
}
.navigation nav > a:not(.nav-cta):hover,
.footer-bottom a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.nav-cta {
  padding: 13px 19px;
  border: 1px solid #80968a;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-block: 65px 76px;
  align-items: center;
  min-height: 720px;
}
.hero-copy {
  padding-block: 20px;
}
.hero .eyebrow {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tiny-spark {
  color: var(--orange);
  font-size: 21px;
  line-height: 1;
}
.hero h1 {
  font-size: clamp(60px, 6.2vw, 94px);
  line-height: 1.04;
  margin-block: 24px 27px;
  max-width: 640px;
}
.hero h1 > span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.015em;
  color: #6b8065;
  letter-spacing: -0.06em;
  white-space: nowrap;
}
.hero-description {
  max-width: 430px;
  font-size: 16px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 17px 23px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button-green {
  background: var(--ink);
  color: var(--paper);
}
.button-green:hover {
  background: #2b594b;
  transform: translateY(-2px);
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.text-link {
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  line-height: 1.5;
  padding-block: 8px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.text-link span {
  font-size: 19px;
}
.launch-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  margin-top: 30px;
  letter-spacing: 0.01em;
}
.status-dot {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #809367;
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
  min-width: 0;
}
.hero-photo {
  width: 100%;
  height: 565px;
  border-radius: 140px 22px 22px 22px;
  object-position: center;
}
.hero-note {
  position: absolute;
  bottom: 26px;
  left: -28px;
  background: var(--paper);
  padding: 18px 25px 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 13px;
  box-shadow: 0 5px 25px #12352810;
  transform: rotate(-4deg);
}
.hero-note p {
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.drawn-heart {
  font-size: 48px;
  color: var(--orange);
  font-family: var(--serif);
  line-height: 1;
}
.family-values {
  border-block: 1px solid var(--line);
}
.values-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  padding-block: 22px;
}
.values-inner p {
  font-size: 12px;
  color: var(--ink);
  display: flex;
  gap: 15px;
  align-items: center;
}
.values-inner p span {
  font-size: 24px;
  line-height: 1;
  color: #78936a;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  align-items: end;
  margin-bottom: 45px;
}
.section-heading h2,
.family-intro h2,
.how-heading h2,
.comparison h2,
.faq-intro h2 {
  font-size: clamp(44px, 4.1vw, 62px);
  line-height: 1.08;
  margin-top: 16px;
}
.section-heading > p {
  max-width: 330px;
  font-size: 15px;
  line-height: 1.8;
  padding-bottom: 4px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.product {
  min-width: 0;
}
.product-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f0f2ed;
  aspect-ratio: 0.92;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-age {
  position: absolute;
  left: 19px;
  top: 18px;
  z-index: 1;
  font-size: 10px;
  background: rgba(255, 253, 247, 0.92);
  padding: 7px 11px;
  border-radius: 30px;
  color: var(--ink);
}
.product-availability {
  position: absolute;
  bottom: 18px;
  right: 19px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  background: rgba(255, 253, 247, 0.9);
  padding: 6px 9px;
  border-radius: 30px;
}
.product-description {
  padding: 23px 5px 0;
}
.product-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-title h3 {
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.045em;
}
.product-number {
  font-size: 10px;
  color: #637660;
  border: 1px solid var(--line);
  border-radius: 50%;
  height: 25px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-tagline {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 10px;
}
.product-copy {
  font-size: 13px;
  line-height: 1.75;
  margin-top: 10px;
  min-height: 69px;
  max-width: 340px;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 20px 0;
  list-style: none;
  min-height: 25px;
}
.feature-tags li {
  font-size: 10px;
  border: 1px solid var(--line);
  padding: 4px 9px;
  border-radius: 30px;
}
.colour-picker {
  border-top: 1px solid var(--line);
  padding-top: 17px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.swatches {
  display: flex;
  gap: 6px;
}
.swatch {
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  padding: 4px;
  background: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.swatch[aria-pressed="true"] {
  border-color: var(--ink);
}
.swatch span {
  display: block;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(23, 62, 53, 0.14);
}
.swatch:hover {
  border-color: #80968a;
}
.swatch.mint span {
  background: #b6cbbc;
}
.swatch.sky span {
  background: #a6bdce;
}
.swatch.coral span {
  background: #d69883;
}
.swatch.stone span {
  background: #c8c1b6;
}
.colour-name {
  font-size: 11px;
}
.concept-note {
  font-size: 10px;
  line-height: 1.7;
  text-align: center;
  margin-top: 32px;
  color: #6a7468;
}
.family-section {
  background: #eaf0e3;
  padding-block: 95px 100px;
}
.family-intro {
  text-align: center;
  max-width: 670px;
  margin: 0 auto 75px;
}
.family-intro > p:last-child {
  max-width: 410px;
  margin: 22px auto 0;
  font-size: 14px;
  line-height: 1.8;
}
.story {
  display: grid;
  grid-template-columns: 1.14fr 1fr;
  gap: 95px;
  align-items: center;
}
.story + .story {
  margin-top: 85px;
}
.story-care {
  grid-template-columns: 1fr 1.14fr;
}
.story-photo {
  position: relative;
}
.story-photo img {
  width: 100%;
  aspect-ratio: 1.19;
  object-fit: cover;
  border-radius: 22px;
}
.story-kids .story-photo img {
  border-top-left-radius: 110px;
}
.story-care .story-photo img {
  border-bottom-right-radius: 110px;
}
.story-caption {
  position: absolute;
  bottom: 19px;
  left: 20px;
  padding: 8px 13px;
  background: rgba(250, 248, 241, 0.91);
  border-radius: 25px;
  font-size: 10px;
}
.story-copy {
  padding: 10px 5px;
}
.story-number {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #506249;
  font-weight: 700;
}
.story-copy h3 {
  font-size: clamp(38px, 3.7vw, 53px);
  line-height: 1.08;
  margin: 21px 0 26px;
}
.story-copy > p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 390px;
}
.story-copy > p + p {
  margin-top: 17px;
}
.story-copy .text-link {
  margin-top: 20px;
}
.how-section {
  background: var(--ink);
  color: var(--paper);
}
.how-heading {
  position: relative;
  max-width: 820px;
}
.how-heading .eyebrow {
  color: #c5d0b9;
}
.how-heading > p:last-child {
  color: #c6d3c7;
  max-width: 320px;
  position: absolute;
  left: 66%;
  bottom: 3px;
  font-size: 14px;
  line-height: 1.8;
  width: 42%;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 65px;
  margin-top: 58px;
}
.steps article {
  border-top: 1px solid #547466;
  padding-top: 24px;
}
.step-number {
  font-size: 11px;
  color: #b4caa6;
}
.steps h3 {
  font-size: 26px;
  letter-spacing: -0.03em;
  margin: 23px 0 14px;
}
.steps p {
  font-size: 13px;
  color: #c6d3c7;
  line-height: 1.8;
  max-width: 295px;
}
.how-note {
  font-size: 10px;
  color: #aac0b2;
  margin-top: 44px;
}
.comparison-heading {
  text-align: center;
  margin-bottom: 38px;
}
.comparison-heading > p:last-child {
  font-size: 13px;
  margin-top: 16px;
}
.comparison-scroll {
  position: relative;
  overflow-x: auto;
}
.comparison table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 620px;
}
.comparison th,
.comparison td {
  padding: 19px 17px;
  border-bottom: 1px solid var(--line);
  width: 25%;
  text-align: center;
}
.comparison tr > :first-child {
  text-align: left;
}
.comparison th {
  font-weight: 400;
}
.comparison thead th {
  font-size: 26px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.comparison thead th:first-child {
  font-size: 11px;
  letter-spacing: 0;
}
.comparison thead th span {
  font-size: 10px;
  display: block;
  letter-spacing: 0;
  color: var(--muted);
  margin-top: 5px;
}
.comparison td {
  color: var(--muted);
  font-size: 12px;
}
.comparison tbody th {
  color: var(--muted);
  font-size: 12px;
}
.yes {
  display: inline-grid;
  place-items: center;
  background: #e7eddf;
  color: var(--ink);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 14px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 85px;
  border-top: 1px solid var(--line);
}
.faq-intro > p:last-child {
  max-width: 270px;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 25px;
}
.faqs {
  border-top: 1px solid var(--line);
}
.faqs details {
  border-bottom: 1px solid var(--line);
}
.faqs summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  padding-block: 23px;
}
.faqs summary::-webkit-details-marker {
  display: none;
}
.faqs summary span {
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faqs details[open] summary span {
  transform: rotate(45deg);
}
.faqs details > p {
  font-size: 13px;
  line-height: 1.8;
  padding-bottom: 24px;
  max-width: 510px;
}
.closing {
  background: #e6c7ab;
  overflow: hidden;
}
.closing-inner {
  text-align: center;
  padding-block: 75px 77px;
  position: relative;
}
.closing-spark {
  font-size: 44px;
  line-height: 1;
  color: #a65839;
  display: block;
  margin-bottom: 22px;
}
.closing h2 {
  font-size: clamp(60px, 6.7vw, 95px);
  line-height: 1.04;
  margin: 21px 0 30px;
}
.closing h2::first-line {
  font-family: var(--serif);
  font-style: italic;
}
.closing .button {
  gap: 30px;
}
.closing-note {
  font-size: 10px;
  color: #4f5747;
  margin-top: 21px;
}
.site-footer {
  padding-block: 43px 23px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 33px;
  border-bottom: 1px solid var(--line);
}
.footer-top > p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  font-size: 10px;
}
.footer-bottom a {
  color: var(--muted);
}
@media (min-width: 1600px) {
  .hero {
    gap: 90px;
  }
  .hero-photo {
    height: 610px;
  }
  .hero {
    min-height: 780px;
  }
  .hero h1 {
    font-size: 97px;
  }
}
@media (max-width: 1180px) {
  .shell {
    width: calc(100% - 72px);
  }
  .hero {
    gap: 34px;
    min-height: 650px;
  }
  .hero h1 {
    font-size: 6.4vw;
  }
  .hero-photo {
    height: 500px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button {
    gap: 18px;
    padding-inline: 19px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .navigation nav {
    gap: 25px;
  }
  .product-grid {
    gap: 20px;
  }
  .product-photo {
    aspect-ratio: 0.85;
  }
  .product-title h3 {
    font-size: 27px;
  }
  .product-copy {
    min-height: 91px;
  }
  .story {
    gap: 55px;
  }
  .story-care {
    gap: 55px;
  }
  .story-copy h3 {
    font-size: 40px;
  }
  .how-heading > p:last-child {
    left: 65%;
    width: 33%;
  }
  .steps {
    gap: 38px;
  }
  .faq-section {
    gap: 50px;
  }
  .section {
    padding-block: 88px;
  }
  .hero-note {
    left: -18px;
  }
  .hero-note p {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  .shell {
    width: calc(100% - 48px);
  }
  .navigation {
    height: 84px;
  }
  .wordmark {
    font-size: 35px;
  }
  .navigation nav {
    gap: 18px;
    font-size: 12px;
  }
  .nav-cta {
    padding: 11px 15px;
    gap: 16px;
  }
  .hero {
    gap: 26px;
    padding-block: 47px 55px;
    min-height: 590px;
  }
  .hero h1 {
    font-size: 6.4vw;
    line-height: 1.07;
  }
  .hero .eyebrow {
    font-size: 8px;
    gap: 7px;
    letter-spacing: 0.13em;
  }
  .tiny-spark {
    font-size: 18px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.7;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 25px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    padding-left: 5px;
  }
  .hero-photo {
    height: 460px;
    border-top-left-radius: 100px;
  }
  .hero-note {
    padding: 14px 18px 14px 14px;
    left: -15px;
    bottom: 22px;
    gap: 9px;
  }
  .hero-note p {
    font-size: 18px;
  }
  .drawn-heart {
    font-size: 36px;
  }
  .launch-note {
    font-size: 9px;
    max-width: 230px;
    align-items: flex-start;
    margin-top: 18px;
  }
  .status-dot {
    margin-top: 4px;
  }
  .section-heading {
    gap: 40px;
  }
  .section-heading h2 {
    font-size: 45px;
  }
  .section-heading > p {
    font-size: 13px;
    max-width: 250px;
  }
  .product-grid {
    gap: 16px;
  }
  .product-age {
    font-size: 8px;
    left: 10px;
    top: 12px;
    padding: 6px 8px;
  }
  .product-photo {
    border-radius: 18px;
    aspect-ratio: 0.8;
  }
  .product-description {
    padding-inline: 1px;
  }
  .product-title h3 {
    font-size: 24px;
  }
  .product-number {
    display: none;
  }
  .product-tagline {
    font-size: 11px;
  }
  .product-copy {
    font-size: 12px;
    line-height: 1.75;
    min-height: 106px;
  }
  .feature-tags {
    gap: 4px;
    min-height: 60px;
    align-content: start;
  }
  .feature-tags li {
    font-size: 9px;
    padding-inline: 7px;
  }
  .product-availability {
    font-size: 7px;
    right: 12px;
    bottom: 12px;
  }
  .story {
    gap: 35px;
  }
  .story-care {
    gap: 35px;
  }
  .story-copy h3 {
    font-size: 35px;
    margin-block: 17px 20px;
  }
  .story-copy > p {
    font-size: 12px;
  }
  .story-photo img {
    aspect-ratio: 0.93;
  }
  .story-caption {
    font-size: 9px;
    bottom: 14px;
    left: 14px;
  }
  .story + .story {
    margin-top: 65px;
  }
  .how-heading h2 {
    font-size: 48px;
  }
  .how-heading > p:last-child {
    font-size: 12px;
    left: 65%;
    width: 35%;
  }
  .steps {
    gap: 28px;
  }
  .steps h3 {
    font-size: 23px;
  }
  .steps p {
    font-size: 12px;
  }
  .faq-section {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
  }
  .faq-intro h2 {
    font-size: 41px;
  }
  .faqs summary {
    font-size: 13px;
  }
  .footer-top > p {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 25px;
  }
  .shell {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 64px;
  }
  .navigation {
    height: 78px;
    gap: 20px;
    position: relative;
  }
  .wordmark {
    font-size: 36px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    background: none;
    color: var(--ink);
    font-size: 12px;
    padding: 12px 0 12px 12px;
  }
  .menu-lines {
    width: 21px;
    height: 12px;
    border-block: 1px solid var(--ink);
    position: relative;
  }
  .menu-lines::after {
    content: "";
    height: 1px;
    background: var(--ink);
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
  }
  .menu-toggle[aria-expanded="true"] .menu-lines {
    border: 0;
  }
  .menu-toggle[aria-expanded="true"] .menu-lines::before,
  .menu-toggle[aria-expanded="true"] .menu-lines::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--ink);
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] .menu-lines::after {
    transform: rotate(-45deg);
  }
  .navigation nav {
    display: none;
    position: absolute;
    top: 78px;
    left: -20px;
    right: -20px;
    background: var(--paper);
    z-index: 5;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    box-shadow: 0 16px 20px #173e3509;
  }
  .navigation nav.is-open {
    display: flex;
  }
  .navigation nav > a {
    font-size: 15px;
    padding: 11px;
  }
  .navigation nav .nav-cta {
    justify-content: space-between;
    margin-top: 10px;
    padding: 13px 15px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 36px 42px;
    min-height: 0;
  }
  .hero-copy {
    padding: 0;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.11em;
  }
  .hero h1 {
    font-size: clamp(54px, 11.7vw, 79px);
    line-height: 1.01;
    letter-spacing: -0.06em;
    margin-block: 20px 23px;
  }
  .hero h1 > span {
    letter-spacing: -0.065em;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.75;
    max-width: 430px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 21px;
    margin-top: 25px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 16px 20px;
    gap: 20px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 10px;
  }
  .launch-note {
    max-width: none;
    font-size: 9px;
    margin-top: 20px;
  }
  .hero-photo {
    height: auto;
    aspect-ratio: 1.08;
    object-position: center;
    border-radius: 80px 19px 19px 19px;
  }
  .hero-note {
    left: 12px;
    bottom: 18px;
    transform: rotate(-4deg);
    padding: 13px 18px 13px 15px;
  }
  .hero-note p {
    font-size: 19px;
  }
  .values-inner {
    gap: 12px;
    padding-block: 18px;
    justify-content: space-between;
  }
  .values-inner p {
    font-size: 8px;
    gap: 6px;
    line-height: 1.3;
  }
  .values-inner p span {
    font-size: 18px;
  }
  .section-heading {
    display: block;
    margin-bottom: 29px;
  }
  .section-heading h2 {
    font-size: 44px;
    line-height: 1.07;
  }
  .section-heading > p {
    max-width: 370px;
    font-size: 13px;
    margin-top: 20px;
  }
  .eyebrow {
    font-size: 9px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 39px;
  }
  .product-photo {
    aspect-ratio: 1.08;
    border-radius: 22px;
    max-height: 500px;
  }
  .product-photo img {
    object-fit: contain;
  }
  .product-age {
    font-size: 10px;
    top: 17px;
    left: 17px;
    padding: 7px 11px;
  }
  .product-availability {
    font-size: 8px;
    right: 17px;
    bottom: 16px;
  }
  .product-description {
    padding: 20px 3px 0;
  }
  .product-title h3 {
    font-size: 31px;
  }
  .product-number {
    display: flex;
  }
  .product-tagline {
    font-size: 13px;
    margin-top: 8px;
  }
  .product-copy {
    font-size: 13px;
    min-height: 0;
    margin-top: 10px;
    max-width: 450px;
  }
  .feature-tags {
    min-height: 0;
    margin-block: 17px;
    gap: 7px;
  }
  .feature-tags li {
    font-size: 10px;
    padding: 4px 9px;
  }
  .colour-picker {
    padding-top: 13px;
  }
  .concept-note {
    font-size: 9px;
    text-align: left;
    margin-top: 25px;
    max-width: 410px;
  }
  .family-section {
    padding-block: 59px 60px;
  }
  .family-intro {
    margin-bottom: 38px;
  }
  .family-intro h2 {
    font-size: 42px;
  }
  .family-intro > p:last-child {
    font-size: 13px;
    margin-top: 18px;
  }
  .story,
  .story-care {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .story + .story {
    margin-top: 45px;
  }
  .story-photo img {
    aspect-ratio: 1.1;
    border-radius: 20px;
  }
  .story-kids .story-photo img {
    border-top-left-radius: 75px;
  }
  .story-care .story-photo img {
    border-bottom-right-radius: 75px;
  }
  .story-care .story-photo {
    grid-row: 1;
  }
  .story-caption {
    font-size: 9px;
    bottom: 18px;
    left: 16px;
  }
  .story-copy {
    padding: 0 3px;
  }
  .story-copy h3 {
    font-size: 41px;
    line-height: 1.06;
    margin-block: 14px 20px;
  }
  .story-copy > p {
    font-size: 13px;
    max-width: 450px;
  }
  .story-copy > p + p {
    margin-top: 13px;
  }
  .story-copy .text-link {
    margin-top: 13px;
  }
  .how-heading h2 {
    font-size: 44px;
  }
  .how-heading > p:last-child {
    position: static;
    width: auto;
    max-width: 370px;
    font-size: 13px;
    margin-top: 22px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 34px;
  }
  .steps article {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 15px;
    padding-top: 22px;
  }
  .step-number {
    grid-row: 1 / 3;
    padding-top: 5px;
  }
  .steps h3 {
    margin: 0 0 10px;
    font-size: 24px;
  }
  .steps p {
    grid-column: 2;
    font-size: 13px;
    max-width: 400px;
  }
  .how-note {
    font-size: 9px;
    margin-top: 32px;
  }
  .comparison h2 {
    font-size: 41px;
  }
  .comparison-heading {
    margin-bottom: 22px;
  }
  .comparison-scroll {
    margin-inline: -20px;
    padding-inline: 20px;
  }
  .comparison table {
    min-width: 560px;
  }
  .comparison th,
  .comparison td {
    padding: 16px 13px;
  }
  .comparison thead th {
    font-size: 23px;
  }
  .comparison thead th:first-child {
    font-size: 10px;
  }
  .comparison td,
  .comparison tbody th {
    font-size: 11px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .faq-intro h2 {
    font-size: 41px;
  }
  .faq-intro > p:last-child {
    font-size: 13px;
    max-width: 320px;
    margin-top: 18px;
  }
  .faqs summary {
    font-size: 13px;
    padding-block: 20px;
  }
  .faqs details > p {
    font-size: 12px;
  }
  .closing-inner {
    padding-block: 52px 55px;
  }
  .closing-spark {
    font-size: 34px;
    margin-bottom: 20px;
  }
  .closing h2 {
    font-size: clamp(53px, 11.5vw, 75px);
    margin-block: 20px 27px;
  }
  .closing .button {
    font-size: 12px;
  }
  .closing-note {
    font-size: 9px;
    max-width: 240px;
    margin-inline: auto;
  }
  .site-footer {
    padding-block: 31px 23px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 26px;
  }
  .footer-top > p {
    order: 3;
    width: 100%;
    font-size: 19px;
  }
  .footer-top .text-link {
    font-size: 11px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 9px;
    gap: 12px;
  }
  .footer-bottom > p:nth-child(2) {
    order: 3;
    width: 100%;
  }
  .footer-bottom a {
    margin-left: auto;
  }
}
@media (max-width: 370px) {
  .shell {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-actions {
    gap: 13px;
  }
  .hero-actions .button {
    padding-inline: 15px;
    gap: 12px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    gap: 5px;
  }
  .values-inner p {
    font-size: 7px;
    gap: 4px;
  }
  .values-inner p span {
    font-size: 16px;
  }
  .navigation nav {
    left: -16px;
    right: -16px;
  }
  .product-title h3 {
    font-size: 29px;
  }
  .comparison-scroll {
    margin-inline: -16px;
    padding-inline: 16px;
  }
  .closing h2 {
    font-size: 49px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .button-green:hover {
    transform: none;
  }
}

@media (max-width: 700px) {
  html:not(.js) .navigation {
    height: auto;
    flex-wrap: wrap;
    padding-block: 20px;
    gap: 15px;
  }
  html:not(.js) .menu-toggle {
    display: none;
  }
  html:not(.js) .navigation nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
  html:not(.js) .navigation nav > a {
    font-size: 12px;
    padding: 8px;
  }
  html:not(.js) .navigation nav .nav-cta {
    margin: 0;
  }
}
