@property --pouch-interact-scale {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}

:root {
  /* Brand palette (guidelines pp. 5–6) */
  --gold: #c6a262;
  --forest: #2a3f34;
  --paper: #eee7e7;
  --sage: #63735c;
  --sand: #e6c68e;

  --gold-rgb: 198, 162, 98;
  --forest-rgb: 42, 63, 52;
  --paper-rgb: 238, 231, 231;
  --sage-rgb: 99, 115, 92;
  --sand-rgb: 230, 198, 142;
  --ink-rgb: 42, 63, 52;

  /* Semantic aliases used across the site */
  --cream: #f4ebe3;
  --ink: var(--forest);
  --green: var(--forest);
  --lime: var(--sand);
  --amber: var(--gold);
  --brown: #24352c;
  --muted: var(--sage);

  /* Gotham + TT Norms are licensed brand faces; Montserrat / Poppins are web stand-ins */
  --font-gotham: "Gotham", "Montserrat", system-ui, sans-serif;
  --font-body: "TT Norms", "TT Norms Pro", "Poppins", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: clip;
}

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

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* Hero */
.hero {
  --hero-pad-y: clamp(20px, 4svh, 48px);
  /* Stage layout height ≈ 810×scale; keep orbit bleed inside one viewport */
  --hero-stage-scale: min(1, (100svh - 2 * var(--hero-pad-y) - 28px) / 810px);
  height: 100svh;
  max-height: 100svh;
  min-height: 100svh;
  padding: var(--hero-pad-y) 6vw;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #1f2e27;
}

@supports (height: 100dvh) {
  .hero {
    --hero-stage-scale: min(1, (100dvh - 2 * var(--hero-pad-y) - 28px) / 810px);
    height: 100dvh;
    max-height: 100dvh;
    min-height: 100dvh;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(var(--paper-rgb), 0.92) 0%,
      rgba(var(--paper-rgb), 0.72) 36%,
      rgba(var(--sand-rgb), 0.28) 58%,
      rgba(var(--ink-rgb), 0.22) 100%
    ),
    radial-gradient(rgba(var(--forest-rgb), 0.06) 1px, transparent 1px);
  background-size: auto, 22px 22px;
}

.hero-copy,
.hero-product {
  position: relative;
  z-index: 3;
}

.eyebrow {
  font-family: var(--font-gotham);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--green);
  margin: 0 0 clamp(14px, 2.3vh, 24px);
}

.hero h1,
.section h2,
.shop-section h2 {
  font-family: var(--font-display);
  line-height: 0.96;
  margin: 0;
}

.hero h1 {
  font-size: clamp(42px, min(7vw, 11vh), 108px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero h1 em {
  color: var(--forest);
  font-weight: 600;
  font-style: italic;
}

.hero-text {
  font-size: clamp(15px, 1.8vh, 18px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 610px;
  margin: clamp(20px, 3.4vh, 36px) 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 999px;
  font-family: var(--font-gotham);
  font-weight: 800;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(var(--ink-rgb), 0.08);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: #c6a262;
}

.btn-ghost {
  border: 1px solid rgba(var(--ink-rgb), 0.2);
  background: rgba(255, 255, 255, 0.55);
}

.trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: clamp(12px, 2.2vh, 24px);
  font-family: var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

/* Hero product */
.hero-product {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  perspective: 1000px;
  width: 100%;
  overflow: visible;
}

.halo {
  position: absolute;
  z-index: 0;
  width: calc(560px * var(--hero-stage-scale));
  height: calc(560px * var(--hero-stage-scale));
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sand), #f7f1ea);
  filter: blur(2px);
  box-shadow:
    inset 0 0 80px rgba(255, 255, 255, 0.8),
    0 30px 100px rgba(var(--forest-rgb), 0.15);
  animation: float 5s ease-in-out infinite;
  transition:
    transform 0.6s ease,
    width 0.6s ease,
    height 0.6s ease,
    box-shadow 0.6s ease;
}

.product-stage {
  --pouch-interact-scale: 1;
  position: relative;
  z-index: 1;
  width: 600px;
  height: 780px;
  /* Stage scale is viewport-fit only — never scales the dog cards for hover */
  scale: var(--hero-stage-scale);
  margin-top: calc((var(--hero-stage-scale) - 1) * 390px - 10px * var(--hero-stage-scale));
  margin-bottom: calc((var(--hero-stage-scale) - 1) * 390px + 40px * var(--hero-stage-scale));
  display: grid;
  place-items: center;
  transform-origin: center center;
  transition: transform 0.25s;
  overflow: visible;
}

@media (min-width: 1001px) {
  .product-stage:hover,
  .product-stage:focus-within,
  .product-stage.journey-active,
  .product-stage.is-active {
    /* Shrink pouch only; orbit cards keep original 168×162 / scale(1) size */
    --pouch-interact-scale: clamp(0.78, (100svh - 120px) / 950px, 0.88);
  }

  @supports (height: 100dvh) {
    .product-stage:hover,
    .product-stage:focus-within,
    .product-stage.journey-active,
    .product-stage.is-active {
      --pouch-interact-scale: clamp(0.78, (100dvh - 120px) / 950px, 0.88);
    }
  }
}

/* Desktop orbit: 6 cards around product ellipse */
.w1,
.w2,
.w3,
.w4,
.w5,
.w6 {
  left: calc(50% - 84px);
  top: calc(50% - 81px);
  right: auto;
  transform: scale(0.45) translate(var(--px), var(--py));
  transform-origin: center center;
}

.w1 {
  --ox: 0px;
  --oy: -338px;
  --px: 0px;
  --py: 186px;
  --delay: 0.3s;
}

.w2 {
  --ox: 241px;
  --oy: -169px;
  --px: -133px;
  --py: 93px;
  --delay: 0.9s;
}

.w3 {
  --ox: -241px;
  --oy: -169px;
  --px: 133px;
  --py: 93px;
  --delay: 0.6s;
}

.w4 {
  --ox: 241px;
  --oy: 169px;
  --px: -133px;
  --py: -93px;
  --delay: 1.5s;
}

.w5 {
  --ox: -241px;
  --oy: 169px;
  --px: 133px;
  --py: -93px;
  --delay: 1.2s;
}

.w6 {
  --ox: 0px;
  --oy: 338px;
  --px: 0px;
  --py: -186px;
  --delay: 1.8s;
}

.product-showcase {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.product-pedestal {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 52%;
  width: 310px;
  height: 130px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(var(--forest-rgb), 0.2) 0%, rgba(var(--forest-rgb), 0.08) 42%, transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.product-main {
  position: relative;
  z-index: 5;
  max-height: min(540px, 58svh);
  max-width: 380px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 36px 44px rgba(0, 0, 0, 0.24))
    drop-shadow(0 12px 24px rgba(var(--forest-rgb), 0.14));
  transform: scale(var(--pouch-interact-scale));
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1);
  pointer-events: auto;
}

.video-orbit {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

.moments-cue {
  margin: 0;
  text-align: center;
  font-family: var(--font-gotham);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.moments-cue .swipe-arrow {
  opacity: 0.55;
  font-weight: 700;
  display: inline-block;
}

@keyframes swipeNudge {
  0%, 100% { transform: translateX(0); opacity: 0.55; }
  50% { transform: translateX(var(--nudge, 3px)); opacity: 1; }
}

.moments-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  padding: 0 20px 4px;
}

.moments-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(var(--forest-rgb), 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.moments-dots span.is-active {
  background: var(--green);
  transform: scale(1.25);
}

.mobile-trust {
  display: none;
}

.hover-note {
  position: absolute;
  z-index: 8;
  bottom: 6px;
  background: rgba(var(--ink-rgb), 0.86);
  color: white;
  border-radius: 999px;
  padding: 10px 14px;
  font-family: var(--font-gotham);
  font-size: 11px;
  letter-spacing: 0.06em;
  transition: 0.3s;
  pointer-events: none;
}

/* Dog moment cards */
.dog-widget {
  position: absolute;
  z-index: 2;
  width: 168px;
  min-height: 162px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  padding: 8px;
  box-shadow:
    0 18px 40px rgba(var(--ink-rgb), 0.12),
    0 0 0 1px rgba(var(--forest-rgb), 0.06);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.5s cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 0.5s cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.dog-widget span {
  display: block;
  padding: 7px 5px 2px;
  font-family: var(--font-gotham);
  font-size: 11px;
  font-weight: 800;
}

.dog-widget small {
  display: block;
  padding: 0 5px 5px;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--muted);
  min-height: 2.8em;
  flex: 1;
}

.dog-clip {
  display: block;
  width: 100%;
  height: 95px;
  border-radius: 12px;
  object-fit: cover;
  background: #f0e4d4;
}

.product-stage:not(:hover):not(:focus-within):not(.journey-active):not(.is-active) .dog-widget {
  transition-delay: 0s !important;
}

@media (hover: hover) and (pointer: fine) {
  .hero-product:has(.product-stage:hover) .halo,
  .hero-product:has(.product-stage:focus-within) .halo {
    animation-play-state: paused;
    transform: scale(1.08);
    width: calc(600px * var(--hero-stage-scale));
    height: calc(600px * var(--hero-stage-scale));
    box-shadow:
      inset 0 0 100px rgba(255, 255, 255, 0.92),
      0 34px 100px rgba(var(--forest-rgb), 0.18);
  }

  .product-stage:hover .video-orbit,
  .product-stage:focus-within .video-orbit,
  .product-stage.is-active .video-orbit {
    z-index: 6;
  }

  .product-stage:hover .product-main,
  .product-stage:focus-within .product-main,
  .product-stage.is-active .product-main {
    transform: translateY(-6px) rotate(-1deg) scale(var(--pouch-interact-scale));
  }

  .product-stage:hover .hover-note,
  .product-stage:focus-within .hover-note,
  .product-stage.is-active .hover-note {
    opacity: 0;
  }

  .product-stage:hover .dog-widget,
  .product-stage:focus-within .dog-widget,
  .product-stage.is-active .dog-widget {
    z-index: 6;
    pointer-events: auto;
  }

  .product-stage:hover .w1,
  .product-stage:focus-within .w1,
  .product-stage.is-active .w1,
  .product-stage:hover .w2,
  .product-stage:focus-within .w2,
  .product-stage.is-active .w2,
  .product-stage:hover .w3,
  .product-stage:focus-within .w3,
  .product-stage.is-active .w3,
  .product-stage:hover .w4,
  .product-stage:focus-within .w4,
  .product-stage.is-active .w4,
  .product-stage:hover .w5,
  .product-stage:focus-within .w5,
  .product-stage.is-active .w5,
  .product-stage:hover .w6,
  .product-stage:focus-within .w6,
  .product-stage.is-active .w6 {
    opacity: 1;
    /* Original card size — scale(1) at 168×162, unchanged by pouch interact */
    transform: scale(1) translate(var(--ox), var(--oy));
    transition-delay: var(--delay);
    box-shadow:
      0 22px 48px rgba(var(--ink-rgb), 0.14),
      0 0 0 1px rgba(var(--forest-rgb), 0.08);
  }
}

.hero-product:has(.product-stage.journey-active) .halo {
  animation-play-state: paused;
  transform: scale(1.08);
  width: calc(600px * var(--hero-stage-scale));
  height: calc(600px * var(--hero-stage-scale));
  box-shadow:
    inset 0 0 100px rgba(255, 255, 255, 0.92),
    0 34px 100px rgba(var(--forest-rgb), 0.18);
}

.product-stage.journey-active .product-main,
.product-stage.is-active .product-main {
  transform: translateY(-8px) rotate(-1deg) scale(var(--pouch-interact-scale));
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  font-family: var(--font-gotham);
  font-size: 10px;
  letter-spacing: 0.2em;
  display: flex;
  gap: 10px;
  align-items: center;
  transform: translateX(-50%);
}

.scroll-cue span {
  animation: bounce 1.4s infinite;
}

/* Sections */
.section {
  padding: 110px 7vw;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}

#about.section {
  min-height: 100svh;
  padding-block: clamp(80px, 10vh, 120px);
  box-sizing: border-box;
}

@supports (min-height: 100dvh) {
  #about.section {
    min-height: 100dvh;
  }
}

#about.split-section {
  grid-template-columns: 44fr 56fr;
  gap: clamp(36px, 4.5vw, 72px);
  align-items: center;
  min-height: 100svh;
  min-height: 100dvh;
}

.about-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-showcase {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vh, 40px) clamp(20px, 2.5vw, 32px);
}

.about-showcase-frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #f6efea 0%, #efe6dc 52%, #e8dfd4 100%);
  border-radius: 32px;
  border: 1px solid rgba(var(--forest-rgb), 0.08);
  box-shadow: 0 32px 72px rgba(var(--ink-rgb), 0.09);
}

.about-showcase-glow {
  position: absolute;
  inset: 10% 8%;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(var(--gold-rgb), 0.14), transparent 68%),
    radial-gradient(ellipse 50% 40% at 50% 90%, rgba(217, 149, 45, 0.05), transparent 70%);
  pointer-events: none;
  border-radius: 28px;
}

.about-showcase-shadow {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 58%;
  height: 32px;
  background: radial-gradient(ellipse, rgba(var(--ink-rgb), 0.12) 0%, transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.about-hero-product {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(52svh, 500px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 48px rgba(var(--ink-rgb), 0.12));
}

.section h2 {
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 600;
}

#about .section-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#about .section-copy h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.04;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

#about .section-copy h2 em {
  font-style: italic;
  color: var(--gold);
}

#about .section-copy p.about-lead,
#about .section-copy p.about-detail {
  font-size: 16px;
  line-height: 1.72;
  margin: 0 0 14px;
  max-width: 52ch;
  color: var(--muted);
}

#about .section-copy .eyebrow {
  margin-bottom: 14px;
}

.section-copy p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}

#about .ingredient-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#about .ingredient-list li {
  background: linear-gradient(160deg, #f7f2ef 0%, var(--cream) 100%);
  border: 1px solid rgba(var(--forest-rgb), 0.1);
  padding: 14px 16px;
  border-radius: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

#about .ingredient-list li:hover {
  border-color: rgba(var(--forest-rgb), 0.18);
  box-shadow: 0 10px 28px rgba(var(--ink-rgb), 0.05);
}

#about .ingredient-list strong {
  display: block;
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

#about .ingredient-list span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 500;
}

#about .about-trust {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(var(--forest-rgb), 0.1);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.01em;
  line-height: 1.55;
  max-width: 52ch;
}

#about .about-cta {
  align-self: flex-start;
  margin-top: 20px;
}

.dark-section {
  background: var(--ink);
  color: #fff;
}

.dark-section .eyebrow {
  color: var(--lime);
}

#benefits {
  min-height: 100svh;
  min-height: 100dvh;
  padding-block: clamp(28px, 6dvh, 72px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#benefits .section-head {
  margin-bottom: clamp(22px, 4.5dvh, 48px);
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

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

#benefits .benefits-cta {
  align-self: center;
  margin-top: clamp(22px, 4dvh, 44px);
  background: #fff;
  color: var(--forest);
}

#benefits .benefits-cta:hover {
  background: #c6a262;
  color: #fff;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(20px, 3.5dvh, 34px);
  border-radius: 26px;
  transition: 0.3s;
}

.benefit-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
}

.benefit-card .icon {
  font-size: 34px;
}

.benefit-card h3 {
  font-size: 20px;
}

.benefit-card p {
  color: #b7c0b4;
  line-height: 1.7;
  font-size: 14px;
}

.ecs-section {
  background: var(--cream);
  min-height: 100svh;
  min-height: 100dvh;
  padding-block: clamp(48px, 6dvh, 64px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.ecs-canvas {
  display: grid;
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.ecs-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 2.8vh, 28px);
  min-width: 0;
}

.ecs-intro {
  max-width: 520px;
}

.ecs-intro h2 {
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.ecs-intro h2 em {
  font-style: italic;
  color: var(--gold);
}

.ecs-lead {
  margin: clamp(12px, 1.8vh, 18px) 0 0;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 48ch;
}

.ecs-beats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ecs-beat {
  padding: clamp(12px, 1.8vh, 18px) 0;
  border-bottom: 1px solid rgba(var(--forest-rgb), 0.1);
}

.ecs-beat:last-child {
  border-bottom: none;
}

.ecs-beat-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.ecs-beat-num {
  font-family: var(--font-gotham);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(var(--forest-rgb), 0.42);
  flex-shrink: 0;
}

.ecs-beat h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
}

.ecs-beat p {
  margin: 0;
  padding-left: 34px;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
}

.ecs-beat-featured {
  margin-top: 4px;
  padding: clamp(16px, 2.2vh, 22px) clamp(18px, 2vw, 24px);
  background: var(--ink);
  border-radius: 20px;
  border-bottom: none;
}

.ecs-beat-featured .ecs-beat-num {
  color: var(--lime);
}

.ecs-beat-featured h3 {
  color: #fff;
}

.ecs-beat-featured p {
  color: #b7c0b4;
  padding-left: 34px;
}

.ecs-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  width: fit-content;
  padding: 15px 24px;
  border-radius: 999px;
  font-family: var(--font-gotham);
  font-weight: 800;
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 32px rgba(var(--forest-rgb), 0.2);
  font-size: 15px;
  transition: gap 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.ecs-cta:hover {
  gap: 10px;
  color: #fff;
  background: #c6a262;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(var(--forest-rgb), 0.26);
}

.ecs-showcase {
  position: relative;
  width: 100%;
  height: min(62svh, 560px);
  min-height: 280px;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
}

.ecs-showcase-frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #f6efea 0%, #efe6dc 52%, #e8dfd4 100%);
  border-radius: inherit;
}

.ecs-showcase-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 44%, rgba(var(--gold-rgb), 0.18), transparent 72%),
    radial-gradient(ellipse 55% 42% at 50% 92%, rgba(var(--forest-rgb), 0.06), transparent 74%);
  pointer-events: none;
}

.ecs-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.ecs-video-crop {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.ecs-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border: none;
  border-radius: 0;
  display: block;
}

.ecs-showcase-rim {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(var(--forest-rgb), 0.16),
    inset 0 0 0 2px rgba(255, 253, 248, 0.45),
    0 28px 64px rgba(var(--ink-rgb), 0.1);
}

.ecs-beats .ecs-beat.reveal:nth-child(1) { transition-delay: 0.08s; }
.ecs-beats .ecs-beat.reveal:nth-child(2) { transition-delay: 0.16s; }
.ecs-beats .ecs-beat.reveal:nth-child(3) { transition-delay: 0.24s; }

@media (max-height: 800px) and (min-width: 1001px) {
  .ecs-section {
    padding-block: clamp(40px, 6dvh, 56px);
  }

  .ecs-copy {
    gap: clamp(12px, 2vh, 20px);
  }

  .ecs-intro h2 {
    font-size: clamp(34px, 3.6vw, 52px);
  }

  .ecs-lead {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.55;
  }

  .ecs-beat {
    padding: 10px 0;
  }

  .ecs-beat-featured {
    padding: 14px 18px;
  }

  .ecs-showcase {
    height: min(56svh, 460px);
    min-height: 240px;
  }
}

.text-link {
  font-family: var(--font-gotham);
  font-weight: 800;
  color: var(--green);
}

.guide-section {
  background: var(--paper);
  min-height: 100svh;
  min-height: 100dvh;
  padding-block: clamp(32px, 6dvh, 72px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guide-section .section-head {
  margin-bottom: clamp(24px, 4.5dvh, 48px);
}

.serving-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: auto;
}

.serving-card {
  border: 1px solid rgba(var(--ink-rgb), 0.12);
  padding: clamp(22px, 3.5dvh, 36px);
  text-align: center;
  border-radius: 28px;
  position: relative;
  transition: 0.3s;
}

.serving-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(var(--ink-rgb), 0.1);
}

.serving-card.featured {
  background: var(--green);
  color: #fff;
  transform: scale(1.04);
}

.popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--ink);
  padding: 7px 12px;
  border-radius: 999px;
  font-family: var(--font-gotham);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.dog-size {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 72px;
  margin-bottom: 6px;
}

.dog-size img {
  width: auto;
  object-fit: contain;
}

.dog-size--small img {
  height: 44px;
}

.dog-size--medium img {
  height: 56px;
}

.dog-size--large img {
  height: 68px;
}

.featured .dog-size img {
  filter: brightness(0) invert(1);
}

.serving-card p {
  color: var(--muted);
}

.featured p {
  color: #cfd6cb;
}

.serving-card strong {
  display: block;
  font-size: 20px;
  margin-top: 8px;
}

.serving-card small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.featured small {
  color: #cfd6cb;
}

.serving-cbd-note {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}

.fine-print {
  max-width: 900px;
  margin: clamp(22px, 4dvh, 35px) auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.guide-section .guide-cta {
  align-self: center;
  margin-top: clamp(22px, 4dvh, 38px);
}

@media (max-height: 800px) and (min-width: 1001px) {
  .guide-section {
    padding-block: 24px;
  }

  .guide-section .section-head {
    margin-bottom: 20px;
  }

  .guide-section .guide-cta,
  .guide-section .fine-print {
    margin-top: 18px;
  }
}

.gallery-section {
  position: relative;
  background: var(--cream);
  min-height: 100svh;
  min-height: 100dvh;
  padding-block: clamp(48px, 7dvh, 80px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(var(--gold-rgb), 0.16), transparent 58%),
    radial-gradient(ellipse 55% 45% at 88% 78%, rgba(217, 149, 45, 0.1), transparent 62%),
    radial-gradient(rgba(var(--forest-rgb), 0.05) 1px, transparent 1px);
  background-size: auto, auto, 24px 24px;
  mask-image: linear-gradient(to bottom, black 72%, transparent);
}

.gallery-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.8vh, 18px);
  max-height: calc(100dvh - clamp(96px, 14dvh, 160px));
}

.gallery-section .section-head {
  margin-bottom: 0;
  max-width: 720px;
  flex-shrink: 0;
}

.gallery-section h2 {
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.gallery-section h2 em {
  font-style: italic;
  color: var(--gold);
}

.gallery-section .eyebrow {
  margin-bottom: 10px;
}

.gallery-lead {
  margin: clamp(6px, 1vh, 10px) auto 0;
  max-width: 52ch;
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.55;
  color: var(--muted);
}

.gallery-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: clamp(10px, 1.2vw, 16px);
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #e9e2d8;
  border: 1px solid rgba(var(--forest-rgb), 0.08);
  box-shadow:
    0 18px 44px rgba(var(--ink-rgb), 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 60px rgba(var(--ink-rgb), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.gallery-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.gallery-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.gallery-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.gallery-card:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2;
}

.gallery-card:nth-child(5) {
  grid-column: 1;
  grid-row: 2;
}

.gallery-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gallery-media--treats {
  background:
    radial-gradient(ellipse 75% 60% at 50% 40%, rgba(61, 84, 48, 0.55), transparent 68%),
    radial-gradient(circle at 78% 18%, rgba(217, 149, 45, 0.14), transparent 36%),
    linear-gradient(165deg, #24352c 0%, #1a2620 48%, #121a16 100%);
}

.gallery-treats-glow {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 72%;
  height: 58%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 210, 150, 0.22) 0%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.gallery-clip,
.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.gallery-card--treats {
  background: #1a2620;
  border-color: rgba(var(--gold-rgb), 0.14);
}

.gallery-media--treats img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center 36%;
  padding: 4% 2% 18%;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.55));
}

.gallery-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--ink-rgb), 0.04) 0%, transparent 34%),
    linear-gradient(0deg, rgba(var(--ink-rgb), 0.72) 0%, rgba(var(--ink-rgb), 0.22) 42%, transparent 68%);
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.gallery-media--treats .gallery-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14, 20, 16, 0.15) 0%, transparent 36%),
    linear-gradient(0deg, rgba(8, 12, 9, 0.78) 0%, rgba(8, 12, 9, 0.2) 42%, transparent 68%);
}

.gallery-card--treats:hover {
  box-shadow:
    0 28px 60px rgba(14, 20, 16, 0.35),
    0 0 0 1px rgba(var(--gold-rgb), 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.gallery-card--treats .gallery-tag {
  background: rgba(255, 253, 248, 0.95);
  color: var(--green);
}

.gallery-card--treats .gallery-note {
  color: rgba(247, 242, 232, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.gallery-card:hover .gallery-clip,
.gallery-card:hover .gallery-media img {
  transform: scale(1.06);
}

.gallery-card:hover .gallery-shade {
  opacity: 0.92;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px 12px;
  margin: 0;
}

.gallery-tag {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--font-gotham);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(var(--ink-rgb), 0.08);
}

.gallery-note {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 8px rgba(var(--ink-rgb), 0.35);
  padding-left: 4px;
}

.gallery-card--featured {
  background: linear-gradient(135deg, #f6efea 0%, #efe4d6 52%, #e6d9c4 100%);
  border-color: rgba(var(--forest-rgb), 0.12);
}

.gallery-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  height: 100%;
  align-items: center;
  gap: clamp(8px, 1.2vw, 14px);
  padding: clamp(12px, 1.5vw, 18px);
}

.gallery-featured-visual {
  position: relative;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
}

.gallery-featured-glow {
  position: absolute;
  inset: 8% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.28), transparent 68%);
  filter: blur(18px);
}

.gallery-featured-pouch {
  position: relative;
  z-index: 1;
  max-height: 88%;
  max-width: 72%;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(var(--ink-rgb), 0.14));
  transition: transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.gallery-featured-treats {
  position: absolute;
  right: 4%;
  bottom: 8%;
  z-index: 2;
  width: 34%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(var(--ink-rgb), 0.18));
  transition: transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.gallery-card--featured:hover .gallery-featured-pouch {
  transform: translateY(-4px) rotate(-1deg);
}

.gallery-card--featured:hover .gallery-featured-treats {
  transform: translateY(-8px) translateX(4px);
}

.gallery-featured-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: clamp(4px, 1vw, 8px);
}

.gallery-featured-copy .gallery-tag {
  background: var(--ink);
  color: #fff;
}

.gallery-featured-copy p {
  margin: 0;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 34ch;
}

.gallery-featured-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 4px;
  min-height: 44px;
  padding: 10px 2px;
  font-family: var(--font-gotham);
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  transition: gap 0.25s ease, color 0.25s ease;
}

.gallery-featured-link:hover {
  color: var(--ink);
}

.gallery-foot {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  margin-top: 0;
  padding-top: clamp(10px, 1.2vh, 14px);
  border-top: 1px solid rgba(var(--forest-rgb), 0.1);
  flex-shrink: 0;
}

.gallery-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.gallery-stat strong {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.gallery-foot-link {
  font-family: var(--font-gotham);
  font-weight: 800;
  font-size: 16px;
  color: var(--green);
  grid-column: 1 / -1;
  justify-self: center;
  width: fit-content;
  margin-inline: auto;
  padding: 15px 28px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(var(--forest-rgb), 0.16);
  background: rgba(255, 255, 255, 0.55);
  transition: 0.3s ease;
}

.gallery-foot-link:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-2px);
}

.gallery-grid .gallery-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.gallery-grid .gallery-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.gallery-grid .gallery-card.reveal:nth-child(3) { transition-delay: 0.19s; }
.gallery-grid .gallery-card.reveal:nth-child(4) { transition-delay: 0.26s; }
.gallery-grid .gallery-card.reveal:nth-child(5) { transition-delay: 0.33s; }

@media (prefers-reduced-motion: reduce) {
  .gallery-card,
  .gallery-clip,
  .gallery-media img,
  .gallery-featured-pouch,
  .gallery-featured-treats {
    transition: none;
  }

  .gallery-card:hover {
    transform: none;
  }

  .product-stage {
    transition: transform 0.25s;
  }

  .product-main {
    transition: none;
  }

  .moments-cue .swipe-arrow {
    animation: none;
  }

  .shop-orb,
  .shop-visual-glow,
  .shop-visual-ring,
  .shop-product,
  .shop-treat-accent,
  .shop-paws span {
    animation: none;
  }

  .btn-shop::before {
    display: none;
  }
}

@media (min-width: 1001px) and (max-height: 820px) {
  .hero {
    --hero-pad-y: clamp(14px, 2.8svh, 28px);
    padding-inline: 5vw;
  }

  .hero h1 {
    font-size: clamp(40px, min(6.2vw, 9.5vh), 84px);
  }

  .hero-text {
    font-size: 15px;
    margin: clamp(10px, 1.8vh, 18px) 0;
    line-height: 1.55;
  }

  .eyebrow {
    margin-bottom: 10px;
  }

  .trust-row {
    margin-top: 12px;
  }

  .scroll-cue {
    bottom: 12px;
  }

  #about.section {
    padding-block: clamp(64px, 8vh, 88px);
  }

  #about .section-copy h2 {
    font-size: clamp(32px, 3.8vw, 48px);
  }

  .about-hero-product {
    max-height: min(46svh, 420px);
  }

  .shop-section {
    min-height: min(88svh, 680px);
    padding: clamp(48px, 6vh, 80px) clamp(24px, 6vw, 80px);
  }

  .shop-visual {
    min-height: clamp(300px, 40vh, 440px);
  }
}

@media (max-height: 800px) and (min-width: 1001px) {
  .gallery-section {
    padding-block: clamp(32px, 5dvh, 48px);
  }

  .gallery-inner {
    gap: clamp(8px, 1.2vh, 12px);
    max-height: calc(100dvh - clamp(64px, 10dvh, 96px));
  }

  .gallery-section h2 {
    font-size: clamp(32px, 3.6vw, 48px);
  }

  .gallery-lead {
    display: none;
  }

  .gallery-foot-link {
    padding: 13px 24px;
    font-size: 15px;
  }
}

.shop-section {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  padding:
    clamp(96px, 12dvh, 140px)
    clamp(24px, 7vw, 96px)
    clamp(72px, 9dvh, 110px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 80% 60% at 18% 50%, rgba(var(--gold-rgb), 0.14), transparent 58%),
    radial-gradient(ellipse 55% 50% at 88% 28%, rgba(217, 149, 45, 0.1), transparent 62%),
    linear-gradient(155deg, #24352c 0%, var(--green) 38%, #2f463b 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.shop-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shop-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: shopPulse 8s ease-in-out infinite;
}

.shop-orb--lime {
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  top: -12%;
  left: -8%;
  background: rgba(var(--gold-rgb), 0.22);
}

.shop-orb--amber {
  width: min(320px, 38vw);
  height: min(320px, 38vw);
  right: 6%;
  bottom: -10%;
  background: rgba(217, 149, 45, 0.14);
  animation-delay: -3.5s;
}

.shop-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.shop-paws {
  position: absolute;
  inset: 0;
  opacity: 0.06;
}

.shop-paws span {
  position: absolute;
  font-size: clamp(48px, 7vw, 88px);
  animation: shopPawDrift 18s ease-in-out infinite;
}

.shop-paws span:nth-child(1) { top: 12%; left: 8%; animation-delay: 0s; }
.shop-paws span:nth-child(2) { top: 68%; left: 22%; animation-delay: -6s; font-size: clamp(36px, 5vw, 64px); }
.shop-paws span:nth-child(3) { top: 24%; right: 14%; animation-delay: -11s; }
.shop-paws span:nth-child(4) { bottom: 10%; right: 28%; animation-delay: -4s; font-size: clamp(40px, 5.5vw, 72px); }

.shop-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.shop-section h2 {
  font-size: clamp(48px, 5.8vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.shop-section h2 em {
  font-style: italic;
  color: var(--sand);
  font-weight: 600;
}

.shop-section .eyebrow {
  color: var(--lime);
  margin-bottom: clamp(14px, 2vh, 20px);
}

.shop-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  color: #c5cec3;
  max-width: 42ch;
  margin: clamp(18px, 2.5vh, 28px) 0 0;
}

.shop-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(22px, 3vh, 32px);
}

.shop-chips span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-family: var(--font-gotham);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ebe6e0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: clamp(28px, 3.5vh, 40px);
}

.btn-light {
  background: #fff;
  color: var(--green);
}

.btn-shop {
  position: relative;
  overflow: hidden;
  padding: 18px 30px;
  font-size: 15px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.btn-shop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.55) 50%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.btn-shop:hover::before {
  transform: translateX(120%);
}

.btn-shop:hover {
  background: #c6a262;
  color: #fff;
  transform: translateY(-4px);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.shop-secondary {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s ease, gap 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 44px;
  padding: 10px 4px;
}

.shop-secondary:hover {
  color: var(--lime);
}

.shop-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(380px, 48vh, 520px);
  perspective: 900px;
  transition: transform 0.4s ease-out;
}

.shop-product-stage {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  transition: transform 0.35s ease;
  transform-style: preserve-3d;
}

.shop-visual-glow {
  position: absolute;
  width: min(420px, 72vw);
  height: min(420px, 72vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.28) 0%, transparent 68%);
  filter: blur(24px);
  animation: shopPulse 6s ease-in-out infinite;
}

.shop-visual-ring {
  position: absolute;
  width: min(380px, 66vw);
  height: min(380px, 66vw);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 0 60px rgba(var(--gold-rgb), 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: shopRingSpin 28s linear infinite;
}

.shop-product {
  position: relative;
  z-index: 2;
  max-height: min(60dvh, 600px);
  width: auto;
  max-width: min(400px, 82vw);
  filter:
    drop-shadow(0 40px 48px rgba(0, 0, 0, 0.35))
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
  animation: shopFloat 5s ease-in-out infinite;
}

.shop-treat-accent {
  position: absolute;
  right: -6%;
  bottom: 14%;
  z-index: 3;
  width: clamp(72px, 14vw, 108px);
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
  animation: shopTreatBob 4.5s ease-in-out infinite;
  animation-delay: -1.2s;
}

.shop-badge {
  position: absolute;
  z-index: 4;
  bottom: clamp(8px, 2vh, 24px);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: #f3eeea;
  background: rgba(16, 25, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.shop-badge-icon {
  color: var(--lime);
  font-size: 12px;
}

.shop-copy.reveal { transition-delay: 0.05s; }
.shop-visual.reveal { transition-delay: 0.18s; }

@keyframes shopPulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes shopRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shopFloat {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-14px) rotate(0.5deg); }
}

@keyframes shopTreatBob {
  0%, 100% { transform: translateY(0) rotate(6deg); }
  50% { transform: translateY(-10px) rotate(-4deg); }
}

@keyframes shopPawDrift {
  0%, 100% { transform: translateY(0) rotate(-8deg); opacity: 0.5; }
  50% { transform: translateY(-12px) rotate(8deg); opacity: 0.9; }
}

footer {
  padding: 60px 7vw;
  background: #141c17;
  color: white;
  display: grid;
  gap: 18px;
  text-align: center;
  justify-items: center;
}

footer .brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 12px;
  font-family: var(--font-gotham);
  font-weight: 800;
  letter-spacing: 0.08em;
}

footer p {
  margin: 0;
  color: #9aa494;
}

.btn:focus-visible,
.ecs-cta:focus-visible,
.gallery-featured-link:focus-visible,
.gallery-foot-link:focus-visible,
.shop-secondary:focus-visible,
footer .brand:focus-visible,
.product-stage:focus-visible,
.video-orbit:focus-visible,
.site-nav a:focus-visible,
.product-thumb:focus-visible,
.product-tab:focus-visible,
.quantity-btn:focus-visible,
.purchase-option:focus-within,
.coa-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.legal {
  max-width: 780px;
  font-size: 10px;
  line-height: 1.6;
}

/* Utilities */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.12);
  filter: blur(35px);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
}

/* Animations */
@keyframes float {
  50% {
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  50% {
    transform: translateY(7px);
  }
}

/* Tablet */
@media (max-width: 1000px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  .split-section {
    gap: clamp(32px, 5vh, 48px);
  }

  #about.section,
  #about.split-section,
  #benefits,
  .ecs-section,
  .guide-section,
  .gallery-section,
  .shop-section {
    min-height: 0;
  }

  #benefits,
  .guide-section {
    justify-content: flex-start;
  }

  .ecs-section {
    align-items: stretch;
  }

  .section-head {
    margin-bottom: 44px;
  }

  .section-head h2 {
    font-size: clamp(34px, 8vw, 48px);
    line-height: 1.02;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .ecs-canvas {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vh, 40px);
    max-width: 560px;
    margin: 0 auto;
  }

  .ecs-showcase {
    order: -1;
    height: clamp(280px, 40vh, 380px);
    min-height: 280px;
  }

  .hero {
    --hero-pad-y: max(12px, env(safe-area-inset-top, 0px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: clamp(4px, 1svh, 12px);
    height: 100svh;
    max-height: 100svh;
    min-height: 100svh;
    padding:
      var(--hero-pad-y)
      max(20px, env(safe-area-inset-right, 0px))
      max(10px, env(safe-area-inset-bottom, 0px))
      max(20px, env(safe-area-inset-left, 0px));
    overflow: hidden;
  }

  @supports (height: 100dvh) {
    .hero {
      height: 100dvh;
      max-height: 100dvh;
      min-height: 100dvh;
    }
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(var(--paper-rgb), 0.94) 0%,
        rgba(var(--paper-rgb), 0.86) 24%,
        rgba(var(--paper-rgb), 0.62) 48%,
        rgba(var(--paper-rgb), 0.28) 68%,
        rgba(var(--ink-rgb), 0.34) 100%
      ),
      radial-gradient(rgba(var(--forest-rgb), 0.06) 1px, transparent 1px);
    background-size: auto, 22px 22px;
  }

  .hero-copy {
    order: 1;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 0;
    padding: 0;
  }

  .hero .eyebrow {
    margin-bottom: clamp(4px, 1svh, 12px);
  }

  .hero h1 {
    font-size: clamp(32px, min(11vw, 7.2svh), 52px);
    line-height: 0.98;
    letter-spacing: -0.03em;
  }

  .hero-text {
    font-size: clamp(13px, 2.1svh, 16px);
    line-height: 1.45;
    max-width: 34ch;
    margin: clamp(6px, 1.4svh, 16px) auto;
    color: var(--ink);
    opacity: 0.82;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    gap: clamp(6px, 1svh, 10px);
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 44px;
    padding: clamp(11px, 1.8svh, 15px) 20px;
  }

  .desktop-trust {
    display: none;
  }

  .mobile-trust {
    order: 3;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: clamp(2px, 0.6svh, 8px) auto 0;
    padding: 0 4px;
    max-width: 100%;
    font-size: 10px;
    flex: 0 0 auto;
  }

  .mobile-trust span {
    background: rgba(var(--paper-rgb), 0.88);
    border: 1px solid rgba(var(--forest-rgb), 0.14);
    border-radius: 999px;
    padding: 6px 10px;
    white-space: nowrap;
    color: var(--ink);
  }

  .hero-product {
    order: 2;
    flex: 1 1 auto;
    min-height: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
  }

  .halo {
    width: min(300px, 78vw, 38svh);
    height: min(300px, 78vw, 38svh);
    top: 36%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: none;
  }

  .hero-product:has(.product-stage.journey-active) .halo {
    width: min(330px, 84vw, 42svh);
    height: min(330px, 84vw, 42svh);
    transform: translate(-50%, -50%) scale(1.04);
  }

  .product-stage {
    --pouch-interact-scale: 1;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    scale: 1;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    padding: 0;
    min-height: 0;
  }

  .product-pedestal {
    display: block;
    top: 42%;
    width: min(240px, 64vw, 30svh);
    height: min(88px, 10svh);
    background: radial-gradient(ellipse, rgba(var(--forest-rgb), 0.18) 0%, rgba(var(--forest-rgb), 0.06) 45%, transparent 72%);
  }

  .product-showcase {
    order: 1;
    position: relative;
    z-index: 1;
    display: block;
    min-height: 0;
    width: 100%;
    pointer-events: auto;
    padding: 0;
    flex: 1 1 0;
    overflow: hidden;
  }

  .product-main {
    position: absolute;
    inset: 0;
    margin: auto;
    width: auto;
    max-width: min(58vw, 240px);
    max-height: 100%;
    height: auto;
    object-fit: contain;
    filter:
      drop-shadow(0 28px 36px rgba(0, 0, 0, 0.22))
      drop-shadow(0 10px 20px rgba(var(--forest-rgb), 0.12));
  }

  .product-stage.journey-active .product-main,
  .product-stage.is-active .product-main {
    transform: none;
  }

  .moments-cue {
    order: 2;
    position: relative;
    z-index: 2;
    padding: clamp(2px, 0.6svh, 8px) 20px;
    font-size: 10px;
    letter-spacing: 0.16em;
    flex: 0 0 auto;
    background: linear-gradient(
      180deg,
      rgba(var(--paper-rgb), 0) 0%,
      rgba(var(--paper-rgb), 0.55) 40%,
      rgba(var(--paper-rgb), 0.55) 100%
    );
  }

  .moments-cue .swipe-arrow:first-child {
    --nudge: -3px;
    animation: swipeNudge 1.8s ease-in-out infinite;
  }

  .moments-cue .swipe-arrow:last-child {
    --nudge: 3px;
    animation: swipeNudge 1.8s ease-in-out infinite;
    animation-delay: -0.9s;
  }

  .moments-dots {
    order: 4;
    display: flex;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
    gap: 8px;
    padding: 4px 20px clamp(4px, 0.8svh, 8px);
  }

  .moments-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 0 1px rgba(var(--forest-rgb), 0.2);
  }

  .moments-dots span.is-active {
    background: var(--green);
  }

  .video-orbit {
    order: 3;
    position: relative;
    z-index: 2;
    inset: auto;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-padding-inline: max(20px, env(safe-area-inset-left, 0px));
    padding:
      clamp(4px, 0.8svh, 8px)
      max(20px, env(safe-area-inset-right, 0px))
      clamp(6px, 1svh, 12px)
      max(20px, env(safe-area-inset-left, 0px));
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
    pointer-events: auto;
    flex: 0 0 auto;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      #000 28px,
      #000 calc(100% - 28px),
      transparent
    );
    mask-image: linear-gradient(
      to right,
      transparent,
      #000 28px,
      #000 calc(100% - 28px),
      transparent
    );
  }

  .video-orbit::after {
    content: "";
    flex: 0 0 max(20px, env(safe-area-inset-right, 0px));
  }

  .video-orbit::-webkit-scrollbar {
    display: none;
  }

  .dog-widget {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin-left: 0 !important;
    width: min(200px, 70vw);
    flex: 0 0 min(200px, 70vw);
    max-width: min(200px, 70vw);
    min-height: clamp(118px, 18svh, 150px);
    align-self: flex-start;
    scroll-snap-align: center;
    opacity: 1;
    transform: none !important;
    pointer-events: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .dog-widget.is-centered {
    transform: scale(1.03) !important;
    box-shadow: 0 20px 44px rgba(var(--ink-rgb), 0.18);
  }

  .dog-clip {
    height: clamp(64px, 11svh, 88px);
    width: 100%;
    object-fit: cover;
  }

  .ecs-section {
    padding-block: clamp(72px, 9dvh, 96px);
  }

  .benefit-card {
    padding: 28px 22px;
  }

  .serving-card {
    padding: 28px 22px;
  }

  .serving-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .shop-product,
  .shop-treat-accent,
  .shop-visual-glow,
  .shop-visual-ring {
    animation: none;
  }

  .shop-visual {
    transform: none !important;
  }

  .dog-widget span {
    font-size: 11px;
  }

  .dog-widget small {
    font-size: 10px;
    line-height: 1.35;
  }

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

  .gallery-section {
    display: block;
    padding-block: clamp(72px, 9dvh, 96px);
  }

  .gallery-inner {
    max-height: none;
    display: block;
  }

  .gallery-lead {
    display: block;
  }

  .gallery-grid {
    flex: none;
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, minmax(200px, 26vh));
  }

  .gallery-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-card:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .gallery-card:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-featured {
    grid-template-columns: 0.95fr 1.05fr;
    padding: 20px;
  }

  .gallery-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 20px;
  }

  .gallery-foot-link {
    grid-column: auto;
    width: 100%;
    max-width: 280px;
  }

  .shop-inner {
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vh, 56px);
    text-align: center;
  }

  .shop-copy {
    order: 1;
  }

  .shop-visual {
    order: 2;
    min-height: clamp(320px, 42vh, 420px);
  }

  .shop-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .shop-chips {
    justify-content: center;
  }

  .shop-actions {
    justify-content: center;
  }

  .cursor-glow {
    display: none;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .hero {
    --hero-pad-y: max(10px, env(safe-area-inset-top, 0px));
    padding:
      var(--hero-pad-y)
      max(16px, env(safe-area-inset-left, 0px))
      max(10px, env(safe-area-inset-bottom, 0px))
      max(16px, env(safe-area-inset-right, 0px));
  }

  .hero h1 {
    font-size: clamp(30px, min(11.5vw, 6.8svh), 48px);
    line-height: 0.98;
  }

  .hero-text {
    font-size: clamp(13px, 2svh, 15px);
    max-width: 32ch;
    margin: clamp(6px, 1.2svh, 14px) auto;
  }

  .hero-actions {
    max-width: 100%;
    gap: clamp(6px, 1svh, 8px);
  }

  .hero-actions .btn {
    padding: clamp(11px, 1.7svh, 15px) 20px;
    font-size: 14px;
  }

  .mobile-trust {
    font-size: 9px;
    gap: 6px 8px;
  }

  .mobile-trust span {
    padding: 6px 9px;
  }

  .product-main {
    max-width: min(62vw, 220px);
  }

  .dog-widget {
    width: min(188px, 72vw);
    flex: 0 0 min(188px, 72vw);
    max-width: min(188px, 72vw);
    min-height: clamp(108px, 16svh, 140px);
  }

  .dog-clip {
    height: clamp(60px, 10svh, 80px);
  }

  .section {
    padding:
      64px
      max(20px, env(safe-area-inset-left, 0px))
      64px
      max(20px, env(safe-area-inset-right, 0px));
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-head h2,
  #about .section-copy h2,
  .gallery-section h2,
  .ecs-intro h2 {
    font-size: clamp(32px, 9.5vw, 42px);
    line-height: 1.02;
  }

  .section-head p:not(.eyebrow),
  #about .section-copy p.about-lead,
  #about .section-copy p.about-detail {
    font-size: 15px;
    line-height: 1.65;
  }

  .gallery-section {
    display: block;
    padding:
      72px
      max(20px, env(safe-area-inset-left, 0px))
      72px
      max(20px, env(safe-area-inset-right, 0px));
  }

  .gallery-inner {
    max-height: none;
    display: block;
  }

  .benefit-grid,
  .serving-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #benefits .benefits-cta {
    align-self: stretch;
  }

  .benefit-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .benefit-card h3 {
    font-size: 18px;
  }

  .serving-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .serving-card.featured {
    transform: none;
  }

  .serving-card strong {
    font-size: 18px;
  }

  .fine-print {
    font-size: 11px;
    margin-top: 28px;
    text-align: left;
  }

  .guide-section .guide-cta {
    align-self: stretch;
  }

  .gallery-grid {
    flex: none;
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .gallery-card:not(.gallery-card--featured) {
    min-height: clamp(220px, 64vw, 280px);
  }

  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-card {
    border-radius: 22px;
  }

  .gallery-card--featured {
    min-height: 0;
  }

  .gallery-featured {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(200px, 48vw) auto;
    gap: 12px;
    padding: 16px;
  }

  .gallery-featured-visual {
    height: auto;
    min-height: 200px;
    aspect-ratio: 4 / 3;
  }

  .gallery-featured-pouch {
    max-height: 90%;
    max-width: 68%;
  }

  .gallery-featured-copy p {
    max-width: none;
    font-size: 14px;
  }

  .gallery-note {
    text-shadow:
      0 1px 2px rgba(var(--ink-rgb), 0.55),
      0 2px 12px rgba(var(--ink-rgb), 0.45);
  }

  .gallery-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
  }

  .gallery-foot-link {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 15px 24px;
    font-size: 16px;
    min-height: 48px;
  }

  .about-showcase {
    max-width: 100%;
    padding: 20px 14px;
    border-radius: 24px;
  }

  .about-showcase-frame {
    border-radius: 24px;
  }

  .about-hero-product {
    max-height: min(38vh, 300px);
  }

  #about.section {
    padding-block: 72px;
  }

  #about.split-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #about .about-cta {
    align-self: stretch;
    min-height: 48px;
  }

  #about .ingredient-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  #about .ingredient-list li {
    padding: 12px 14px;
  }

  .ecs-section {
    padding-block: 72px;
  }

  .ecs-cta {
    align-self: stretch;
    justify-content: center;
    width: 100%;
    min-height: 48px;
  }

  .ecs-canvas {
    max-width: 100%;
    gap: 24px;
  }

  .ecs-showcase {
    height: clamp(240px, 38vh, 340px);
    min-height: 240px;
    border-radius: 22px;
  }

  .ecs-intro h2 {
    font-size: clamp(32px, 9.5vw, 42px);
  }

  .ecs-lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .ecs-beat {
    padding: 14px 0;
  }

  .ecs-beat p,
  .ecs-beat-featured p {
    padding-left: 0;
    font-size: 14px;
  }

  .ecs-beat-featured {
    padding: 16px 18px;
    border-radius: 18px;
  }

  .shop-section {
    padding:
      80px
      max(20px, env(safe-area-inset-left, 0px))
      72px
      max(20px, env(safe-area-inset-right, 0px));
  }

  .shop-section h2 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .shop-lead {
    font-size: 15px;
  }

  .shop-chips {
    gap: 8px;
  }

  .shop-chips span {
    font-size: 10px;
    padding: 8px 12px;
  }

  .shop-actions {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .btn-shop {
    width: 100%;
    max-width: 300px;
    min-height: 52px;
  }

  .shop-secondary {
    font-size: 13px;
  }

  .shop-visual {
    min-height: clamp(260px, 36vh, 340px);
  }

  .shop-badge {
    font-size: 10px;
    padding: 9px 14px;
    white-space: normal;
    text-align: center;
    max-width: 92%;
  }

  .shop-treat-accent {
    right: 2%;
    width: clamp(64px, 18vw, 88px);
  }

  footer {
    padding:
      48px
      max(20px, env(safe-area-inset-left, 0px))
      calc(48px + env(safe-area-inset-bottom, 0px))
      max(20px, env(safe-area-inset-right, 0px));
    gap: 14px;
  }

  footer p {
    font-size: 14px;
    max-width: 34ch;
  }

  .legal {
    font-size: 10px;
    line-height: 1.55;
  }
}

@media (max-width: 380px) {
  #about .ingredient-list {
    grid-template-columns: 1fr;
  }

  .dog-widget {
    width: min(168px, 78vw);
    flex: 0 0 min(168px, 78vw);
    max-width: min(168px, 78vw);
  }
}

/* Short phones / tablets: drop secondary hero chrome so one screen still fits */
@media (max-width: 1000px) and (max-height: 780px) {
  .moments-cue {
    display: none;
  }

  .mobile-trust {
    display: none;
  }

  .hero-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .dog-widget {
    min-height: clamp(100px, 15svh, 124px);
  }

  .dog-clip {
    height: clamp(56px, 9.5svh, 74px);
  }
}

@media (max-width: 1000px) and (max-height: 700px) {
  .hero-actions .btn-ghost {
    display: none;
  }

  .dog-widget small {
    display: none;
  }

  .dog-widget {
    min-height: 0;
    padding-bottom: 6px;
  }
}

/* Landscape phones: copy + pouch only inside the viewport */
@media (max-width: 1000px) and (max-height: 520px) {
  .hero {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .hero-copy {
    flex: 1 1 46%;
    text-align: left;
  }

  .hero-text {
    margin-left: 0;
    margin-right: 0;
    max-width: 36ch;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: none;
    margin: 0;
  }

  .hero-actions .btn {
    width: auto;
  }

  .hero-actions .btn-ghost {
    display: inline-flex;
  }

  .hero-product {
    flex: 1 1 42%;
  }

  .video-orbit,
  .moments-cue,
  .moments-dots,
  .mobile-trust,
  .product-pedestal {
    display: none !important;
  }

  .product-showcase {
    flex: 1 1 auto;
    overflow: visible;
  }

  .product-main {
    position: relative;
    inset: auto;
    margin: 0 auto;
    max-width: min(34vw, 58svh, 220px);
    max-height: 58svh;
  }

  .halo {
    width: min(240px, 40vw, 56svh);
    height: min(240px, 40vw, 56svh);
  }
}

@media (max-width: 1000px) and (hover: hover) and (pointer: fine) {
  .hero-product:has(.product-stage:hover) .halo,
  .hero-product:has(.product-stage:focus-within) .halo {
    width: min(330px, 84vw, 42svh);
    height: min(330px, 84vw, 42svh);
    transform: translate(-50%, -50%) scale(1.04);
  }
}

/* Short desktop: keep guide/benefits from clipping when content exceeds the viewport */
@media (min-width: 1001px) and (max-height: 780px) {
  #benefits,
  .guide-section {
    justify-content: safe center;
    min-height: 0;
    padding-block: clamp(28px, 4dvh, 48px);
  }
}

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding:
    max(14px, env(safe-area-inset-top, 0px))
    max(6vw, env(safe-area-inset-right, 0px))
    14px
    max(6vw, env(safe-area-inset-left, 0px));
  background: rgba(var(--paper-rgb), 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(var(--forest-rgb), 0.08);
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 4px;
  font-family: var(--font-gotham);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

.site-nav a {
  font-family: var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 4px;
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green);
}

.site-nav-cart {
  padding: 8px 14px !important;
  border-radius: 999px;
  background: rgba(var(--forest-rgb), 0.06);
  border: 1px solid rgba(var(--forest-rgb), 0.1);
  color: var(--green) !important;
}

.site-nav-cart:hover {
  background: rgba(var(--forest-rgb), 0.1);
}

.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;
}

/* Product page */
.product-page {
  background: var(--paper);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding:
    clamp(32px, 5vh, 56px)
    max(6vw, env(safe-area-inset-right, 0px))
    clamp(48px, 6vh, 72px)
    max(6vw, env(safe-area-inset-left, 0px));
}

.product-gallery-main {
  --gallery-preview-height: 740px;
  position: relative;
  display: grid;
  place-items: center;
  height: var(--gallery-preview-height);
  min-height: var(--gallery-preview-height);
  max-height: var(--gallery-preview-height);
  padding: clamp(24px, 4vw, 40px);
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(var(--gold-rgb), 0.14), transparent 68%),
    linear-gradient(165deg, #f6efea 0%, var(--cream) 52%, #e6d9c4 100%);
  border: 1px solid rgba(var(--forest-rgb), 0.1);
  box-shadow:
    0 24px 60px rgba(var(--ink-rgb), 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.product-gallery-glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.22), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}

.product-gallery-image {
  position: relative;
  z-index: 1;
  display: block;
  max-width: min(380px, 100%);
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(var(--ink-rgb), 0.14));
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.product-gallery-image.is-swapping {
  opacity: 0.6;
  transform: scale(0.98);
}

.product-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.product-thumb {
  width: 72px;
  height: 72px;
  padding: 8px;
  border-radius: 16px;
  border: 2px solid rgba(var(--forest-rgb), 0.1);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.product-thumb:hover {
  border-color: rgba(var(--forest-rgb), 0.22);
  transform: translateY(-2px);
}

.product-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(var(--gold-rgb), 0.18);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-buy h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.product-tagline {
  font-size: 17px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 48ch;
  margin: 0 0 20px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 24px;
  font-family: var(--font-gotham);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green);
}

.product-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(var(--forest-rgb), 0.06);
  border: 1px solid rgba(var(--forest-rgb), 0.1);
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  margin-bottom: 24px;
}

.product-price-current {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.product-price-current s {
  font-size: 0.72em;
  color: var(--muted);
  margin-right: 8px;
}

.product-price-note {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.purchase-type {
  border: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.purchase-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 2px solid rgba(var(--forest-rgb), 0.1);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.purchase-option:has(input:checked) {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 10px 28px rgba(var(--ink-rgb), 0.06);
}

.purchase-option input {
  margin-top: 4px;
  accent-color: var(--green);
}

.purchase-option-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.purchase-option-copy strong {
  font-family: var(--font-gotham);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.purchase-option-copy small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.purchase-option-copy s {
  color: #a8b0a4;
}

.purchase-delivery {
  display: grid;
  gap: 8px;
  margin: -8px 0 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(var(--gold-rgb), 0.08);
  border: 1px solid rgba(var(--gold-rgb), 0.18);
}

.purchase-delivery[hidden] {
  display: none !important;
}

.purchase-delivery-label {
  font-family: var(--font-gotham);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.purchase-delivery-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(var(--forest-rgb), 0.14);
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

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

.checkout-note {
  margin: 0 0 22px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
}

.btn-add-cart.is-loading {
  opacity: 0.88;
  pointer-events: none;
}

.product-cart-form {
  margin: 0;
  padding: 0;
  border: 0;
}

.product-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.product-quantity-label {
  font-family: var(--font-gotham);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(var(--forest-rgb), 0.14);
  background: #fff;
  overflow: hidden;
}

.quantity-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  cursor: pointer;
  transition: background 0.2s ease;
}

.quantity-btn:hover {
  background: rgba(var(--forest-rgb), 0.06);
}

.quantity-input {
  width: 48px;
  height: 44px;
  border: none;
  border-inline: 1px solid rgba(var(--forest-rgb), 0.1);
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-add-cart {
  width: 100%;
  padding: 18px 28px;
  font-size: 15px;
  margin-bottom: 22px;
}

.product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-family: var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.product-details {
  max-width: 1240px;
  margin: 0 auto;
  padding:
    0
    max(6vw, env(safe-area-inset-right, 0px))
    clamp(48px, 6vh, 72px)
    max(6vw, env(safe-area-inset-left, 0px));
}

.product-tabs {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(var(--forest-rgb), 0.1);
  box-shadow: 0 18px 48px rgba(var(--ink-rgb), 0.06);
  overflow: hidden;
}

.product-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 8px;
  background: rgba(var(--forest-rgb), 0.04);
  border-bottom: 1px solid rgba(var(--forest-rgb), 0.08);
}

.product-tab {
  flex: 1 1 auto;
  min-width: 120px;
  padding: 14px 18px;
  border: none;
  border-radius: 14px;
  background: transparent;
  font-family: var(--font-gotham);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.product-tab:hover {
  color: var(--green);
}

.product-tab.is-active {
  background: #fff;
  color: var(--green);
  box-shadow: 0 6px 18px rgba(var(--ink-rgb), 0.06);
}

.product-panel {
  padding: clamp(28px, 4vw, 40px);
}

.product-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.product-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.product-panel p {
  font-size: 16px;
  line-height: 1.72;
  color: var(--muted);
  margin: 0 0 14px;
}

.ingredients-full {
  font-size: 14px !important;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid rgba(var(--forest-rgb), 0.08);
}

.product-ingredient-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-ingredient-list li {
  background: linear-gradient(160deg, #f7f2ef 0%, var(--cream) 100%);
  border: 1px solid rgba(var(--forest-rgb), 0.1);
  padding: 14px 16px;
  border-radius: 14px;
}

.product-ingredient-list strong {
  display: block;
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 4px;
}

.product-ingredient-list span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 500;
}

.product-disclaimer {
  font-size: 12px !important;
  line-height: 1.65 !important;
  margin-top: 18px !important;
  padding-top: 18px;
  border-top: 1px solid rgba(var(--forest-rgb), 0.1);
}

.product-ecs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.product-ecs-copy .eyebrow {
  margin-bottom: 12px;
}

.product-ecs-visual {
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(var(--forest-rgb), 0.1);
  aspect-ratio: 4 / 3;
}

.product-ecs-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-coa {
  max-width: 640px;
}

.coa-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.coa-list li {
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid rgba(var(--forest-rgb), 0.08);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.coa-list strong {
  color: var(--ink);
}

.coa-link {
  margin-top: 8px;
}

.product-guide {
  background: var(--cream);
}

.product-guide .fine-print {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .product-hero {
    grid-template-columns: 1fr;
  }

  .product-panel-grid,
  .product-ecs {
    grid-template-columns: 1fr;
  }

  .product-ecs-visual {
    order: -1;
  }

  .product-ingredient-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .site-nav {
    gap: 8px;
  }

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

  .product-tab {
    min-width: 0;
    padding: 12px 10px;
    font-size: 11px;
  }
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  margin-left: 6px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background: var(--green);
}

/* Commerce: cart, checkout, order */
.commerce-page {
  background: var(--paper);
}

.commerce-main {
  max-width: 1100px;
  margin: 0 auto;
  padding:
    clamp(32px, 5vh, 56px)
    max(6vw, env(safe-area-inset-right, 0px))
    clamp(56px, 7vh, 88px)
    max(6vw, env(safe-area-inset-left, 0px));
}

.commerce-head {
  margin-bottom: clamp(28px, 4vh, 40px);
}

.commerce-head h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.commerce-head h1 em {
  font-style: italic;
  color: var(--gold);
}

.commerce-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 52ch;
  margin: 0;
}

.commerce-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 4vw, 36px);
  align-items: start;
}

.commerce-panel {
  background: #fff;
  border: 1px solid rgba(var(--forest-rgb), 0.1);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 16px 44px rgba(var(--ink-rgb), 0.06);
}

.commerce-summary {
  position: sticky;
  top: calc(72px + env(safe-area-inset-top, 0px));
  background: linear-gradient(165deg, #f6efea 0%, var(--cream) 100%);
  border: 1px solid rgba(var(--forest-rgb), 0.1);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 28px);
  box-shadow: 0 16px 44px rgba(var(--ink-rgb), 0.06);
}

.commerce-summary h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.summary-rows {
  margin: 0 0 16px;
  padding: 0;
}

.summary-rows > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(var(--forest-rgb), 0.08);
  font-size: 14px;
}

.summary-rows dt {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.summary-rows dd {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.summary-total {
  border-bottom: none !important;
  padding-top: 14px !important;
  font-size: 16px !important;
}

.summary-total dd {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}

.summary-note {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--green);
  font-weight: 600;
}

.btn-block {
  width: 100%;
  text-align: center;
}

.commerce-back {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  min-height: 44px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.25s ease;
}

.commerce-back:hover {
  color: var(--green);
}

.cart-empty,
.checkout-empty {
  text-align: center;
  padding: clamp(40px, 6vh, 64px) 24px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(var(--forest-rgb), 0.1);
}

.cart-empty p,
.checkout-empty p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
}

.cart-lines {
  display: grid;
  gap: 16px;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto auto auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(var(--forest-rgb), 0.08);
}

.cart-line:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.cart-line--readonly {
  grid-template-columns: 72px 1fr auto;
}

.cart-line-image {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px;
  background: var(--cream);
  padding: 6px;
}

.cart-line-copy h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}

.cart-line-meta,
.cart-line-sku {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.cart-line-qty {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(var(--forest-rgb), 0.14);
  background: #fff;
  overflow: hidden;
}

.cart-line-qty-value {
  min-width: 32px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}

.cart-line-price {
  font-weight: 700;
  font-size: 15px;
  min-width: 72px;
  text-align: right;
}

.cart-line-remove {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(var(--forest-rgb), 0.06);
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cart-line-remove:hover {
  background: rgba(var(--forest-rgb), 0.12);
  color: var(--ink);
}

.checkout-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(var(--forest-rgb), 0.08);
}

.checkout-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.checkout-section h2 {
  font-family: var(--font-gotham);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field-span-2 {
  grid-column: span 2;
}

.field span {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(var(--forest-rgb), 0.14);
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.18);
}

.field-error {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #b54a4a;
}

.checkout-secure {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.checkout-notice {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid #d8c7a2;
  background: #f7f1ec;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
  cursor: pointer;
}

.field-checkbox input {
  margin-top: 2px;
  accent-color: var(--forest);
}

.order-loading {
  text-align: center;
  padding: 48px 0;
}

.checkout-summary-items {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(var(--forest-rgb), 0.08);
}

.checkout-summary-line {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.checkout-summary-line img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  padding: 4px;
}

.checkout-summary-line strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.checkout-summary-line span {
  color: var(--muted);
  font-size: 11px;
}

.checkout-submit.is-loading {
  opacity: 0.88;
  pointer-events: none;
}

.order-hero {
  margin-bottom: clamp(28px, 4vh, 40px);
}

.order-id {
  margin: 16px 0 0;
  font-family: var(--font-gotham);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--green);
}

.order-shipping {
  margin: 20px 0;
  padding-top: 18px;
  border-top: 1px solid rgba(var(--forest-rgb), 0.08);
}

.order-shipping h3 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.order-shipping address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.order-payment {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .commerce-layout {
    grid-template-columns: 1fr;
  }

  .commerce-summary {
    position: static;
  }

  .cart-line {
    grid-template-columns: 64px 1fr auto;
    grid-template-areas:
      "image copy price"
      "image qty remove";
  }

  .cart-line-image {
    grid-area: image;
  }

  .cart-line-copy {
    grid-area: copy;
  }

  .cart-line-qty {
    grid-area: qty;
    justify-self: start;
  }

  .cart-line-price {
    grid-area: price;
  }

  .cart-line-remove {
    grid-area: remove;
    justify-self: end;
  }

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

  .field-span-2 {
    grid-column: span 1;
  }
}

/* —— Admin —— */
.admin-page .site-nav {
  align-items: center;
  gap: 18px;
}

.admin-nav-label {
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-size: 1.05rem;
  color: var(--muted);
}

.admin-logout {
  border: 0;
  background: transparent;
  color: var(--forest);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.admin-logout:hover {
  color: var(--gold);
}

.admin-main {
  max-width: 1100px;
}

.admin-order-page .admin-main {
  width: 100%;
  max-width: 1380px;
  padding: 20px clamp(18px, 3vw, 44px) 48px;
}

.admin-login-panel {
  max-width: 420px;
  display: grid;
  gap: 16px;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-search-field {
  flex: 1 1 280px;
  margin: 0;
}

.admin-count {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.admin-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(42, 63, 52, 0.12);
  vertical-align: top;
}

.admin-table th {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.admin-order-link {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}

.admin-order-link:hover {
  color: var(--gold);
}

.admin-muted {
  color: var(--muted);
  font-size: 13px;
}

.admin-items-cell {
  max-width: 240px;
  font-size: 13px;
}

.admin-status {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  color: var(--forest);
}

.admin-status--shipped {
  color: #2f6b4f;
}

.admin-status--processing {
  color: #8a6a2a;
}

.admin-status--cancelled {
  color: #8a3a3a;
}

.admin-detail-layout {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 16px;
}

.admin-detail-stack {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-detail-stack > :nth-child(n + 3) { grid-column: 1 / -1; }
.admin-order-page .commerce-back { min-height:36px; margin:0 0 10px; }
.admin-order-page .commerce-head { margin-bottom:18px; }
.admin-order-page .commerce-head h1 { font-size:clamp(42px,4vw,56px); }
.admin-order-meta { display:flex; align-items:center; flex-wrap:wrap; gap:10px; color:var(--muted); font-size:15px; }
.admin-status-pill,.admin-inline-status { display:inline-flex; width:fit-content; align-items:center; border-radius:999px; padding:5px 10px; background:#e8eee9; color:#2f6b4f; font-size:11px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.admin-order-meta .admin-status-pill::before { content:""; width:6px; height:6px; margin-right:6px; border-radius:50%; background:currentColor; }
.admin-inline-status--paid { background:#e5f1e9; color:#236044; }
.admin-inline-status--failed { background:#f8e6e3; color:#8a3a3a; }
.admin-order-page .commerce-panel { border-radius:20px; padding:clamp(18px,2vw,24px); }
.admin-order-page .commerce-panel h2 { margin:0 0 18px; font-size:clamp(22px,2vw,28px); }
.admin-order-page .cart-line--readonly { grid-template-columns:minmax(0,1fr) auto; }
.admin-order-page .cart-line-copy p { margin:0; color:var(--muted); font-size:13px; line-height:1.55; }
.admin-payment-reference { min-width:0; display:flex; align-items:center; gap:8px; }
.admin-payment-reference code { min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; color:var(--forest); font:600 12px/1.4 ui-monospace,SFMono-Regular,Consolas,monospace; }
.admin-copy-button { flex:none; border:1px solid rgba(var(--forest-rgb),.16); border-radius:999px; background:#fff; color:var(--forest); padding:5px 9px; font:700 11px var(--font-body); cursor:pointer; }

.admin-dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.admin-dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px;
}

.admin-dl dt {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.admin-dl dd {
  margin: 0;
  font-size: 14px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-sub-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.admin-aside-section {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(42, 63, 52, 0.12);
}

.admin-aside-section h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.admin-email-card {
  border:1px solid rgba(var(--forest-rgb),.11);
  border-radius:16px;
  background:var(--cream);
  padding:0 16px;
}

.admin-email-card summary { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:15px 0; cursor:pointer; font-size:13px; font-weight:700; list-style:none; }
.admin-email-card summary::-webkit-details-marker { display:none; }
.admin-email-card summary::after { content:"+"; order:3; font-size:18px; color:var(--muted); }
.admin-email-card[open] summary::after { content:"–"; }
.admin-email-card[open] { padding-bottom:15px; }

.admin-email-title {
  margin: 0 0 4px;
  font-weight: 600;
  font-size: 14px;
}

.admin-email-status {
  margin:0 0 0 auto;
  border-radius:999px;
  padding:4px 8px;
  background:#efe5d1;
  color:#785c22;
  font-size:10px;
  font-weight:800;
  white-space:nowrap;
}

.admin-email-status[data-status="sent"] { background:#e5f1e9; color:#236044; }
.admin-email-status[data-status="failed"] { background:#f8e6e3; color:#8a3a3a; }

.admin-email-details {
  margin:0 0 14px;
  display: grid;
  gap: 8px;
}

.admin-email-details > div {
  display: grid;
  gap: 2px;
}

.admin-email-details dt {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.admin-email-details dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  word-break: break-word;
}

.admin-email-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-email-actions .btn {
  padding: 8px 12px;
  font-size: 12px;
}

.admin-action-ok {
  margin: 8px 0 0;
  color: #2f6b4f;
  font-size: 14px;
}

.admin-order-page .commerce-panel address {
  font-style: normal;
  line-height: 1.55;
  font-size: 14px;
}

@media (max-width: 900px) {
  .admin-order-page .admin-main { padding:16px 14px 40px; }

  .admin-detail-layout,
  .admin-detail-stack,
  .admin-email-grid { grid-template-columns: 1fr; }

  .admin-detail-stack > :nth-child(n + 3) { grid-column: auto; }

  .admin-dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* Policies */
.policy-main {
  max-width: 760px;
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 20px;
}

.policy-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}

.policy-nav a:hover,
.policy-nav a[aria-current="page"] {
  color: var(--forest);
}

.policy-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.policy-panel h2 {
  margin: 28px 0 10px;
  font-size: 1.2rem;
}

.policy-panel h2:first-child {
  margin-top: 0;
}

.policy-panel p,
.policy-panel li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink, #2a3f34);
}

.policy-panel ul {
  margin: 0 0 12px;
  padding-left: 1.2rem;
  display: grid;
  gap: 8px;
}

.policy-panel a {
  color: var(--forest);
  font-weight: 600;
}

.policy-panel a:hover {
  color: var(--gold);
}

.policy-state-list {
  columns: 2;
  column-gap: 24px;
}

.policy-updated {
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
}

.admin-email-preview-text { display:-webkit-box; overflow:hidden; -webkit-box-orient:vertical; -webkit-line-clamp:3; }
.admin-email-error { border-radius:10px; background:#f8e8e5; color:#7a3535; padding:8px 10px; }
.admin-emails-panel { padding-bottom:24px !important; }
.admin-email-grid { display:grid; grid-template-columns:1fr; gap:12px; align-items:start; }
.admin-section-heading { display:flex; align-items:end; justify-content:space-between; gap:16px; margin-bottom:16px; }
.admin-section-heading h2,.admin-section-heading .eyebrow { margin-bottom:0 !important; }
.admin-section-heading a { color:var(--green); font-size:12px; font-weight:700; }
.admin-order-page .admin-aside { top:calc(84px + env(safe-area-inset-top,0px)); border-radius:20px; padding:22px; }
.admin-order-page [data-save-fulfillment] { margin-top:12px; }

@media (max-width: 900px) {
  .admin-email-grid { grid-template-columns: 1fr; }
}

.admin-direction-field { min-width: 150px; }
.admin-refresh-button { min-height: 46px; }
.admin-email-table { min-width: 920px; }
.admin-email-direction { display:inline-block; padding:4px 8px; border-radius:999px; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; background:#e8eee9; color:#2a3f34; }
.admin-email-direction--inbound { background:#e4eef8; color:#24557c; }
.admin-email-preview { max-width:520px; margin-top:5px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

.contact-page-layout {
  align-items: start;
}

.contact-page-layout textarea {
  resize: vertical;
  min-height: 10rem;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  color: #2a3f34;
  font-weight: 600;
}

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 12px 0 4px;
}

.footer-policies a {
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  opacity: 0.85;
  text-decoration: none;
}

.footer-policies a:hover {
  opacity: 1;
  color: var(--gold);
}

.checkout-terms a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-terms a:hover {
  color: var(--gold);
}

.checkout-account-bar {
  margin: -8px 0 24px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(var(--forest-rgb), 0.06);
  border: 1px solid rgba(var(--forest-rgb), 0.1);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.checkout-account-bar a {
  font-weight: 700;
  color: var(--green);
}

.checkout-account-bar a:hover {
  color: var(--gold);
}

.checkout-create-account .field-checkbox {
  margin: 0;
}

.checkout-account-passwords {
  margin-top: 14px;
}

.account-auth-panel {
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.account-auth-panel .field {
  gap: 8px;
}

.account-auth-panel .btn-block {
  margin-top: 8px;
}

.account-auth-switch {
  margin: 4px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.account-auth-switch a {
  font-weight: 700;
  color: var(--green);
}

.field-hint {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.field-success {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.account-orders h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 16px;
}

.account-orders-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.account-order-list {
  display: grid;
  gap: 10px;
}

.account-order-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(var(--forest-rgb), 0.1);
  background: var(--cream);
  color: inherit;
  text-decoration: none;
}

.account-order-card strong {
  grid-column: 1;
}

.account-order-card span:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-weight: 700;
}

.account-order-card span:nth-child(2) {
  font-size: 12px;
  color: var(--muted);
}

.account-order-card:hover {
  border-color: var(--gold);
}

.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(31, 42, 36, 0.46);
  backdrop-filter: blur(8px);
}

.newsletter-modal[hidden] {
  display: none !important;
}

.newsletter-modal-open {
  overflow: hidden;
}

.newsletter-modal-card {
  width: min(440px, 100%);
  background: #fff;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 32px);
  box-shadow: 0 24px 60px rgba(31, 42, 36, 0.22);
}

.newsletter-modal-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 12px;
}

.newsletter-modal-copy {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.newsletter-modal-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 800px) {
  .account-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .policy-state-list {
    columns: 1;
  }
}
