:root {
  --orange: #f05b3d;
  --yellow: #f7bc3a;
  --blue: #95bee5;
  --purple: #7a39b7;
  --cream: #fff4dc;
  --ink: #211f1f;
  --footer: #282828;
  --soft-shadow: 0 18px 36px rgba(37, 31, 23, 0.12);
  --container: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Nunito", Arial, sans-serif;
  background: #fff;
  overflow-x: hidden;
}

.category-page {
  display: flex;
  flex-direction: column;
}

.category-page main {
  flex: 1 0 auto;
}

p {
  line-height: 1.55;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 160px 1fr 160px;
  align-items: center;
  min-height: 72px;
  padding: 10px clamp(22px, 5vw, 70px);
  background: #fff5e1;
  box-shadow: 0 36px 26px rgba(0, 0, 0, 0.06);
}

.site-header > * {
  position: relative;
  z-index: 2;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -36px;
  height: 48px;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff5e1' d='M0 0H1440V40C1220 68 1080 20 860 42C640 64 520 22 310 43C160 58 70 54 0 46V0Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  pointer-events: none;
}

.brand img {
  width: 100px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 62px);
  font-size: 16px;
  font-weight: 500;
}

.main-nav a,
.main-nav button,
.mobile-menu a,
.mobile-menu button {
  color: #161616;
}

.main-nav a.active,
.main-nav .nav-submenu-toggle.active,
.mobile-menu a.active {
  color: var(--orange);
}

.nav-item {
  position: relative;
}

.has-submenu::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 22px;
}

.nav-submenu-toggle,
.mobile-submenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: #161616;
}

.caret-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  color: var(--orange);
  fill: currentColor;
  stroke: none;
  flex: 0 0 auto;
}

.caret-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  fill: currentColor !important;
  stroke: none !important;
}

.caret-icon path {
  fill: currentColor !important;
  stroke: none !important;
}

.nav-submenu-toggle:hover,
.nav-submenu-toggle:focus-visible,
.nav-submenu-toggle[aria-expanded="true"],
.has-submenu:hover .nav-submenu-toggle,
.has-submenu:focus-within .nav-submenu-toggle,
.has-submenu.is-open .nav-submenu-toggle,
.mobile-submenu-toggle:hover,
.mobile-submenu-toggle:focus-visible,
.mobile-submenu-toggle[aria-expanded="true"],
.mobile-submenu.is-open .mobile-submenu-toggle {
  color: var(--orange);
}

.nav-submenu-toggle[aria-expanded="true"] .caret-down,
.mobile-submenu-toggle[aria-expanded="true"] .caret-down,
.has-submenu:hover .nav-submenu-toggle .caret-down,
.has-submenu:focus-within .nav-submenu-toggle .caret-down {
  display: none;
}

.caret-up {
  display: none;
}

.nav-submenu-toggle[aria-expanded="true"] .caret-up,
.mobile-submenu-toggle[aria-expanded="true"] .caret-up,
.has-submenu:hover .nav-submenu-toggle .caret-up,
.has-submenu:focus-within .nav-submenu-toggle .caret-up {
  display: inline-flex;
}

.nav-submenu {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  display: grid;
  min-width: 178px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(37, 31, 23, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
}

.nav-submenu a {
  padding: 9px 12px;
  border-radius: 9px;
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible,
.nav-submenu a.active,
.mobile-submenu-panel a.active {
  color: var(--orange);
  background: var(--cream);
}

.has-submenu:hover .nav-submenu,
.has-submenu:focus-within .nav-submenu,
.has-submenu.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-submenu {
  display: grid;
  gap: 0;
}

.mobile-submenu-toggle {
  justify-content: space-between;
  width: 100%;
  text-align: left;
}

.mobile-submenu-panel {
  display: grid;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 240ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-submenu-panel a {
  padding: 8px 0 8px 14px;
  color: #4f4a43;
  font-size: 12px;
}

.mobile-submenu.is-open .mobile-submenu-panel {
  max-height: 360px;
  opacity: 1;
  transform: translateY(0);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.header-actions a {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.header-actions svg,
.header-actions [data-lucide] {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--orange);
  transition:
    transform 220ms ease,
    opacity 220ms ease;
  transform-origin: center;
}

.mobile-menu {
  display: none;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 845px;
  padding-top: 72px;
  overflow: hidden;
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  inset: 72px 0 0;
  width: 100%;
  height: calc(100% - 72px);
  object-fit: cover;
  object-position: 70% top;
  z-index: -3;
}

.hero-shade {
  position: absolute;
  inset: 72px 0 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(30, 44, 15, 0.62) 0%, rgba(30, 44, 15, 0.5) 31%, rgba(30, 44, 15, 0.14) 60%, rgba(30, 44, 15, 0) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.08));
}

.hero-content {
  width: min(550px, calc(100% - 44px));
  margin-left: clamp(22px, 5.4vw, 72px);
  padding-top: clamp(86px, 13vw, 100px);
  color: #fff;
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: "Fredoka", Arial, sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.05;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
}

.hero-lede {
  max-width: 500px;
  margin: 0 0 30px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 20px;
}

.hero-separator {
  position: relative;
  width: min(100%, 530px);
  height: 30px;
  margin: 0px 0 22px;
}

.hero-separator img {
  position: absolute;
  left: -5%;
  bottom: -10px;
  width: 100%;
  height: auto;
}

.hero-separator-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  height: 1.5px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.25);
}

.hero-copy {
  max-width: 500px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 18px;
  line-height: 1.6;
  margin-top: -22px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.btn.primary {
  color: #fff;
  background: var(--orange);
  box-shadow: none;
}

.btn.secondary {
  color: var(--orange);
  background: #fff;
  box-shadow: none;
}

.btn.primary::before,
.btn.secondary::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 46%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
}

.btn.primary:hover,
.btn.primary:focus-visible,
.btn.secondary:hover,
.btn.secondary:focus-visible {
  box-shadow: 0 12px 22px rgba(240, 91, 61, 0.25);
  transform: translateY(-1px);
}

.btn.primary:hover::before,
.btn.primary:focus-visible::before,
.btn.secondary:hover::before,
.btn.secondary:focus-visible::before {
  animation: buttonShine 720ms ease;
}

@keyframes buttonShine {
  from {
    left: -70%;
  }

  to {
    left: 125%;
  }
}

.btn.ghost {
  color: #fff;
  padding-inline: 0;
  background: transparent;
}

.btn svg {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-pad {
  padding: 52px clamp(18px, 5vw, 70px) 78px;
}

.section-intro {
  max-width: 991px;
  margin: 0 auto 34px;
  text-align: center;
}

h2,
h3,
.newsletter label,
.brand-strip p {
  font-family: "Fredoka", Arial, sans-serif;
  font-weight: 600;
}

main p {
  font-size: 18px;
}

.section-intro h2,
.family-copy h2,
.purpose-copy h2 {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 52px;
  line-height: 1.1;
}

.word-scale-heading {
  cursor: default;
}

.heading-word {
  display: inline-block;
  transform-origin: center bottom;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.heading-word.is-scaled {
  transform: scale(1.04);
}

.family-copy p,
.purpose-copy p {
  margin: 0 auto 18px;
  font-size: 18px;
  line-height: 1.58;
}

.section-intro p {
  margin: 0 auto 8px;
  font-size: 18px;
  line-height: 1.58; 
}

.category-pills {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}

.category-pills button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
}

.category-pills .active {
  color: var(--orange);
  background: #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.product-empty-message {
  display: none;
  margin: 30px auto 0;
  color: #4c4741;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.product-empty-message.is-visible {
  display: block;
}

.doodle-field {
  position: relative;
}

.doodle-field::before,
.doodle-field::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.products .doodle-field::before {
  display: none;
}

.product-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.product-grid.is-filtering {
  opacity: 0;
  transform: translateY(6px);
}

.product-grid::before,
.product-grid::after {
  content: "";
  position: absolute;
  inset: -42px -26px;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
}

.product-grid::before {
  background-position:
    left 25% top 0,
    left 0 top 42%,
    right 33% top 14%,
    right 9% top 7%,
    left 3% bottom 12%;
  background-size:
    90px auto,
    76px auto,
    36px auto,
    48px auto,
    58px auto;
}

.product-grid::after {
  background-position:
    right 0 top 34%,
    left 6% bottom 2%,
    right 22% bottom 20%,
    right -2% bottom 4%,
    left -14px top 7%;
  background-size:
    88px auto,
    44px auto,
    34px auto,
    58px auto,
    88px auto;
}

.product-card {
  position: relative;
  z-index: 1;
  opacity: 1;
  overflow: hidden;
  min-height: 260px;
  padding: 40px;
  border-radius: 18px;
  background-color: var(--cream);
  background-image: none;
  background-repeat: no-repeat;
  isolation: isolate;
  transform: translateY(0) scale(1);
  transform-origin: center center;
  cursor: pointer;
  transition:
    box-shadow 240ms ease,
    opacity 240ms ease,
    transform 240ms ease;
}

.product-card:hover,
.product-card:focus-visible,
.product-card.is-highlighted {
  box-shadow: 0 12px 24px rgba(37, 31, 23, 0.13);
  transform: translateY(-10px) scale(1) rotate(.3deg);
}

.bento-card:hover,
.bento-card:focus-visible,
.bento-card.is-highlighted,
.bag-card:hover,
.bag-card:focus-visible,
.bag-card.is-highlighted {
  transform: translateY(-10px) scale(1) rotate(-.3deg);
}

.product-card.is-highlighted {
  z-index: 3;
  box-shadow:
    0 22px 42px rgba(37, 31, 23, 0.2),
    0 14px 34px rgba(240, 91, 61, 0.16);
  transform: translateY(-10px) scale(1) rotate(.3deg);
}

.product-card.is-exiting {
  opacity: 0;
  transform: translateY(8px) scale(0.985);
}

.product-card.is-hidden,
.stacked-products.is-hidden {
  display: none;
}

.product-card:not(.is-hidden):not(.is-exiting) {
  animation: productFadeIn 260ms ease both;
}

@keyframes productFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.product-card::before,
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-card::before {
  z-index: 0;
}

.product-card::after {
  z-index: 1;
  background-repeat: no-repeat;
  transition: transform 360ms ease;
  will-change: transform;
}

.product-card:hover::after,
.product-card:focus-visible::after,
.product-card.is-highlighted::after {
  transform: none;
}

.bento-card:hover::after,
.bento-card:focus-visible::after,
.bento-card.is-highlighted::after {
  transform: none;
}

.lock-card:hover::after,
.lock-card:focus-visible::after,
.lock-card.is-highlighted::after {
  transform: none;
}

.bottle-card:hover::after,
.bottle-card:focus-visible::after,
.bottle-card.is-highlighted::after {
  transform: none;
}

.bag-card:hover::after,
.bag-card:focus-visible::after,
.bag-card.is-highlighted::after {
  transform: none;
}

.product-card h3 {
  position: relative;
  z-index: 2;
  margin: 8px 0 12px;
  color: var(--orange);
  font-size: 38px;
  line-height: 1;
}

.product-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #2f2f2f;
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.45;
}

.product-card.large {
  min-height: 520px;
  text-align: center;
  background-color: #fff;
}

.product-card.large::before {
  top: 49%;
  background: var(--cream);
  border-radius: 54% 54% 0 0 / 7% 7% 0 0;
  transform: scaleX(1.18);
}

.product-card.tall {
  min-height: 530px;
  text-align: center;
  background-color: var(--cream);
}

.product-img {
  position: relative;
  z-index: 2;
  width: min(86%, 390px);
  height: auto;
  margin: -10px auto 18px;
  object-fit: contain;
}

.gate-img {
  width: min(72%, 405px);
  margin-top: 42px;
  /* margin-bottom: 42px; */
}

.bento-img {
  width: min(72%, 405px);
  margin-top: 42px;
  /* margin-bottom: 36px; */
}

.lock-img {
  width: min(72%, 405px);
  margin-top: 42px;
  /* margin-bottom: 42px; */
}

.walker-img {
  width: min(72%, 405px);
  margin-top: 42px;
  /* margin-bottom: 28px; */
}

.carrier-img {
  width: min(72%, 405px);
  margin-top: 42px;
  /* margin-bottom: 34px; */
}

.stacked-products {
  display: grid;
  gap: 28px;
}

.stacked-products.is-filtered {
  grid-auto-rows: auto;
  height: auto;
}

.product-card.wide {
  display: grid;
  grid-template-columns: minmax(220px, 43%) 1fr;
  align-items: center;
  min-height: 246px;
  padding: 24px 34px 35px 30px;
}

.product-card.wide .product-img {
  justify-self: end;
  width: min(100%, 250px);
  margin: 0;
}

.product-card.wide .bag-img {
  width: min(100%, 350px);
}

.product-card.wide h3 {
  margin-top: 44px;
  text-align: left;
}

.product-card.wide p {
  text-align: left;
}

.gate-card::after {
  background-image:
    url("/assets/home/Vector.png"),
    url("/assets/home/Vector(2).png"),
    url("/assets/home/Vector(5).svg"),
    url("/assets/home/Vector(6).png"),
    url("/assets/home/Vector(7).png"),
    url("/assets/home/Vector(11).svg");
  background-position:
    left -46px top 24px,
    right 29% bottom -16px,
    left 38% top 60px,
    left 0% top 176px,
    left 12% bottom 170px,
    right -16px bottom 250px,
    right -8px bottom 172px;
  background-size:
    66px auto,
    110px auto,
    98px auto,
    42px auto,
    34px auto,
    96px auto,
    86px auto;
}

.bento-card::after {
  background-image:
    url("/assets/home/Vector(11).svg"),
    url("/assets/home/Vector(3).png"),
    url("/assets/home/Vector(7).png"),
    url("/assets/home/Vector(6).png"),
    url("/assets/home/Vector(5).png"),
    url("/assets/home/Vector(4).svg");
  background-position:
    right -27px top -14px,
    right 0% bottom 165px,
    left 3% top 186px,
    left 0% top -10px,
    right 8% top 252px,
    left 10% bottom 145px;
  background-size:
    104px auto,
    46px auto,
    38px auto,
    42px auto,
    46px auto,
    74px auto;
}

.lock-card::after {
  background-image:
    url("/assets/home/Vector(10).svg"),
    url("/assets/home/Vector(6).png"),
    url("/assets/home/Vector(3).png"),
    url("/assets/home/Vector(7).png"),
    url("/assets/home/Vector(11).svg"),
    url("/assets/home/Vector(5).svg"),
    url("/assets/home/Vector(1).png");
  background-position:
    left -22px top 259px,
    left 0% top 22px,
    right 0% top 18px,
    left 37% top 118px,
    right -12px top 248px,
    right 18% bottom 194px,
    left 12% bottom -16px;
  background-size:
    116px auto,
    48px auto,
    58px auto,
    44px auto,
    96px auto,
    86px auto,
    38px auto;
}

.bottle-card::after {
  background-image:
    url("/assets/home/Vector(7).png"),
    url("/assets/home/Vector(5).svg"),
    url("/assets/home/Vector(3).png"),
    url("/assets/home/Vector(10).svg"),
    url("/assets/home/Vector(2).png");
  background-position:
    left 12% top -37px,
    left 24% bottom -110px,
    right -3% top -15px,
    left -54px top 56px,
    right -8px bottom 10px;
  background-size:
    66px auto,
    142px auto,
    52px auto,
    76px auto,
    84px auto;
}

.bag-card::after {
  background-image:
    url("/assets/home/Vector(7).png"),
    url("/assets/home/Vector(4).svg"),
    url("/assets/home/Vector(12).svg"),
    url("/assets/home/Vector(11).svg");
  background-position:
    left -4px top -8px,
    left 36% top 34px,
    left 42% bottom 10px,
    right -10px bottom -24px;
  background-size:
    68px auto,
    72px auto,
    50px auto,
    86px auto;
}

.carrier-card::after {
  background-image:
    url("/assets/home/Vector(11).svg"),
    url("/assets/home/Vector(6).png"),
    url("/assets/home/Vector(7).png"),
    url("/assets/home/Vector(5).svg"),
    url("/assets/home/Vector(3).png"),
    url("/assets/home/Vector(2).png");
  background-position:
    right -20px top -12px,
    left 4% top 32px,
    left -18px top 220px,
    right 13% bottom 170px,
    left 38% top 116px,
    right -12px bottom 32px;
  background-size:
    96px auto,
    46px auto,
    62px auto,
    92px auto,
    54px auto,
    84px auto;
}

.see-more {
  margin: 54px auto 0;
  width: max-content;
}

.family-section {
  position: relative;
  padding: 112px clamp(22px, 5vw, 70px) 84px;
  background: var(--cream);
  overflow: hidden;
}

.family-section::after {
  content: "";
  position: absolute;
  inset: auto 0 70px;
  height: 420px;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position:
    left 10% top 42px,
    left 0 bottom 18px,
    right 18% top 84px,
    right 16% bottom 66px,
    right -28px top 12px,
    left -22px bottom 0,
    left 2% top 196px,
    right 27% bottom 18px,
    right 6% bottom 190px;
  background-size:
    38px auto,
    54px auto,
    64px auto,
    58px auto,
    116px auto,
    130px auto,
    80px auto,
    42px auto,
    38px auto;
}

.wave-top {
  position: absolute;
  inset: 0 0 auto;
  height: 58px;
  background: #fff;
  clip-path: ellipse(56% 58% at 50% 0);
}

.family-grid,
.purpose-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 112px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.family-copy p,
.purpose-copy p {
  max-width: 560px;
  margin-left: 0;
}

.family-photo-wrap {
  position: relative;
  width: min(430px, 90vw);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
}

/* .family-photo-wrap::after {
  content: "";
  position: absolute;
  right: -3%;
  bottom: -4%;
  width: 48%;
  height: 48%;
  border-radius: 50%;
  background: var(--cream);
} */

.family-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.purpose-grid {
  margin-top: 50px;
}

.purpose-copy {
  text-align: right;
}

.purpose-copy p {
  margin-left: auto;
  margin-right: auto;
}

.purpose-illustration {
  position: relative;
  min-height: 330px;
}

.purpose-illustration img {
  width: min(100%, 520px);
  height: auto;
  margin-inline: auto;
}

.newsletter {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 50px auto 0;
  text-align: center;
}

.newsletter-shape-field {
  overflow: visible;
}

.newsletter-shape-field .family-mark,
.newsletter-shape-field .newsletter-float {
  z-index: 1;
  pointer-events: none;
  animation: newsletterFloat 5.8s ease-in-out infinite;
  will-change: transform, translate, rotate;
}

.newsletter-shape-field .mark-11,
.newsletter-shape-field .mark-15 {
  animation-duration: 6.7s;
  animation-delay: -1.4s;
}

.newsletter-shape-field .mark-13,
.newsletter-shape-field .mark-16 {
  animation-duration: 5.2s;
  animation-delay: -2.2s;
}

.newsletter-shape-field .mark-14,
.newsletter-shape-field .mark-17 {
  animation-duration: 7.4s;
  animation-delay: -3.1s;
}

.newsletter-shape-field .mark-18,
.newsletter-shape-field .mark-19 {
  animation-duration: 6.1s;
  animation-delay: -4s;
}

.newsletter-wave {
  position: absolute;
  z-index: 0;
  top: -58px;
  left: 0;
  width: 100%;
  height: 76px;
  overflow: hidden;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23f7bc3a' d='M0 80H1440V38C1320 20 1240 58 1120 38C1000 18 920 55 800 38C680 21 610 56 500 38C390 19 315 57 205 38C95 19 45 42 0 34V80Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  pointer-events: none;
}

.newsletter-wave span {
  display: none;
}

.newsletter label {
  position: relative;
  z-index: 1;
  display: block;
  width: min(640px, 100%);
  margin: 0 auto 34px;
  padding: 12px 20px;
  background: transparent;
  color: #141414;
  font-size: clamp(20px, 3vw, 27px);
}

.email-row {
  display: flex;
  gap: 0;
  width: min(520px, 100%);
  margin: 0 auto;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.email-row input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  outline: 0;
  font-size: 12px;
  font-weight: 800;
}

.email-row .btn {
  min-height: 42px;
}

.brand-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 134px;
  padding: 28px 20px 45px 20px;
  background: var(--yellow);
  color: #fff;
  overflow: visible;
}

.brand-strip p {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
  text-align: center;
  z-index: 99;
}

.brand-strip img:not(.newsletter-wave) {
  width: 132px;
  z-index: 99;
  /* filter: brightness(0) invert(1); */
}

.footer {
  background: var(--footer);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto 1fr;
  gap: 44px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 70px clamp(24px, 5vw, 54px) 64px;
}

.footer h4 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer a,
.footer p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.footer a.active {
  color: var(--yellow);
  font-weight: 800;
}

.footer .footer-shop {
  color: #fff;
  width: max-content;
}

.footer-main div:not(.footer-social):not(.footer-shop)>a {
  display: block;
  margin-bottom: 13px;
}

.amazon {
  justify-self: center;
  position: relative;
  color: #fff !important;
  font-family: Arial, sans-serif;
  font-size: 42px !important;
  font-weight: 800;
  letter-spacing: -2px;
}

.amazon span {
  position: absolute;
  left: 48px;
  bottom: -10px;
  width: 72px;
  height: 22px;
  border-bottom: 5px solid #f5a623;
  border-radius: 0 0 50% 50%;
}

.footer-social {
  justify-self: end;
  text-align: right;
}

.footer-social div {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-bottom: 14px;
}

.footer-social div a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.86);
}

.footer-social svg,
.footer-social [data-lucide] {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.footer-social div a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(24px, 5vw, 70px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom div {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.decor,
.shape {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.hero .decor {
  z-index: -1;
  transition: transform 420ms ease;
  will-change: transform;
}

.hero-square {
  right: 40%;
  top: 94px;
  width: 120px;
}

.hero:hover .hero-square {
  transform: translate(-8px, 7px) rotate(-5deg);
}

.hero-triangle {
  right: -14px;
  top: 300px;
  width: 106px;
}

.hero:hover .hero-triangle {
  transform: translate(-10px, -8px) rotate(6deg);
}

.hero-ring {
  left: 30%;
  bottom: -22px;
  width: 92px;
}

.hero:hover .hero-ring {
  transform: translate(7px, -10px) rotate(8deg);
}

.hero-pill {
  right: 43%;
  top: 166px;
  width: 96px;
}

.hero:hover .hero-pill {
  transform: translate(9px, 6px) rotate(-4deg);
}

.products-hero {
  position: relative;
  padding: 200px clamp(22px, 5vw, 70px) 76px;
  overflow: hidden;
  background: var(--cream);
}

.products-hero::before {
  content: "";
  position: absolute;
  inset: 72px 0 0;
  background:
    linear-gradient(90deg, rgba(149, 190, 229, 0.22), rgba(247, 188, 58, 0.2)),
    url("/assets/home/product-bg.jpg") right 40% / cover no-repeat;
  opacity: 0.26;
}

.products-hero-content {
  position: relative;
  max-width: 760px;
  color: var(--ink);
}

.products-hero h1 {
  margin: 0 0 14px;
  color: var(--orange);
  font-family: "Fredoka", Arial, sans-serif;
  font-size: clamp(42px, 6vw, 70px);
  font-weight: 600;
  line-height: 1.02;
}

.products-hero p {
  max-width: 650px;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.products-listing {
  background: #fff;
}

.products-listing .product-card {
  cursor: default;
}

.products-listing .category-pills {
  margin-bottom: 24px;
}

.product-category-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(37, 31, 23, 0.08);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.product-category-link:hover,
.product-category-link:focus-visible {
  box-shadow: 0 12px 24px rgba(37, 31, 23, 0.13);
  transform: translateY(-3px);
}

.info-page-hero {
  position: relative;
  padding: 200px clamp(22px, 5vw, 70px) 76px;
  overflow: hidden;
  background: var(--cream);
}

.info-page-hero::before {
  content: "";
  position: absolute;
  inset: 72px 0 0;
  filter: brightness(0.5);
  background:
    linear-gradient(90deg, rgba(30, 44, 15, 0.64), rgba(30, 44, 15, 0.08)),
    url("/assets/home/contact-about-bg.jpg") right 30% / cover no-repeat;
}

.info-page-hero-content {
  position: relative;
  max-width: 700px;
  color: #fff;
}

.info-page-hero h1,
.info-section h2 {
  margin: 0 0 14px;
  color: var(--orange);
  font-family: "Fredoka", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.08;
}

.info-page-hero h1 {
  color: var(--yellow);
  /* font-size: clamp(42px, 6vw, 70px); */
  font-size: clamp(48px, 6vw, 76px);
}

.info-page-hero p {
  max-width: 620px;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.info-section {
  padding: 72px clamp(22px, 5vw, 70px);
}

.info-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  max-width: var(--container);
  margin: 0 auto;
  align-items: start;
}

.info-section h2 {
  font-size: 52px;
}

.info-section p {
  margin: 0 0 12px;
  font-size: 18px;
}

.info-panel {
  padding: 30px;
  border-radius: 18px;
  background: var(--cream);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form .btn {
  justify-self: start;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #4f4a43;
  font-size: 12px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(33, 31, 31, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  outline: 0;
  background: #fff;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.product-list-section {
  scroll-margin-top: 100px;
  padding-block: 34px;
}

.product-list-section + .product-list-section {
  border-top: 1px solid rgba(33, 31, 31, 0.08);
}

.product-list-section h2 {
  max-width: 1070px;
  margin: 0 auto 20px;
  color: var(--orange);
  font-family: "Fredoka", Arial, sans-serif;
  font-size: 52px;
  line-height: 1.1;
}

.product-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1070px;
  margin: 0 auto;
}

.product-list-card {
  min-height: 320px;
  scroll-margin-top: 110px;
}

.product-list-card .product-img {
  max-height: 230px;
}

.product-card.coming-soon-card {
  background: #fff7e3;
}

.product-card.coming-soon-card .product-placeholder-img {
  width: min(72%, 270px);
  max-height: 230px;
  margin-top: 24px;
  opacity: 0.92;
}

.product-card p:empty {
  display: none;
}

.product-meta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.product-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(149, 190, 229, 0.25);
  color: #2f2f2f;
  font-size: 11px;
  font-weight: 800;
}

.product-mark,
.family-mark,
.newsletter-float {
  z-index: 1;
  will-change: translate, rotate;
}

.family-shapes-active .family-mark:not(.newsletter-float) {
  animation: aboutShapeDrift 1200ms ease both;
}

.newsletter-shapes-active .family-mark:not(.newsletter-float) {
  animation-name: newsletterFloat;
}

.family-shapes-active .mark-7,
.newsletter-shapes-active .mark-11 {
  animation-delay: 90ms;
}

.family-shapes-active .mark-8,
.newsletter-shapes-active .mark-13 {
  animation-delay: 160ms;
}

.family-shapes-active .mark-9,
.newsletter-shapes-active .mark-14 {
  animation-delay: 230ms;
}

.newsletter-shapes-active .mark-16,
.newsletter-shapes-active .mark-17 {
  animation-delay: 280ms;
}

@keyframes aboutShapeDrift {
  0% {
    opacity: 0.35;
    translate: 0 18px;
    rotate: -2deg;
  }

  55% {
    opacity: 1;
    translate: 0 -6px;
    rotate: 2deg;
  }

  100% {
    opacity: 1;
    translate: 0 0;
    rotate: 0deg;
  }
}

@keyframes newsletterShapeDrift {
  0% {
    opacity: 0.45;
    translate: -8px 14px;
    rotate: -3deg;
  }

  55% {
    opacity: 1;
    translate: 7px -8px;
    rotate: 3deg;
  }

  100% {
    opacity: 1;
    translate: 0 0;
    rotate: 0deg;
  }
}

@keyframes newsletterFloat {
  0%,
  100% {
    translate: 0 0;
    rotate: -1deg;
  }

  45% {
    translate: 0 -10px;
    rotate: 2deg;
  }

  72% {
    translate: 6px 4px;
    rotate: -2deg;
  }
}

@keyframes waveDrift {
  0%,
  100% {
    transform: translateX(-14px) scaleY(1);
  }

  50% {
    transform: translateX(14px) scaleY(1.08);
  }
}

.mark-1 {
  left: -54px;
  top: 4px;
  width: 88px;
}

.mark-2 {
  left: 28%;
  top: -30px;
  width: 48px;
}

.mark-3 {
  right: 38%;
  top: -44px;
  width: 120px;
}

.mark-4 {
  right: 7%;
  top: 20px;
  width: 58px;
}

.mark-5 {
  right: -26px;
  top: 48%;
  width: 72px;
}

.mark-6 {
  left: 14%;
  top: 550px;
  width: 62px;
}

.mark-7 {
  right: -41px;
  top: 68px;
  width: 192px;
}

.mark-8 {
  left: -8px;
  top: 500px;
  width: 106px;
}

.mark-9 {
  right: 143px;
  top: 7px;
  width: 78px;
}

.mark-10 {
  left: 6%;
  top: 20px;
  width: 28px;
  transform: rotate(65deg);
}

.mark-11 {
  right: 20%;
  transform: translateX(-20%);
  bottom: -74px;
  width: 100px;
}

.mark-12 {
  left: -8px;
  top: 100px;
  width: 106px;
}

.mark-13 {
  right: 80px;
  top: 100px;
  width: 42px;
}

.mark-14 {
  right: -6%;
  transform: translateX(6%);
  top: 100px;
  width: 42px;
}

.mark-15 {
  left: 10%;
  transform: translateX(10%);
  top: 100px;
  width: 76px;
}

.mark-16 {
  left: 2%;
  transform: translateX(-2%);
  bottom: -95px;
  width: 73px;
}

.mark-17 {
  left: -6%;
  transform: translateX(6%);
  top: 90px;
  width: 42px;
}

.mark-18 {
  right: 0%;
  transform: translateX(0%);
  bottom: -144px;
  width: 116px;
}

.mark-19 {
  left: 48%;
  top: 24px;
  width: 74px;
}

.js-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.nav-scrolled {
  /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); */
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 120px 1fr 80px;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .mobile-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    display: grid;
    gap: 16px;
    grid-column: 1 / -1;
    padding: 18px 24px 24px;
    background: #fff5e1;
    box-shadow: 0 18px 24px rgba(0, 0, 0, 0.08);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 260px;
    overflow: hidden;
    pointer-events: auto;
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      max-height 260ms ease,
      visibility 0s linear 0s;
  }

  .mobile-menu.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    max-height: 0;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      max-height 220ms ease,
      visibility 0s linear 220ms;
  }

  .product-grid,
  .product-list-grid,
  .info-grid,
  .contact-grid,
  .family-grid,
  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px 22px;
  }

  .footer .footer-shop,
  .footer-social {
    grid-column: 1 / -1;
  }

  .product-card.wide {
    grid-template-columns: minmax(160px, 230px) 1fr;
  }

  .footer-social,
  .amazon {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 690px;
  }

  .hero-photo {
    object-position: 63% center;
    filter: brightness(0.5);
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(24, 36, 12, 0.72), rgba(24, 36, 12, 0.3));
  }

  .hero-content {
    padding-top: 78px;
  }

  .hero-square,
  .hero-triangle {
    opacity: 0.2;
  }

  .hero-pill, .hero-square {
    display: none;
  }

  .hero-ring{
    bottom: -44px;
  }

  .hero-separator {
    width: min(100%, 490px);
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .product-card.wide {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .products-hero {
    padding-top: 128px;
  }

  .gate-card::after {
    background-position:
      left -34px top 18px,
      right 18% bottom -12px,
      left 42% top 42px,
      left -2% top 145px,
      left 9% bottom 132px,
      right -18px bottom 206px;
    background-size:
      54px auto,
      86px auto,
      74px auto,
      34px auto,
      28px auto,
      74px auto;
  }

  .bento-card::after {
    background-position:
      right -24px top -12px,
      right -2% bottom 132px,
      left 4% top 142px,
      left -2% top -8px,
      right 8% top 208px,
      left 10% bottom 118px;
    background-size:
      84px auto,
      38px auto,
      30px auto,
      34px auto,
      38px auto,
      58px auto;
  }

  .lock-card::after {
    background-position:
      left -24px top 190px,
      left -2% top 18px,
      right -2% top 16px,
      left 35% top 92px,
      right -14px top 202px,
      right 14% bottom 142px,
      left 10% bottom -12px;
    background-size:
      90px auto,
      38px auto,
      46px auto,
      36px auto,
      76px auto,
      66px auto,
      30px auto;
  }

  .bottle-card::after {
    background-position:
      left 12% top -28px,
      left 18% bottom -62px,
      right -5% top -12px,
      left -42px top 42px,
      right -12px bottom 4px;
    background-size:
      52px auto,
      108px auto,
      40px auto,
      58px auto,
      66px auto;
  }

  .bag-card::after {
    background-position:
      left -8px top -8px,
      left 34% top 24px,
      left 20% bottom 18px,
      right -12px bottom -20px;
    background-size:
      54px auto,
      56px auto,
      40px auto,
      68px auto;
  }

  .family-section {
    padding-top: 88px;
  }

  .purpose-grid {
    margin-top: 72px;
  }

  .email-row {
    display: grid;
    overflow: hidden;
    border-radius: 24px;
  }

  .email-row input {
    text-align: center;
  }

  .brand-strip {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mark-15 {
    left: 8%;
    top: 76px;
    width: 34px;
    transform: none;
  }

  .mark-16 {
    left: 2%;
    bottom: -56px;
    width: 58px;
  }

  .mark-17 {
    left: auto;
    right: 8%;
    top: 70px;
    width: 34px;
    transform: none;
  }

  .purpose-copy {
    text-align: left;
  }

  .purpose-illustration {
    position: relative;
    min-height: 270px;
  }

  .family-photo-wrap{
    width: min(430px, 66vw);
  }

  .mark-7 {
    right: -83px;
    top: 68px;
    width: 192px;
    opacity: .3;
  }

  .hero-separator img {
    width: 100%;
  }

  .hero-lede{
    margin-bottom: 12px;
  }

  .hero-copy {
    margin-top: -6px;
  }

  .hero-buttons {
    align-items: stretch;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 20px;
  }

  .products .see-more,
  .footer .footer-shop,
  .contact-form .btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 20px;
  }

  .contact-form .btn {
    justify-self: stretch;
  }

  .section-intro h2,
  .family-copy h2,
  .purpose-copy h2,
  .info-section h2,
  .product-list-section h2 {
    font-size: 46px;
  }

  .mark-6,
  .mark-7,
  .mark-8 {
    opacity: .5 !important;
  }

}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 18px;
  }

  .brand img {
    width: 74px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
  }

  .product-card {
    padding: 24px 18px;
  }

  .product-card.large,
  .product-card.tall {
    min-height: 360px;
  }

  .product-img {
    width: min(94%, 360px);
    margin-top: -8px;
  }

  .gate-card::after {
    background-position:
      left -30px top 18px,
      right 14% bottom -10px,
      left 43% top 38px,
      left -3% top 126px,
      left 8% bottom 104px,
      right -20px bottom 168px;
    background-size:
      48px auto,
      74px auto,
      62px auto,
      30px auto,
      24px auto,
      64px auto;
  }

  .bento-card::after {
    background-position:
      right -22px top -10px,
      right -2% bottom 108px,
      left 3% top 122px,
      left -2% top -8px,
      right 8% top 176px,
      left 9% bottom 96px;
    background-size:
      74px auto,
      34px auto,
      28px auto,
      30px auto,
      34px auto,
      50px auto;
  }

  .lock-card::after {
    background-position:
      left -22px top 164px,
      left -3% top 18px,
      right -3% top 14px,
      left 34% top 78px,
      right -14px top 172px,
      right 14% bottom 118px,
      left 10% bottom -12px;
    background-size:
      78px auto,
      34px auto,
      40px auto,
      32px auto,
      66px auto,
      58px auto,
      28px auto;
  }

  .bottle-card::after {
    background-position:
      left 10% top -24px,
      left 16% bottom -72px,
      right -6% top -10px,
      left -38px top 40px,
      right -10px bottom 4px;
    background-size:
      46px auto,
      96px auto,
      36px auto,
      52px auto,
      58px auto;
  }

  .bag-card::after {
    background-position:
      left -8px top -8px,
      left 34% top 22px,
      left 18% bottom 16px,
      right -12px bottom -18px;
    background-size:
      48px auto,
      50px auto,
      36px auto,
      60px auto;
  }

  .mark-15 {
    left: 4%;
    top: 68px;
    width: 30px;
    transform: none;
  }

  .mark-16 {
    left: -4px;
    bottom: -90px;
    width: 50px;
  }

  .mark-17 {
    left: auto;
    right: 4%;
    top: 66px;
    width: 30px;
    transform: none;
  }

  .footer-main {
    padding-block: 48px;
  }

  .purpose-copy {
    text-align: left;
  }
}

.newsletter-shape-field .newsletter-float {
  animation-name: newsletterFloat;
}
