:root {
  --ink: #17211f;
  --muted: #5f6f69;
  --paper: #fbfaf5;
  --snow: #eef7f8;
  --teal: #0f766e;
  --teal-dark: #0a4f4b;
  --maple: #c9343a;
  --cedar: #b98255;
  --line: rgba(23, 33, 31, 0.14);
  --shadow: 0 24px 70px rgba(21, 43, 40, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12px 12px, rgba(201, 52, 58, 0.08) 0 3px, transparent 4px),
    radial-gradient(circle at 34px 28px, rgba(15, 118, 110, 0.08) 0 4px, transparent 5px),
    var(--paper);
  background-size: 72px 72px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
a {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

:focus-visible {
  outline: 3px solid #f4c34e;
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  border: 0;
  border-radius: 0;
  padding: 6px clamp(14px, 3vw, 34px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
    rgba(251, 250, 245, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 10px 26px rgba(23, 33, 31, 0.07);
  -webkit-backdrop-filter: blur(22px) saturate(1.28);
  backdrop-filter: blur(22px) saturate(1.28);
  transition:
    transform 320ms cubic-bezier(0.25, 1, 0.5, 1),
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-past-hero {
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(-100% - 8px));
}

.site-header.is-solid {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1)),
    rgba(251, 250, 245, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 10px 26px rgba(23, 33, 31, 0.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.32);
  backdrop-filter: blur(24px) saturate(1.32);
}

.brand {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: clamp(58px, 7vw, 90px);
  filter: none;
}

.site-header .brand img {
  height: clamp(72px, 8vw, 112px);
}

.brand picture {
  display: contents;
}

.site-header.is-solid .brand img {
  filter: none;
}

.nav-links {
  grid-column: 2;
  justify-self: center;
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: currentColor;
  font-weight: 700;
  font-size: 1.08rem;
}

.header-actions {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.header-controls {
  display: contents;
}

.mobile-shop-action {
  display: none;
}

.auth-prompt {
  max-width: 22ch;
  color: currentColor;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
  text-wrap: balance;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.auth-prompt:hover,
.auth-prompt:focus-visible {
  opacity: 0.82;
}

.auth-link {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.96rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.auth-link:hover,
.auth-link:focus-visible {
  color: var(--maple);
  background: rgba(255, 255, 255, 0.36);
  transform: translateY(-1px);
}

.auth-link-secondary {
  min-width: 84px;
  padding: 0 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
    var(--maple);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 8px 18px rgba(201, 52, 58, 0.22);
}

.site-header.is-solid .auth-link {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.24);
}

.site-header.is-solid .auth-link:hover,
.site-header.is-solid .auth-link:focus-visible {
  border-color: transparent;
  color: var(--maple);
  background: transparent;
}

.auth-link-secondary:hover,
.auth-link-secondary:focus-visible,
.site-header.is-solid .auth-link-secondary,
.site-header.is-solid .auth-link-secondary:hover,
.site-header.is-solid .auth-link-secondary:focus-visible {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent),
    var(--maple);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 18px rgba(201, 52, 58, 0.22);
}

.nav-links a {
  opacity: 0.96;
}

.nav-links a:hover {
  opacity: 1;
}

.icon-button {
  display: inline-flex;
  width: auto;
  height: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  padding: 7px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.icon-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 88px clamp(18px, 4vw, 58px) 28px;
  background: var(--ink);
}

.hero-media,
.hero-photo,
.scene-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.08);
  z-index: 0;
  transition: opacity 850ms linear;
  will-change: opacity, transform;
}

.hero-photo.is-active {
  z-index: 2;
  opacity: 1;
  animation: petDriftDefault 18s linear infinite alternate;
}

.hero-photo.is-leaving {
  z-index: 1;
  opacity: 0;
  animation: petDriftDefault 18s linear infinite alternate;
}

.hero-photo[data-slide="0"].is-active,
.hero-photo[data-slide="0"].is-leaving {
  object-position: 68% 52%;
  transform-origin: 70% 58%;
  animation-name: petDriftDogFeeder;
}

.hero-photo[data-slide="1"].is-active,
.hero-photo[data-slide="1"].is-leaving {
  transform-origin: 64% 50%;
  animation-name: petDriftCatsWater;
}

.hero-photo[data-slide="2"].is-active,
.hero-photo[data-slide="2"].is-leaving {
  transform-origin: 68% 58%;
  animation-name: petDriftSharedCorner;
}

.hero-photo[data-slide="3"].is-active,
.hero-photo[data-slide="3"].is-leaving {
  transform-origin: 64% 58%;
  animation-name: petDriftCatLitter;
}

.hero-photo[data-slide="4"].is-active,
.hero-photo[data-slide="4"].is-leaving {
  transform-origin: 69% 56%;
  animation-name: petDriftDogWater;
}

.scene-shade {
  background:
    linear-gradient(90deg, rgba(14, 30, 27, 0.34) 0%, rgba(14, 30, 27, 0.12) 54%, rgba(14, 30, 27, 0.04) 100%),
    linear-gradient(0deg, rgba(14, 30, 27, 0.7), rgba(14, 30, 27, 0.02) 58%);
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 38px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.hero-dot:hover,
.hero-dot:focus-visible {
  background: rgba(255, 255, 255, 0.88);
  transform: scale(1.08);
}

.hero-dot.is-active {
  background: rgba(130, 130, 130, 0.95);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(980px, 100%);
  color: #fff;
  animation: heroEnter 720ms cubic-bezier(0.2, 0.7, 0.25, 1) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-primary-action,
.hero-secondary-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 850;
  transition:
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    background 180ms ease;
}

.hero-primary-action {
  color: #fff;
  background: var(--maple);
}

.hero-secondary-action {
  color: #fff;
  background: rgba(14, 30, 27, 0.58);
}

.hero-primary-action:hover,
.hero-secondary-action:hover {
  transform: translateY(-2px);
}

.eyebrow,
.tile-kicker {
  margin: 0 0 14px;
  color: #b6ede6;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  display: grid;
  gap: 0.02em;
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(4rem, 9vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-wrap: balance;
  transition:
    opacity 620ms ease,
    transform 620ms ease,
    filter 620ms ease;
  will-change: opacity, transform, filter;
}

h1 span {
  display: block;
}

.hero-accent {
  color: #f4c34e;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.24);
}

#hero-title[data-tone="maple"] .hero-accent {
  color: #ff6f61;
}

#hero-title[data-tone="ice"] .hero-accent {
  color: #a8edf3;
}

#hero-title[data-tone="pine"] .hero-accent {
  color: #9be3b1;
}

#hero-title[data-tone="mint"] .hero-accent {
  color: #b7f2d4;
}

#hero-title[data-tone="sun"] .hero-accent {
  color: #ffd166;
}

.hero-content.is-text-changing h1 {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
}

.product-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.product-tile {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  padding: clamp(28px, 4vw, 56px);
  background: var(--ink);
  display: grid;
  align-content: end;
  cursor: pointer;
  isolation: isolate;
}

.product-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  pointer-events: none;
}

.product-tile.accent {
  background: var(--ink);
}

.product-tile > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition:
    transform 620ms cubic-bezier(0.2, 0.75, 0.18, 1),
    filter 620ms ease;
  animation: tileProductDrift 13s linear infinite alternate;
  will-change: transform;
}

#feeders > img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: none;
  transform: scale(1.01);
}

#hydration > img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: none;
  transform: scale(1.01);
}

#litter > img {
  object-position: 68% 54%;
  animation-duration: 15s;
}

.product-tile:hover > img {
  animation-play-state: paused;
  filter: saturate(1.12) contrast(1.05);
}

#feeders:hover > img {
  transform: scale(1.05) translate3d(1%, -1%, 0);
}

#hydration:hover > img {
  transform: scale(1.05) translate3d(1%, -1%, 0);
}

#litter:hover > img {
  transform: scale(1.22) translate3d(6%, -4%, 0);
}

.product-tile:hover::before {
  background: transparent;
}

.product-tile h2 {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.02em;
  margin: 0;
  max-width: 8ch;
  color: #fff;
  font-size: clamp(3rem, 5.3vw, 6.6rem);
  line-height: 0.88;
  letter-spacing: 0;
  transition: transform 500ms ease;
}

.product-tile:hover h2 {
  transform: translateY(-8px);
}

.product-tile h2 span {
  display: block;
}

#feeders h2 span:first-child {
  color: #ffb45c;
}

#hydration h2 span:first-child {
  color: #a8edf3;
}

#litter h2 span:first-child {
  color: #b7f2d4;
}

.collection-intro {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 104px) clamp(18px, 5vw, 76px);
  padding-bottom: clamp(30px, 5vw, 64px);
}

.collection-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 52, 58, 0.1) 0 12px, transparent 13px),
    radial-gradient(circle at 16% 28%, rgba(201, 52, 58, 0.1) 0 7px, transparent 8px),
    radial-gradient(circle at 22% 18%, rgba(15, 118, 110, 0.1) 0 9px, transparent 10px),
    radial-gradient(circle at 82% 72%, rgba(15, 118, 110, 0.1) 0 15px, transparent 16px),
    radial-gradient(circle at 90% 64%, rgba(201, 52, 58, 0.1) 0 8px, transparent 9px);
  transform: translateY(0);
  animation: softBackgroundWalk 16s linear infinite alternate;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.section-heading .eyebrow {
  color: var(--teal);
}

.section-heading h2,
.bundle-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 0.96;
}

.section-heading p,
.bundle-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.bundle-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(48px, 8vw, 104px) clamp(18px, 5vw, 76px);
  color: #fff;
  background: var(--teal-dark);
}

.top-picks {
  padding: clamp(68px, 7vw, 108px) clamp(18px, 4vw, 64px) clamp(76px, 8vw, 124px);
}

.top-picks-heading {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(36px, 5vw, 70px);
  text-align: center;
}

.top-picks-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.top-picks-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.55vw, 24px);
  max-width: 940px;
  margin-inline: auto;
}

.top-pick-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}

.top-pick-media {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  background: var(--snow);
}

.top-pick-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.top-pick-card:hover .top-pick-media img,
.top-pick-card:focus-visible .top-pick-media img {
  transform: scale(1.035);
}

.top-pick-card:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 5px;
  border-radius: 12px;
}

.top-pick-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 16px;
}

.top-pick-name {
  overflow: hidden;
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-pick-copy {
  min-height: 2.7em;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.top-pick-footer {
  min-height: 26px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.top-pick-price {
  font-size: 1.22rem;
  line-height: 1;
}

.top-pick-link {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.home-feature-banner {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 2.8 / 1;
  display: grid;
  align-items: center;
  isolation: isolate;
  background: var(--ink);
}

.home-feature-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14, 30, 27, 0.04) 24%, rgba(14, 30, 27, 0.22) 54%, rgba(14, 30, 27, 0.66) 100%),
    linear-gradient(0deg, rgba(14, 30, 27, 0.28), transparent 42%);
}

.home-feature-banner > picture {
  position: absolute;
  inset: 0;
  display: block;
}

.home-feature-banner > picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}

.home-feature-copy {
  position: relative;
  z-index: 2;
  width: min(48%, 760px);
  justify-self: end;
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: 48px clamp(36px, 7vw, 120px) 48px 24px;
  color: #fff;
  text-align: center;
}

.home-feature-copy h2 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(2.4rem, 3.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.24);
}

.home-feature-copy a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  padding: 0 24px;
  font-size: 1rem;
  font-weight: 850;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-feature-copy a:hover,
.home-feature-copy a:focus-visible {
  color: var(--ink);
  background: #fff;
  transform: translateY(-2px);
}

.home-feature-copy a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.home-faq {
  padding: clamp(48px, 5vw, 80px) clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: rgba(251, 250, 245, 0.82);
}

.home-faq-inner {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.home-faq-heading h2 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.home-faq-heading p {
  max-width: 38ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.home-faq-list {
  border-bottom: 1px solid rgba(23, 33, 31, 0.18);
}

.home-faq-item {
  border-top: 1px solid rgba(23, 33, 31, 0.18);
}

.home-faq-item summary {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 20px;
  align-items: center;
  padding: 14px 0;
  cursor: pointer;
  touch-action: manipulation;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 33, 31, 0.28);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.home-faq-item[open] summary::after {
  content: "-";
}

.home-faq-item summary:hover::after {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.home-faq-item summary:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.42);
  outline-offset: 4px;
}

.home-faq-item p {
  max-width: 65ch;
  margin: -2px 52px 22px 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
  text-wrap: pretty;
}

.collection-intro,
.product-band,
.bundle-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.bundle-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.4) 43% 44%, transparent 45%),
    radial-gradient(circle at 80% 20%, #fff 0 8px, transparent 9px);
  background-size: 180px 180px, 120px 120px;
  animation: cozyShimmer 12s linear infinite;
}

.bundle-copy,
.bundle-panel {
  z-index: 2;
}

.bundle-living-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.pet-window {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 190px;
  height: 128px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  opacity: 0.58;
  backdrop-filter: blur(2px);
}

.pet-window img,
.bundle-product-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pet-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 30, 27, 0.28), transparent 55%);
}

.pet-window-dog {
  left: 7%;
  bottom: 9%;
  border-radius: 999px 36px 999px 36px;
  animation: photoBubbleA 13s ease-in-out infinite;
}

.pet-window-dog img {
  object-position: 70% 55%;
}

.pet-window-cat {
  right: 22%;
  top: 9%;
  width: 170px;
  height: 118px;
  border-radius: 42px 999px 42px 999px;
  animation: photoBubbleB 12s ease-in-out infinite;
}

.pet-window-cat img {
  object-position: 66% 50%;
}

.pet-window-both {
  left: 46%;
  bottom: 5%;
  width: 150px;
  height: 104px;
  border-radius: 44px;
  animation: photoBubbleC 15s ease-in-out infinite;
}

.pet-window-both img {
  object-position: 70% 58%;
}

.bundle-product-dot {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  opacity: 0.72;
}

.feeder-dot {
  right: 35%;
  bottom: 14%;
  animation: productOrbitA 9s ease-in-out infinite;
}

.water-dot {
  right: 8%;
  top: 14%;
  animation: productOrbitB 10s ease-in-out infinite;
}

.litter-dot {
  right: 17%;
  bottom: 9%;
  animation: productOrbitC 11s ease-in-out infinite;
}

.bundle-copy .eyebrow {
  color: #b6ede6;
}

.bundle-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

.bundle-panel {
  position: relative;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  animation: productBobPanel 5.2s ease-in-out infinite;
}

.bundle-panel span {
  color: var(--maple);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.bundle-panel strong {
  display: block;
  margin: 12px 0 8px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.bundle-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3ecea;
}

.bundle-meter span {
  display: block;
  width: 78%;
  height: 100%;
  background: var(--maple);
}

.primary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 20px;
  color: #fff;
  background: var(--maple);
  font-weight: 900;
  cursor: pointer;
}

@keyframes petDriftDefault {
  from {
    transform: scale(1.08) translate3d(-1.1%, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(1.2%, -0.8%, 0);
  }
}

@keyframes petDriftDogFeeder {
  from {
    transform: scale(1.08) translate3d(0.6%, 0.4%, 0);
  }
  to {
    transform: scale(1.15) translate3d(-1.6%, -0.8%, 0);
  }
}

@keyframes petDriftCatsWater {
  from {
    transform: scale(1.1) translate3d(-0.8%, 0, 0);
  }
  to {
    transform: scale(1.16) translate3d(1.4%, -1%, 0);
  }
}

@keyframes petDriftSharedCorner {
  from {
    transform: scale(1.08) translate3d(1%, 0.2%, 0);
  }
  to {
    transform: scale(1.15) translate3d(-1.2%, -1%, 0);
  }
}

@keyframes petDriftCatLitter {
  from {
    transform: scale(1.1) translate3d(0.8%, 0.2%, 0);
  }
  to {
    transform: scale(1.16) translate3d(-1.5%, -0.7%, 0);
  }
}

@keyframes petDriftDogWater {
  from {
    transform: scale(1.08) translate3d(-0.6%, 0.3%, 0);
  }
  to {
    transform: scale(1.15) translate3d(1.3%, -0.9%, 0);
  }
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softBackgroundWalk {
  from {
    transform: translate3d(-8px, 0, 0);
  }
  to {
    transform: translate3d(8px, -12px, 0);
  }
}

@keyframes productBobPanel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes cozyShimmer {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 360px 0, -240px 180px;
  }
}

@keyframes tileProductDrift {
  from {
    transform: scale(1.04) translate3d(-1.4%, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(1.6%, -1.4%, 0);
  }
}

@keyframes photoBubbleA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg) scale(1);
  }
  45% {
    transform: translate3d(92px, -34px, 0) rotate(3deg) scale(1.06);
  }
  70% {
    transform: translate3d(36px, 18px, 0) rotate(-1deg) scale(0.98);
  }
}

@keyframes photoBubbleB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(2deg) scale(1);
  }
  42% {
    transform: translate3d(-80px, 38px, 0) rotate(-3deg) scale(1.05);
  }
  72% {
    transform: translate3d(-26px, -16px, 0) rotate(1deg) scale(0.98);
  }
}

@keyframes photoBubbleC {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.96);
  }
  50% {
    transform: translate3d(48px, -30px, 0) rotate(2deg) scale(1.05);
  }
}

@keyframes productOrbitA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(36px, -26px, 0) scale(1.08);
  }
}

@keyframes productOrbitB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.94);
  }
  50% {
    transform: translate3d(-34px, 28px, 0) scale(1.05);
  }
}

@keyframes productOrbitC {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-28px, -34px, 0) scale(1.08);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    padding: max(10px, env(safe-area-inset-top)) 14px 8px;
    color: #fff;
    text-shadow: none;
    background:
      linear-gradient(180deg, rgba(9, 22, 20, 0.38), rgba(9, 22, 20, 0.16) 72%, rgba(9, 22, 20, 0));
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.is-solid {
    color: var(--ink);
    background: rgba(251, 250, 245, 0.94);
    box-shadow: 0 10px 30px rgba(23, 33, 31, 0.08);
    backdrop-filter: blur(18px);
  }

  .header-controls {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }

  .header-controls::-webkit-scrollbar {
    display: none;
  }

  .site-header .header-actions {
    grid-column: auto;
    grid-row: auto;
    flex: 0 0 auto;
    justify-self: auto;
    flex-wrap: nowrap;
  }

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

  .site-header .brand img {
    width: 88px;
  }

  .nav-links {
    grid-column: auto;
    grid-row: auto;
    flex: 0 0 auto;
    justify-self: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: visible;
    padding: 0;
    color: #fff;
    font-size: 0.82rem;
    scrollbar-width: none;
    scroll-padding-inline: 14px;
  }

  .nav-links a {
    flex: 0 0 auto;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    padding: 0 13px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    line-height: 1;
    white-space: nowrap;
    opacity: 1;
  }

  .site-header.is-solid .nav-links {
    color: var(--ink);
  }

  .site-header.is-solid .nav-links a {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.78);
  }

  .header-actions {
    min-height: 40px;
    gap: 8px;
  }

  .auth-link {
    height: 40px;
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    backdrop-filter: blur(12px);
    font-size: 0.84rem;
    line-height: 1;
  }

  .site-header .icon-button {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .site-header.is-solid .auth-link {
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
  }

  .auth-prompt {
    max-width: 17ch;
    font-size: 0.75rem;
  }

  .auth-link-secondary {
    min-width: auto;
    padding: 0 12px;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
    padding-top: 132px;
    padding-bottom: 18px;
  }

  .hero-photo {
    object-position: 58% center;
  }

  .scene-shade {
    background:
      linear-gradient(0deg, rgba(14, 30, 27, 0.76) 0%, rgba(14, 30, 27, 0.3) 42%, rgba(14, 30, 27, 0.04) 100%),
      linear-gradient(90deg, rgba(14, 30, 27, 0.24), rgba(14, 30, 27, 0.06));
  }

  .hero-content {
    align-self: end;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.5rem, 14vw, 6rem);
  }

  .product-band,
  .section-heading,
  .bundle-section {
    grid-template-columns: 1fr;
  }

  .product-tile {
    min-height: 300px;
  }

  .product-tile > img {
    animation: none;
    transform: scale(1.02);
  }

  .product-tile h2 {
    max-width: 9ch;
    font-size: clamp(2.7rem, 15vw, 4.7rem);
  }

  .pet-window {
    opacity: 0.28;
    width: 128px;
    height: 88px;
  }

  .bundle-product-dot {
    opacity: 0.38;
    width: 66px;
    height: 66px;
  }
}

@media (max-width: 560px) {
  .hero {
    align-items: end;
    min-height: 100svh;
    height: 100svh;
    padding: 128px 16px 14px;
  }

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

  .brand img {
    width: 86px;
  }

  .site-header .brand img {
    width: 72px;
  }

  .auth-link {
    height: 38px;
    padding: 0 9px;
    font-size: 0.78rem;
  }

  .site-header .icon-button {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .auth-prompt {
    display: none;
  }

  .nav-links {
    margin-inline: -2px;
  }

  .hero-content {
    width: 100%;
  }

  .eyebrow,
  .tile-kicker {
    margin-bottom: 8px;
    font-size: 0.66rem;
  }

  h1 {
    max-width: 9ch;
    margin-bottom: 0;
    font-size: clamp(2.85rem, 16vw, 4.4rem);
    line-height: 0.9;
  }

  .collection-intro {
    padding-block: 34px 24px;
  }

  .section-heading h2,
  .bundle-copy h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .section-heading p,
  .bundle-copy p {
    font-size: 1rem;
  }

  .product-tile {
    min-height: 260px;
    padding: 24px 18px;
  }

  .bundle-section {
    padding-block: 38px;
  }

}

.track-page-shell {
  background: var(--paper);
}

.track-header,
.track-page,
.track-footer {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
}

.track-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.track-brand img { width: 118px; }

.track-back-link,
.track-help a,
.track-footer a {
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.track-back-link span,
.track-help a span,
.track-footer a span {
  margin-left: 8px;
  transition: margin 180ms ease;
}

.track-back-link:hover span,
.track-back-link:focus-visible span,
.track-help a:hover span,
.track-help a:focus-visible span,
.track-footer a:hover span,
.track-footer a:focus-visible span { margin-left: 12px; }

.track-page { padding: clamp(64px, 9vw, 116px) 0 92px; }

.track-intro {
  max-width: 650px;
  margin-bottom: clamp(54px, 8vw, 82px);
}

.track-intro h1 {
  max-width: 9ch;
  margin: 14px 0 22px;
  color: var(--ink);
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.track-intro > p:last-child {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.track-panel {
  max-width: 760px;
  padding: clamp(28px, 5vw, 48px);
  background: #f3f7f6;
}

.track-panel-heading,
.track-result-heading { display: flex; align-items: flex-start; gap: 16px; }

.track-panel-number {
  flex: 0 0 auto;
  padding-top: 4px;
  color: var(--maple);
  font-size: 0.76rem;
  font-weight: 850;
}

.track-panel h2,
.track-result h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
}

.track-panel-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.track-form { display: grid; gap: 9px; margin-top: 30px; }

.track-form label {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.track-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.track-input-row input {
  min-width: 0;
  height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(23, 33, 31, 0.2);
  border-radius: 2px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.track-input-row input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.track-input-row button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 2px;
  color: #fff;
  background: var(--teal-dark);
  font-weight: 850;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.track-input-row button:hover,
.track-input-row button:focus-visible { background: var(--maple); transform: translateY(-2px); }

.track-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.track-result { max-width: 760px; margin-top: 56px; }

.track-result-heading { padding-bottom: 15px; border-bottom: 1px solid var(--ink); }

#tracking-container { min-height: 120px; margin-top: 22px; color: var(--muted); }

.track-help {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  max-width: 760px;
  margin-top: 64px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.track-help p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.track-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
}

@media (max-width: 620px) {
  .track-header,
  .track-page,
  .track-footer { width: min(100% - 28px, 540px); }
  .track-header { min-height: 72px; }
  .track-brand img { width: 94px; }
  .track-page { padding-block: 58px 70px; }
  .track-intro h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .track-panel { padding: 24px 18px; }
  .track-input-row { grid-template-columns: 1fr; }
  .track-input-row button { justify-content: center; }
  .track-help,
  .track-footer { align-items: flex-start; flex-direction: column; }
}

.faq-page-shell {
  background: var(--paper);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  min-height: 88px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.faq-brand img {
  width: 118px;
}

.faq-back-link,
.faq-footer a {
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.faq-back-link span,
.faq-footer a span {
  margin-left: 8px;
  transition: margin 180ms ease;
}

.faq-back-link:hover span,
.faq-back-link:focus-visible span,
.faq-footer a:hover span,
.faq-footer a:focus-visible span {
  margin-left: 12px;
}

.faq-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0 96px;
}

.faq-intro {
  max-width: 660px;
  margin-bottom: clamp(54px, 8vw, 96px);
}

.faq-intro h1 {
  max-width: 10ch;
  margin: 14px 0 22px;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.faq-intro > p:last-child {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.faq-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 720px);
  justify-content: space-between;
  gap: 48px;
}

.faq-aside {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 11px;
  padding-top: 5px;
}

.faq-aside span {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-aside a {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.3;
}

.faq-aside a:hover,
.faq-aside a:focus-visible {
  color: var(--teal-dark);
}

.faq-groups {
  display: grid;
  gap: 58px;
}

.faq-group {
  scroll-margin-top: 28px;
}

.faq-group-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink);
}

.faq-group-heading span {
  color: var(--maple);
  font-size: 0.78rem;
  font-weight: 850;
}

.faq-group-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  letter-spacing: -0.03em;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 750;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  color: var(--teal-dark);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 5px;
}

.faq-item p {
  max-width: 68ch;
  margin: -3px 40px 22px 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.faq-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
}

@media (max-width: 760px) {
  .faq-header,
  .faq-page,
  .faq-footer {
    width: min(100% - 28px, 620px);
  }

  .faq-header {
    min-height: 72px;
  }

  .faq-brand img {
    width: 94px;
  }

  .faq-page {
    padding-block: 58px 70px;
  }

  .faq-intro {
    margin-bottom: 58px;
  }

  .faq-intro h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .faq-layout {
    display: block;
  }

  .faq-aside {
    position: static;
    display: flex;
    gap: 10px 18px;
    flex-wrap: wrap;
    margin-bottom: 54px;
  }

  .faq-aside span {
    flex-basis: 100%;
    margin-bottom: 2px;
  }

  .faq-groups {
    gap: 48px;
  }

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

@media (hover: none) {
  .product-tile:hover > img,
  #feeders:hover > img,
  #hydration:hover > img,
  #litter:hover > img {
    filter: none;
    transform: scale(1.02);
  }

  .product-tile:hover h2 {
    transform: none;
  }
}

.about-page-shell { background: var(--paper); }
.about-header, .about-page, .about-footer { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.about-header { display: flex; align-items: center; justify-content: space-between; min-height: 88px; border-bottom: 1px solid var(--line); }
.about-brand img { width: 118px; }
.about-back-link, .about-shop-link, .about-footer a { color: var(--teal-dark); font-size: .88rem; font-weight: 850; }
.about-back-link span, .about-shop-link span, .about-footer a span { margin-left: 8px; transition: margin 180ms ease; }
.about-back-link:hover span, .about-back-link:focus-visible span, .about-shop-link:hover span, .about-shop-link:focus-visible span, .about-footer a:hover span, .about-footer a:focus-visible span { margin-left: 12px; }
.about-page { padding: clamp(46px, 6vw, 82px) 0 104px; }
.about-hero { position: relative; min-height: min(62vw, 650px); overflow: hidden; background: var(--teal-dark); }
.about-hero img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.about-hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9, 46, 43, .72), rgba(9, 46, 43, .08) 72%); content: ""; }
.about-hero-copy { position: absolute; z-index: 1; bottom: clamp(28px, 6vw, 76px); left: clamp(24px, 6vw, 76px); max-width: 600px; color: #fff; }
.about-hero-copy .eyebrow { color: rgba(255,255,255,.78); }
.about-hero-copy h1 { max-width: 9ch; margin: 14px 0 0; color: #fff; font-size: clamp(3.2rem, 7vw, 6.4rem); line-height: .9; letter-spacing: -.04em; text-wrap: balance; }
.about-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: clamp(46px, 6vw, 78px) 0 clamp(72px, 9vw, 120px); }
.about-principles div { display: grid; gap: 9px; align-content: start; }
.about-principles span { color: var(--maple); font-size: .76rem; font-weight: 850; }
.about-principles strong { color: var(--ink); font-size: 1.1rem; }
.about-principles p { max-width: 29ch; margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }
.about-story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 6vw, 84px); align-items: center; padding: clamp(42px, 7vw, 92px) 0; border-top: 1px solid var(--line); }
.about-story-reverse .about-story-media { order: 2; }
.about-story-reverse .about-story-copy { order: 1; }
.about-story-media { aspect-ratio: 1.12; overflow: hidden; background: var(--snow); }
.about-story-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.about-story:hover .about-story-media img { transform: scale(1.03); }
.about-story-copy { max-width: 470px; }
.about-story-copy h2 { margin: 14px 0 20px; color: var(--ink); font-size: clamp(2.2rem, 4vw, 4.2rem); line-height: .94; letter-spacing: -.04em; text-wrap: balance; }
.about-story-copy p:not(.eyebrow) { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.about-shop-link { display: inline-flex; margin-top: 12px; }
.about-products { padding: clamp(76px, 10vw, 132px) 0 0; }
.about-products-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; padding-bottom: 28px; }
.about-products-heading h2 { max-width: 12ch; margin: 0; color: var(--ink); font-size: clamp(2.2rem, 4.5vw, 4.3rem); line-height: .92; letter-spacing: -.04em; text-wrap: balance; }
.about-product-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.about-product-list a { position: relative; display: block; min-height: 340px; overflow: hidden; background: var(--teal-dark); }
.about-product-list img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; transition: transform 450ms ease; }
.about-product-list a::after { position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(9,46,43,.82)); content: ""; }
.about-product-list a:hover img { transform: scale(1.04); }
.about-product-list span { position: absolute; z-index: 1; right: 20px; bottom: 20px; left: 20px; display: flex; justify-content: space-between; color: #fff; font-size: 1rem; font-weight: 850; }
.about-product-list b { color: rgba(255,255,255,.76); font-size: 1.25rem; }
.about-footer { display: flex; justify-content: space-between; gap: 16px; padding: 18px 0 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: .74rem; letter-spacing: .03em; }
.about-principles { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(22px, 4vw, 58px); }
.about-principles div { position: relative; padding-top: 20px; }
.about-principles div::before { position: absolute; top: 0; left: 0; width: 34px; height: 2px; background: var(--maple); content: ""; }
.about-principles strong { font-size: clamp(1.08rem, 1.8vw, 1.35rem); letter-spacing: -.02em; }
.about-story-copy h2 { max-width: 11ch; }
.about-story-copy p:not(.eyebrow) { max-width: 44ch; }
.about-products-heading .eyebrow { margin-bottom: 10px; }
.about-product-list a { transition: transform 220ms ease, box-shadow 220ms ease; }
.about-product-list a:hover, .about-product-list a:focus-visible { transform: translateY(-4px); box-shadow: 0 14px 26px rgba(21, 43, 40, .16); }
.about-back-link, .about-shop-link, .about-footer a { transition: color 180ms ease; }
.about-back-link:hover, .about-back-link:focus-visible, .about-shop-link:hover, .about-shop-link:focus-visible, .about-footer a:hover, .about-footer a:focus-visible { color: var(--maple); }

.terms-page-shell { background: var(--paper); }
.terms-header, .terms-page { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.terms-header { display: flex; align-items: center; justify-content: space-between; min-height: 88px; border-bottom: 1px solid var(--line); }
.terms-header .about-brand img { width: 118px; }
.terms-page { padding: clamp(58px, 8vw, 110px) 0 108px; }
.terms-intro { max-width: 730px; padding-bottom: clamp(54px, 7vw, 92px); }
.terms-intro h1 { max-width: 9ch; margin: 16px 0 22px; color: var(--ink); font-size: clamp(3.6rem, 8vw, 7.4rem); line-height: .86; letter-spacing: -.04em; text-wrap: balance; }
.terms-lede { max-width: 55ch; margin: 0; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 1.55; }
.terms-date { margin: 28px 0 0; color: var(--teal-dark); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.terms-layout { display: grid; grid-template-columns: minmax(170px, .32fr) minmax(0, 1fr); gap: clamp(38px, 8vw, 126px); align-items: start; border-top: 1px solid var(--line); padding-top: 38px; }
.terms-index { position: sticky; top: 28px; display: grid; gap: 8px; align-content: start; }
.terms-index p { margin: 0 0 12px; color: var(--ink); font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.terms-index a { width: fit-content; color: var(--muted); font-size: .88rem; line-height: 1.35; transition: color 180ms ease, transform 180ms ease; }
.terms-index a:hover, .terms-index a:focus-visible { color: var(--maple); transform: translateX(4px); }
.terms-copy { max-width: 700px; }
.terms-copy section { scroll-margin-top: 28px; padding: 0 0 58px; }
.terms-copy section + section { border-top: 1px solid var(--line); padding-top: 48px; }
.terms-section-label { display: block; margin-bottom: 14px; color: var(--maple); font-size: .76rem; font-weight: 850; letter-spacing: .08em; }
.terms-copy h2 { margin: 0 0 18px; color: var(--ink); font-size: clamp(1.65rem, 3vw, 2.55rem); line-height: 1; letter-spacing: -.03em; text-wrap: balance; }
.terms-copy p { max-width: 68ch; margin: 0 0 16px; color: var(--muted); font-size: 1rem; line-height: 1.72; text-wrap: pretty; }
.terms-copy p:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
  .terms-header, .terms-page { width: min(100% - 28px, 620px); }
  .terms-header { min-height: 72px; }
  .terms-header .about-brand img { width: 94px; }
  .terms-page { padding-block: 52px 70px; }
  .terms-intro { padding-bottom: 54px; }
  .terms-intro h1 { font-size: clamp(3.5rem, 16vw, 5.7rem); }
  .terms-layout { grid-template-columns: 1fr; gap: 46px; padding-top: 28px; }
  .terms-index { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; }
  .terms-index p { grid-column: 1 / -1; margin-bottom: 4px; }
  .terms-copy section { padding-bottom: 46px; }
  .terms-copy section + section { padding-top: 38px; }
  .about-principles { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .about-product-list a, .about-product-list img, .about-story-media img, .about-back-link span, .about-shop-link span, .about-footer a span, .terms-index a { transition: none; }
}
@media (max-width: 720px) {
  .about-header, .about-page, .about-footer { width: min(100% - 28px, 620px); }
  .about-header { min-height: 72px; }
  .about-brand img { width: 94px; }
  .about-page { padding-block: 28px 70px; }
  .about-hero { min-height: 610px; }
  .about-hero-copy h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .about-principles, .about-story, .about-product-list { grid-template-columns: 1fr; }
  .about-principles { gap: 26px; padding-block: 48px 70px; }
  .about-principles p { max-width: 46ch; }
  .about-story { gap: 28px; padding-block: 48px; }
  .about-story-reverse .about-story-media, .about-story-reverse .about-story-copy { order: initial; }
  .about-products-heading { display: block; }
  .about-products-heading h2 { margin-top: 14px; }
  .about-product-list a, .about-product-list img { min-height: 280px; }
  .about-footer { flex-direction: column; }
}

.blog-page-shell { background: var(--paper); }
.blog-header, .blog-page { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.blog-header { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; min-height: 88px; border-bottom: 1px solid var(--line); }
.blog-header .about-brand { justify-self: start; }
.blog-header .about-brand img { width: 118px; }
.blog-nav { display: flex; gap: clamp(16px, 3vw, 34px); color: var(--muted); font-size: .82rem; font-weight: 800; }
.blog-nav a { transition: color 180ms ease; }
.blog-nav a:hover, .blog-nav a:focus-visible { color: var(--maple); }
.blog-header .about-back-link { justify-self: end; }
.blog-page { padding: clamp(58px, 8vw, 108px) 0 100px; }
.blog-intro { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(240px, .55fr); gap: 46px; align-items: end; padding-bottom: clamp(48px, 7vw, 86px); }
.blog-intro h1 { max-width: 9ch; margin: 16px 0 0; color: var(--ink); font-size: clamp(3.8rem, 8vw, 7.5rem); line-height: .84; letter-spacing: -.04em; text-wrap: balance; }
.blog-intro > p { max-width: 34ch; margin: 0 0 4px; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 1.55; }
.blog-featured { display: grid; grid-template-columns: minmax(0, 1.24fr) minmax(280px, .76fr); min-height: 465px; background: var(--teal-dark); color: #fff; }
.blog-featured-media { min-height: 465px; overflow: hidden; }
.blog-featured-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.blog-featured:hover .blog-featured-media img { transform: scale(1.03); }
.blog-featured-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 5vw, 68px); }
.blog-meta { margin: 0 0 18px; color: var(--muted); font-size: .72rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.blog-featured .blog-meta { color: rgba(255,255,255,.7); }
.blog-meta span { color: var(--maple); }
.blog-featured .blog-meta span { color: #f4c34e; }
.blog-featured h2 { max-width: 9ch; margin: 0 0 22px; font-size: clamp(2.3rem, 4vw, 4.3rem); line-height: .93; letter-spacing: -.035em; text-wrap: balance; }
.blog-featured-copy > p:not(.blog-meta) { max-width: 38ch; margin: 0; color: rgba(255,255,255,.8); line-height: 1.65; }
.blog-featured-link, .blog-note-link { display: inline-flex; align-items: center; gap: 10px; width: fit-content; margin-top: 28px; color: #fff; font-size: .88rem; font-weight: 850; }
.blog-featured-link span, .blog-note-link span { transition: transform 180ms ease; }
.blog-featured-link:hover span, .blog-featured-link:focus-visible span, .blog-note-link:hover span, .blog-note-link:focus-visible span { transform: translateX(5px); }
.blog-section { padding-top: clamp(82px, 11vw, 150px); }
.blog-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.blog-section-heading .eyebrow { margin: 0 0 5px; }
.blog-section-heading h2 { max-width: 12ch; margin: 0; color: var(--ink); font-size: clamp(2.2rem, 4.5vw, 4.4rem); line-height: .9; letter-spacing: -.04em; text-wrap: balance; }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding-top: 12px; }
.blog-card { min-width: 0; }
.blog-card-media { aspect-ratio: 1.13; overflow: hidden; background: var(--snow); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-copy { padding: 20px 4px 0; }
.blog-card-copy .blog-meta { margin-bottom: 12px; }
.blog-card-copy h3 { max-width: 18ch; margin: 0 0 12px; color: var(--ink); font-size: clamp(1.4rem, 2vw, 1.9rem); line-height: 1; letter-spacing: -.025em; text-wrap: balance; }
.blog-card-copy p:not(.blog-meta) { max-width: 34ch; margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }
.blog-home-section { padding-bottom: clamp(82px, 11vw, 150px); }
.blog-home-grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr); gap: clamp(28px, 6vw, 84px); align-items: center; padding-top: 28px; }
.blog-home-image { aspect-ratio: 1.45; overflow: hidden; background: var(--snow); }
.blog-home-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-home-copy { max-width: 430px; }
.blog-home-copy p { margin: 0 0 16px; color: var(--muted); line-height: 1.72; }
.blog-home-copy .blog-featured-link { color: var(--teal-dark); }
.blog-note { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); column-gap: 40px; align-items: end; padding: clamp(34px, 5vw, 64px); background: var(--maple); color: #fff; }
.blog-note .eyebrow { grid-column: 1 / -1; margin: 0 0 18px; color: rgba(255,255,255,.76); }
.blog-note h2 { max-width: 9ch; margin: 0; font-size: clamp(2.3rem, 4vw, 4.2rem); line-height: .9; letter-spacing: -.035em; text-wrap: balance; }
.blog-note > p:not(.eyebrow) { max-width: 36ch; margin: 0; color: rgba(255,255,255,.86); line-height: 1.6; }
.blog-note-link { grid-column: 2; justify-self: start; margin-top: 24px; }
@media (max-width: 720px) {
  .blog-header, .blog-page { width: min(100% - 28px, 620px); }
  .blog-header { display: flex; min-height: 72px; }
  .blog-header .about-brand img { width: 94px; }
  .blog-nav { display: none; }
  .blog-header .about-back-link { margin-left: auto; }
  .blog-page { padding-block: 52px 70px; }
  .blog-intro, .blog-featured, .blog-home-grid, .blog-note { grid-template-columns: 1fr; }
  .blog-intro { gap: 28px; padding-bottom: 54px; }
  .blog-intro h1 { font-size: clamp(3.5rem, 16vw, 5.7rem); }
  .blog-featured, .blog-featured-media { min-height: 0; }
  .blog-featured-media { aspect-ratio: 1.15; }
  .blog-featured-copy { padding: 32px 26px 38px; }
  .blog-featured h2 { max-width: 11ch; }
  .blog-section-heading { display: block; }
  .blog-section-heading h2 { margin-top: 14px; }
  .blog-grid { grid-template-columns: 1fr; gap: 42px; }
  .blog-card-copy { padding-top: 16px; }
  .blog-home-grid { gap: 28px; }
  .blog-note { row-gap: 22px; padding: 32px 26px 38px; }
  .blog-note .eyebrow, .blog-note-link { grid-column: auto; }
  .blog-note > p:not(.eyebrow) { margin-top: 0; }
  .blog-note-link { margin-top: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .blog-featured-media img, .blog-card-media img, .blog-nav a, .blog-featured-link span, .blog-note-link span { transition: none; }
}

.app-service-page-shell { background: var(--paper); }
.app-service-header, .app-service-page { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.app-service-header { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; min-height: 88px; border-bottom: 1px solid var(--line); }
.app-service-header .about-brand { justify-self: start; }
.app-service-header .about-brand img { width: 118px; }
.app-service-nav { display: flex; gap: clamp(16px, 3vw, 34px); color: var(--muted); font-size: .82rem; font-weight: 800; }
.app-service-nav a { transition: color 180ms ease; }
.app-service-nav a:hover, .app-service-nav a:focus-visible { color: var(--maple); }
.app-service-header .about-back-link { justify-self: end; }
.app-service-page { padding: clamp(58px, 8vw, 108px) 0 100px; }
.app-service-hero { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); min-height: 570px; background: var(--teal-dark); color: #fff; }
.app-service-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 6vw, 78px); }
.app-service-hero-copy .eyebrow, .app-service-note .eyebrow { color: rgba(255,255,255,.72); }
.app-service-hero h1 { max-width: 8ch; margin: 16px 0 22px; color: #fff; font-size: clamp(3.4rem, 7vw, 6.8rem); line-height: .85; letter-spacing: -.04em; text-wrap: balance; }
.app-service-hero-copy > p:not(.eyebrow) { max-width: 34ch; margin: 0; color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.65; }
.app-service-hero-media { min-height: 570px; overflow: hidden; }
.app-service-hero-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.app-service-hero:hover .app-service-hero-media img { transform: scale(1.03); }
.app-service-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.app-service-primary, .app-service-secondary { display: inline-flex; align-items: center; gap: 10px; width: fit-content; font-size: .86rem; font-weight: 850; }
.app-service-primary span, .app-service-secondary span { transition: transform 180ms ease; }
.app-service-primary:hover span, .app-service-primary:focus-visible span, .app-service-secondary:hover span, .app-service-secondary:focus-visible span { transform: translateX(5px); }
.app-service-primary { padding: 13px 16px; color: var(--ink); background: #f4c34e; }
.app-service-secondary { padding-bottom: 3px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.7); }
.app-service-intro { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 40px; align-items: start; padding: clamp(82px, 11vw, 150px) 0; border-bottom: 1px solid var(--line); }
.app-service-intro .eyebrow { margin: 8px 0 0; }
.app-service-intro h2 { max-width: 11ch; margin: 0; color: var(--ink); font-size: clamp(2.7rem, 5vw, 5.2rem); line-height: .9; letter-spacing: -.04em; text-wrap: balance; }
.app-service-intro > p:last-child { max-width: 39ch; margin: 8px 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.app-service-features { padding: clamp(82px, 11vw, 150px) 0; }
.app-service-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.app-service-section-heading .eyebrow { margin: 0 0 5px; }
.app-service-section-heading h2 { max-width: 12ch; margin: 0; color: var(--ink); font-size: clamp(2.2rem, 4.5vw, 4.4rem); line-height: .9; letter-spacing: -.04em; text-wrap: balance; }
.app-service-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding-top: 12px; }
.app-service-feature-grid article { min-height: 245px; padding: 24px; background: var(--snow); }
.app-service-feature-mark { display: block; margin-bottom: 44px; color: var(--maple); font-size: .75rem; font-weight: 850; letter-spacing: .08em; }
.app-service-feature-grid h3 { margin: 0 0 12px; color: var(--ink); font-size: 1.45rem; line-height: 1; letter-spacing: -.025em; }
.app-service-feature-grid p { max-width: 31ch; margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }
.app-service-routine { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(30px, 6vw, 84px); align-items: center; padding: clamp(58px, 7vw, 96px) 0; border-top: 1px solid var(--line); }
.app-service-routine-media { aspect-ratio: 1.16; overflow: hidden; background: var(--snow); }
.app-service-routine-media img { width: 100%; height: 100%; object-fit: cover; }
.app-service-routine-copy { max-width: 455px; }
.app-service-routine-copy h2 { max-width: 10ch; margin: 14px 0 28px; color: var(--ink); font-size: clamp(2.4rem, 4vw, 4.2rem); line-height: .9; letter-spacing: -.04em; text-wrap: balance; }
.app-service-routine-copy ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: routine; }
.app-service-routine-copy li { display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: 12px; padding: 16px 0; border-top: 1px solid var(--line); counter-increment: routine; }
.app-service-routine-copy li::before { grid-column: 1; grid-row: 1 / span 2; content: counter(routine, decimal-leading-zero); color: var(--maple); font-size: .72rem; font-weight: 850; }
.app-service-routine-copy li span, .app-service-routine-copy li p { grid-column: 2; }
.app-service-routine-copy li span { color: var(--ink); font-weight: 850; }
.app-service-routine-copy li p { margin: 4px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.app-service-primary-dark { margin-top: 22px; color: #fff; background: var(--teal-dark); }
.app-service-note { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); column-gap: 40px; align-items: end; padding: clamp(34px, 5vw, 64px); background: var(--maple); color: #fff; }
.app-service-note .eyebrow { grid-column: 1 / -1; margin: 0 0 18px; }
.app-service-note h2 { max-width: 10ch; margin: 0; color: #fff; font-size: clamp(2.3rem, 4vw, 4.2rem); line-height: .9; letter-spacing: -.035em; text-wrap: balance; }
.app-service-note > p:not(.eyebrow) { max-width: 36ch; margin: 0; color: rgba(255,255,255,.86); line-height: 1.6; }
.app-service-note .app-service-secondary { grid-column: 2; justify-self: start; margin-top: 24px; }
@media (max-width: 720px) {
  .app-service-header, .app-service-page { width: min(100% - 28px, 620px); }
  .app-service-header { display: flex; min-height: 72px; }
  .app-service-header .about-brand img { width: 94px; }
  .app-service-nav { display: none; }
  .app-service-header .about-back-link { margin-left: auto; }
  .app-service-page { padding-block: 52px 70px; }
  .app-service-hero, .app-service-intro, .app-service-routine, .app-service-note { grid-template-columns: 1fr; }
  .app-service-hero, .app-service-hero-media { min-height: 0; }
  .app-service-hero-media { aspect-ratio: 1.15; order: -1; }
  .app-service-hero-copy { padding: 34px 26px 42px; }
  .app-service-hero h1 { font-size: clamp(3.5rem, 16vw, 5.7rem); }
  .app-service-intro { gap: 24px; padding-block: 70px; }
  .app-service-intro h2 { font-size: clamp(2.7rem, 13vw, 4.6rem); }
  .app-service-section-heading { display: block; }
  .app-service-section-heading h2 { margin-top: 14px; }
  .app-service-feature-grid { grid-template-columns: 1fr; gap: 10px; }
  .app-service-feature-grid article { min-height: 0; padding: 22px; }
  .app-service-feature-mark { margin-bottom: 28px; }
  .app-service-routine { gap: 30px; }
  .app-service-note { row-gap: 22px; padding: 32px 26px 38px; }
  .app-service-note .eyebrow, .app-service-note .app-service-secondary { grid-column: auto; }
  .app-service-note .app-service-secondary { margin-top: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .app-service-hero-media img, .app-service-nav a, .app-service-primary span, .app-service-secondary span { transition: none; }
}

.policy-page-shell { background: var(--paper); }
.policy-header, .policy-page { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.policy-header { display: flex; align-items: center; justify-content: space-between; min-height: 88px; border-bottom: 1px solid var(--line); }
.policy-header .about-brand img { width: 118px; }
.policy-page { padding: clamp(58px, 8vw, 108px) 0 100px; }
.policy-intro { max-width: 740px; padding-bottom: clamp(48px, 6vw, 76px); }
.policy-intro h1 { max-width: 9ch; margin: 16px 0 22px; color: var(--ink); font-size: clamp(3.6rem, 8vw, 7.4rem); line-height: .86; letter-spacing: -.04em; text-wrap: balance; }
.policy-lede { max-width: 55ch; margin: 0; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 1.55; }
.policy-date { margin: 28px 0 0; color: var(--teal-dark); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.policy-highlight { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; padding: 1px; background: var(--line); }
.policy-highlight > div { min-height: 190px; padding: 24px; background: var(--snow); }
.policy-highlight span { display: block; margin-bottom: 38px; color: var(--maple); font-size: .76rem; font-weight: 850; letter-spacing: .08em; }
.policy-highlight strong { display: block; margin-bottom: 10px; color: var(--ink); font-size: 1.1rem; }
.policy-highlight p { max-width: 29ch; margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.policy-layout { display: grid; grid-template-columns: minmax(170px, .32fr) minmax(0, 1fr); gap: clamp(38px, 8vw, 126px); align-items: start; padding-top: clamp(64px, 8vw, 104px); }
.policy-index { position: sticky; top: 28px; display: grid; gap: 8px; align-content: start; }
.policy-index p { margin: 0 0 12px; color: var(--ink); font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.policy-index a { width: fit-content; color: var(--muted); font-size: .88rem; line-height: 1.35; transition: color 180ms ease, transform 180ms ease; }
.policy-index a:hover, .policy-index a:focus-visible { color: var(--maple); transform: translateX(4px); }
.policy-copy { max-width: 700px; }
.policy-copy section { scroll-margin-top: 28px; padding: 0 0 58px; }
.policy-copy section + section { border-top: 1px solid var(--line); padding-top: 48px; }
.policy-section-label { display: block; margin-bottom: 14px; color: var(--maple); font-size: .76rem; font-weight: 850; letter-spacing: .08em; }
.policy-copy h2 { margin: 0 0 18px; color: var(--ink); font-size: clamp(1.65rem, 3vw, 2.55rem); line-height: 1; letter-spacing: -.03em; text-wrap: balance; }
.policy-copy p { max-width: 68ch; margin: 0 0 16px; color: var(--muted); font-size: 1rem; line-height: 1.72; text-wrap: pretty; }
.policy-copy p:last-child { margin-bottom: 0; }
.policy-copy a { color: var(--teal-dark); font-weight: 850; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.policy-copy details { border-top: 1px solid var(--line); }
.policy-copy details:last-child { border-bottom: 1px solid var(--line); }
.policy-copy summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 62px; color: var(--ink); cursor: pointer; font-weight: 850; list-style: none; }
.policy-copy summary::-webkit-details-marker { display: none; }
.policy-copy summary::after { flex: 0 0 auto; color: var(--maple); content: "+"; font-size: 1.35rem; font-weight: 500; }
.policy-copy details[open] summary::after { content: "−"; }
.policy-copy details p { padding: 0 40px 18px 0; font-size: .94rem; }
@media (max-width: 720px) {
  .policy-header, .policy-page { width: min(100% - 28px, 620px); }
  .policy-header { min-height: 72px; }
  .policy-header .about-brand img { width: 94px; }
  .policy-page { padding-block: 52px 70px; }
  .policy-intro { padding-bottom: 50px; }
  .policy-intro h1 { font-size: clamp(3.5rem, 16vw, 5.7rem); }
  .policy-highlight { grid-template-columns: 1fr; }
  .policy-highlight > div { min-height: 0; padding: 22px; }
  .policy-highlight span { margin-bottom: 24px; }
  .policy-layout { grid-template-columns: 1fr; gap: 46px; padding-top: 64px; }
  .policy-index { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; }
  .policy-index p { grid-column: 1 / -1; margin-bottom: 4px; }
  .policy-copy section { padding-bottom: 46px; }
  .policy-copy section + section { padding-top: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  .policy-index a, .policy-copy summary { transition: none; }
}

/* Match every standalone page header to the storefront's viewport-aligned brand position. */
.track-header,
.faq-header,
.about-header,
.terms-header,
.blog-header,
.app-service-header,
.policy-header {
  width: 100%;
  margin-inline: 0;
  padding: 6px clamp(14px, 3vw, 34px);
  border-bottom: 0;
}

.about-brand img, .faq-brand img, .track-brand img { width: 112px; height: 112px; object-fit: contain; }

.track-page,
.faq-page,
.about-page,
.terms-page,
.blog-page,
.app-service-page,
.policy-page {
  padding-top: clamp(28px, 4vw, 48px);
}

@media (max-width: 720px) {
  .track-header,
  .faq-header,
  .about-header,
  .terms-header,
  .blog-header,
  .app-service-header,
  .policy-header {
    padding: 10px 14px;
  }

  .about-brand img, .faq-brand img, .track-brand img { width: 72px; height: 72px; }
}

/* Final footer polish: stronger grouping, less empty height, and a clearer mobile collapse. */
.site-footer {
  padding: clamp(48px, 6vw, 72px) clamp(18px, 5vw, 72px) 26px;
  background: #fff;
}

.footer-grid {
  grid-template-columns: minmax(220px, 1.1fr) repeat(2, minmax(140px, 0.72fr)) minmax(250px, 1.05fr);
  gap: clamp(28px, 4vw, 64px);
  max-width: 1440px;
}

.footer-column,
.footer-newsletter {
  gap: 10px;
}

.footer-column h2,
.footer-newsletter h2 {
  margin-bottom: 12px;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.footer-column a {
  font-size: 0.92rem;
  line-height: 1.35;
}

.footer-newsletter h2 {
  max-width: 12ch;
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.footer-signup {
  min-height: 58px;
  max-width: 340px;
  padding-left: 18px;
  border-color: rgba(24, 33, 31, 0.2);
  border-radius: 6px;
}

.footer-signup input::placeholder {
  color: #5f6f69;
  opacity: 1;
}

.footer-signup button {
  color: #fff;
  background: var(--teal-dark);
}

.footer-signup button:hover,
.footer-signup button:focus-visible {
  background: var(--maple);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1440px;
  margin: 42px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(24, 33, 31, 0.1);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.footer-lower {
  position: relative;
  min-height: 178px;
  max-width: 1440px;
  margin: 38px auto 0;
  border-top: 1px solid rgba(24, 33, 31, 0.1);
}

.footer-lower-top {
  display: contents;
}

.footer-social-links,
.footer-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-links a {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--ink);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-social-links a:hover,
.footer-social-links a:focus-visible {
  color: var(--teal-dark);
  transform: translateY(-2px);
}

.footer-social-links svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
  stroke: none;
}

.footer-social-links a:nth-child(3) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social-links a:nth-child(3) svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.footer-payments img {
  display: block;
  width: 38px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
  clip-path: inset(1px round 2px);
}

.footer-social-links {
  position: absolute;
  top: 12px;
  left: 0;
  gap: 20px;
}

.footer-payments {
  position: absolute;
  right: 0;
  bottom: 47px;
  justify-content: flex-end;
  gap: 7px;
}

.footer-bottom {
  position: absolute;
  right: auto;
  bottom: 5px;
  left: 0;
  width: 100%;
  margin-top: 0;
  padding: 0;
  border-top: 0;
}

@media (max-width: 900px) {
  .footer-grid {
    gap: 34px 28px;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding: 44px 20px 24px;
  }

  .footer-grid {
    gap: 30px 20px;
  }

  .footer-newsletter {
    grid-column: auto;
  }

  .footer-bottom {
    margin-top: 34px;
    line-height: 1.5;
  }

  .footer-lower-top {
    display: block;
  }

  .footer-payments {
    right: auto;
    bottom: 50px;
    left: 0;
    gap: 7px;
  }

  .footer-social-links {
    top: 12px;
    left: 0;
    gap: 8px;
  }

  .footer-bottom {
    position: absolute;
    bottom: 5px;
  }
}

/* Mobile storefront: one calm app bar, reachable actions, and lighter motion. */
@media (max-width: 900px) {
  .site-header {
    display: flex;
    min-height: 52px;
    align-items: center;
    gap: 12px;
    top: 0;
    left: 0;
    right: 0;
    padding: max(4px, env(safe-area-inset-top)) 12px 4px;
    border-radius: 0;
    color: var(--ink);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
      rgba(251, 250, 245, 0.14);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.26),
      0 8px 22px rgba(23, 33, 31, 0.07);
    -webkit-backdrop-filter: blur(20px) saturate(1.24);
    backdrop-filter: blur(20px) saturate(1.24);
  }

  .site-header.is-solid {
    min-height: 52px;
    color: var(--ink);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1)),
      rgba(251, 250, 245, 0.18);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      0 8px 22px rgba(23, 33, 31, 0.08);
    -webkit-backdrop-filter: blur(22px) saturate(1.28);
    backdrop-filter: blur(22px) saturate(1.28);
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
  }

  .header-controls {
    min-width: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: visible;
    padding: 0;
  }

  .nav-links,
  .header-actions .auth-prompt,
  .header-actions .auth-link {
    display: none;
  }

  .site-header .header-actions {
    display: flex;
    min-height: 40px;
    order: 2;
  }

  .site-header .icon-button {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
  }

  .site-header.is-solid .icon-button {
    background: rgba(255, 255, 255, 0.4);
  }

  .mobile-shop-action {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 1;
    border-radius: 999px;
    padding: 0 18px;
    color: #fff;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent),
      var(--maple);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      0 8px 18px rgba(201, 52, 58, 0.22);
    font-size: 1rem;
    font-weight: 850;
  }

  .hero {
    min-height: 92svh;
    height: 92svh;
    padding: 84px 20px max(34px, env(safe-area-inset-bottom));
  }

  .hero-media {
    background: #d8d0c5;
  }

  .hero-photo {
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .hero-photo.is-active,
  .hero-photo.is-leaving {
    animation: none;
  }

  .hero-content {
    width: min(100%, 520px);
  }

  .hero-dots {
    bottom: 26px;
    gap: 14px;
  }

  .hero-dot {
    width: 14px;
    height: 14px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.25rem, 15vw, 5.5rem);
    line-height: 0.92;
    letter-spacing: -0.025em;
  }

  .hero-actions {
    width: 100%;
    margin-top: 22px;
  }

  .hero-primary-action,
  .hero-secondary-action {
    min-height: 52px;
  }

  .product-tile {
    min-height: min(72vw, 420px);
    border-radius: 8px;
  }

  .collection-intro {
    padding-block: 44px 28px;
  }

  .section-heading {
    gap: 18px;
    align-items: start;
  }

  .section-heading p {
    margin-bottom: 0;
  }

  .product-band {
    gap: 8px;
    padding: 0 12px 12px;
    background: transparent;
  }

  .bundle-section {
    min-height: 480px;
    gap: 28px;
    padding: 56px 20px 60px;
  }

  .bundle-copy {
    display: grid;
    gap: 22px;
  }

  .bundle-copy h2 {
    max-width: 12ch;
  }

  .top-picks {
    overflow: hidden;
    padding-inline: 0;
  }

  .top-picks-heading {
    padding-inline: 20px;
  }

  .top-picks-rail {
    overflow-x: auto;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 42vw);
    gap: 16px;
    max-width: none;
    padding: 4px 20px 20px;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .top-picks-rail::-webkit-scrollbar {
    display: none;
  }

  .top-pick-card {
    scroll-snap-align: start;
  }

  .home-feature-banner {
    min-height: 0;
    aspect-ratio: 16 / 9;
    align-items: start;
  }

  .home-feature-banner::after {
    background:
      linear-gradient(180deg, rgba(14, 30, 27, 0.68) 0%, rgba(14, 30, 27, 0.28) 35%, transparent 64%),
      linear-gradient(0deg, rgba(14, 30, 27, 0.22), transparent 40%);
  }

  .home-feature-banner > picture img {
    object-position: 38% center;
  }

  .home-feature-copy {
    width: min(100%, 620px);
    justify-self: center;
    gap: 20px;
    padding: 66px 20px 32px;
  }

  .home-feature-copy h2 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 7vw, 3.8rem);
  }

  .home-faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-faq-heading h2 {
    max-width: 12ch;
  }

  .primary-action {
    min-height: 52px;
  }
}

@media (max-width: 560px) {
  .hero-dots {
    bottom: 22px;
    gap: 12px;
  }

  .hero-dot {
    width: 13px;
    height: 13px;
  }

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

  .brand img {
    width: 46px;
    height: 46px;
  }

  .mobile-shop-action {
    padding-inline: 16px;
  }

  .hero {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.25rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 10px;
  }

  .hero-primary-action,
  .hero-secondary-action {
    padding-inline: 12px;
    font-size: 0.9rem;
  }

  .section-heading h2,
  .bundle-copy h2 {
    font-size: 2.25rem;
    line-height: 1;
    letter-spacing: -0.025em;
  }

  .product-tile {
    min-height: 70vw;
    padding: 24px 20px;
  }

  .collection-intro {
    padding: 40px 16px 24px;
  }

  .product-band {
    gap: 10px;
    padding: 0 10px 10px;
  }

  .bundle-section {
    min-height: 440px;
    padding: 48px 18px 54px;
  }

  .top-picks {
    padding-block: 58px 76px;
  }

  .top-picks-heading {
    margin-bottom: 30px;
  }

  .top-picks-heading h2 {
    font-size: 2.55rem;
  }

  .top-picks-rail {
    grid-auto-columns: minmax(232px, 78vw);
    gap: 14px;
    padding-inline: 16px;
    scroll-padding-inline: 16px;
  }

  .home-feature-banner {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .home-feature-copy {
    padding-top: 58px;
  }

  .home-feature-copy h2 {
    font-size: 2.65rem;
  }

  .home-feature-copy a {
    min-height: 50px;
    padding-inline: 20px;
    font-size: 0.94rem;
  }

  .home-faq {
    padding: 48px 18px 56px;
  }

  .home-faq-inner {
    gap: 32px;
  }

  .home-faq-heading h2 {
    font-size: 2.5rem;
  }

  .home-faq-heading p {
    margin-top: 14px;
  }

  .home-faq-item summary {
    min-height: 64px;
    gap: 14px;
    padding-block: 12px;
  }

  .home-faq-item p {
    margin: 0 46px 18px 0;
  }

  .product-tile h2 {
    font-size: clamp(2.8rem, 15vw, 4rem);
    letter-spacing: -0.025em;
  }

  .pet-window,
  .bundle-product-dot {
    animation: none;
  }
}

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

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

/* Final navbar reset: transparent wins over earlier responsive header rules. */
.site-header,
.site-header.is-solid {
  color: #fff;
  background: transparent;
  border: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.site-header.is-solid .nav-links,
.site-header.is-solid .auth-link {
  color: #fff;
}

.site-header.is-solid .auth-link,
.site-header.is-solid .icon-button {
  background: transparent;
}

/* Mobile landing polish: keep the brand/navigation usable without covering the hero. */
@media (max-width: 760px) {
  .site-header,
  .site-header.is-solid {
    min-height: 74px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: max(8px, env(safe-area-inset-top)) 12px 8px;
    color: #fff;
  }

  .brand {
    grid-column: 1;
  }

  .brand img {
    width: 64px;
    height: 64px;
    object-fit: contain;
  }

  .header-controls {
    grid-column: 2;
    min-width: 0;
    display: grid;
    justify-items: end;
    gap: 4px;
    margin-left: 0;
  }

  .nav-links {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px 12px;
    color: currentColor;
    font-size: clamp(0.78rem, 2.9vw, 0.92rem);
    line-height: 1;
  }

  .nav-links a {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    white-space: nowrap;
  }

  .header-actions {
    min-height: 0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }

  .header-actions .auth-prompt {
    max-width: none;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    color: currentColor;
    font-size: 0;
    line-height: 1;
    text-align: right;
  }

  .header-actions .auth-prompt::after {
    content: "Sign in";
    font-size: clamp(0.78rem, 2.9vw, 0.92rem);
    font-weight: 850;
  }

  .header-actions .auth-link,
  .site-header.is-solid .auth-link {
    min-width: 0;
    min-height: 28px;
    height: auto;
    display: inline-flex;
    border: 0;
    border-radius: 0;
    padding: 0;
    color: currentColor;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    font-size: clamp(0.78rem, 2.9vw, 0.92rem);
  }

  .mobile-shop-action {
    display: none;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
    padding: 88px 16px max(18px, env(safe-area-inset-bottom));
  }

  .hero-photo {
    object-fit: cover;
    object-position: center;
  }

  .hero-photo[data-slide="0"] {
    object-position: 66% 50%;
  }

  .hero-photo[data-slide="1"] {
    object-position: 52% 50%;
  }

  .hero-photo[data-slide="2"] {
    object-position: 55% 50%;
  }

  .hero-photo[data-slide="3"] {
    object-position: 58% 50%;
  }

  .hero-photo[data-slide="4"] {
    object-position: 58% 50%;
  }

  .scene-shade {
    background:
      linear-gradient(0deg, rgba(14, 30, 27, 0.78) 0%, rgba(14, 30, 27, 0.25) 48%, rgba(14, 30, 27, 0.02) 100%),
      linear-gradient(90deg, rgba(14, 30, 27, 0.16), rgba(14, 30, 27, 0.02));
  }

  .hero-content {
    width: min(100%, 430px);
  }

  h1 {
    max-width: 8.5ch;
    font-size: clamp(3.25rem, 17vw, 5rem);
    line-height: 0.9;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-primary-action,
  .hero-secondary-action {
    min-height: 46px;
    padding: 0 12px;
    font-size: 0.9rem;
    text-align: center;
  }

  .collection-intro {
    padding: 34px 18px 22px;
  }

  .section-heading h2 {
    max-width: 11ch;
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    line-height: 0.98;
  }

  .product-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 8px 8px;
  }

  .product-tile {
    min-height: 78vw;
    max-height: 390px;
    padding: 22px;
  }

  .product-tile h2 {
    max-width: 8ch;
    font-size: clamp(2.8rem, 15vw, 4.4rem);
    line-height: 0.92;
  }

  .bundle-section {
    min-height: auto;
    padding: 48px 18px 54px;
  }
}

@media (max-width: 420px) {
  .site-header,
  .site-header.is-solid {
    min-height: 66px;
    padding-inline: 10px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .nav-links {
    gap: 2px 9px;
    font-size: 0.78rem;
  }

  .header-actions .auth-link,
  .site-header.is-solid .auth-link {
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 76px;
    padding-inline: 14px;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4rem);
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .product-tile {
    min-height: 86vw;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .site-header,
  .site-header.is-solid {
    min-height: 52px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 560px;
    height: 560px;
    padding-top: 66px;
  }

  h1 {
    font-size: clamp(2.8rem, 10vw, 4.6rem);
  }
}

/* Phone navbar refinement: split actions and product links into clean rows. */
@media (max-width: 760px) {
  .site-header,
  .site-header.is-solid {
    min-height: 104px;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    gap: 0 12px;
    padding: max(10px, env(safe-area-inset-top)) 14px 8px;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.28);
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .header-controls {
    display: contents;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    gap: 14px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: center;
    gap: 0 clamp(16px, 5vw, 28px);
    padding-top: 2px;
    font-size: clamp(0.88rem, 3.3vw, 1rem);
  }

  .nav-links a {
    min-height: 32px;
    font-weight: 850;
  }

  .header-actions .auth-prompt::after,
  .header-actions .auth-link,
  .site-header.is-solid .auth-link {
    font-size: clamp(0.86rem, 3.2vw, 0.98rem);
    font-weight: 850;
  }

  .hero {
    padding-top: 108px;
  }
}

@media (max-width: 420px) {
  .site-header,
  .site-header.is-solid {
    min-height: 96px;
    padding-inline: 12px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .header-actions {
    gap: 12px;
  }

  .nav-links {
    gap: 0 15px;
    font-size: 0.84rem;
  }

  .hero {
    padding-top: 100px;
  }
}

@media (max-width: 360px) {
  .nav-links {
    gap: 0 11px;
    font-size: 0.78rem;
  }

  .header-actions .auth-prompt::after,
  .header-actions .auth-link,
  .site-header.is-solid .auth-link {
    font-size: 0.8rem;
  }
}

/* Final mobile landing override: keep only brand + auth actions on phone. */
@media (max-width: 760px) {
  .site-header,
  .site-header.is-solid {
    min-height: 72px;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    padding: max(10px, env(safe-area-inset-top)) 14px 10px;
  }

  .header-controls {
    display: contents;
  }

  .nav-links,
  .mobile-shop-action {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .hero {
    padding-top: 82px;
  }
}

@media (max-width: 420px) {
  .site-header,
  .site-header.is-solid {
    min-height: 68px;
  }

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

.site-footer {
  padding: clamp(64px, 8vw, 112px) clamp(24px, 7vw, 138px) 76px;
  color: #18211f;
  background: #fff;
  border-top: 1px solid rgba(24, 33, 31, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 0.9fr)) minmax(280px, 1.25fr);
  gap: clamp(30px, 6vw, 104px);
  max-width: 1600px;
  margin: 0 auto;
}

.footer-column,
.footer-newsletter {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 12px;
}

.footer-column h2,
.footer-newsletter h2 {
  margin: 0 0 18px;
  color: #111;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.footer-column a {
  color: #5d5f5e;
  font-size: clamp(0.95rem, 1.15vw, 1.16rem);
  line-height: 1.25;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--teal-dark);
  transform: translateX(3px);
}

.footer-newsletter h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.13;
}

.footer-signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  width: 100%;
  max-width: 360px;
  min-height: 74px;
  align-items: center;
  gap: 10px;
  padding: 0 10px 0 24px;
  border: 1px solid rgba(24, 33, 31, 0.15);
  border-radius: 8px;
  background: #fff;
}

.footer-signup input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #18211f;
  background: transparent;
  font: inherit;
  font-size: 1rem;
}

.footer-signup input::placeholder {
  color: #717473;
}

.footer-signup button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #18211f;
  background: #e8e8e8;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.footer-signup button:hover,
.footer-signup button:focus-visible {
  background: #a8edf3;
  transform: translateX(2px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding: 54px 20px 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-newsletter {
    grid-column: auto;
  }
}

/* Keep the primary account action stable across every header and scroll state. */
.site-header .header-actions .auth-link.auth-link-secondary,
.site-header .header-actions .auth-link.auth-link-secondary:hover,
.site-header .header-actions .auth-link.auth-link-secondary:focus-visible,
.site-header.is-solid .header-actions .auth-link.auth-link-secondary,
.site-header.is-solid .header-actions .auth-link.auth-link-secondary:hover,
.site-header.is-solid .header-actions .auth-link.auth-link-secondary:focus-visible {
  min-width: 84px;
  min-height: 32px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent),
    var(--maple);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 18px rgba(201, 52, 58, 0.22);
}
