/* ==========================================================================
   FETCH & CO. — Shared stylesheet
   Bright, playful, premium DTC pet brand.
   Palette, type, components, layout, motion.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Core colors */
  --cream: #FFF8F0;
  --cream-deep: #FFEFDD;
  --ink: #16161D;
  --ink-soft: #45454f;
  --white: #ffffff;

  /* Vivid accents */
  --coral: #FF5A5F;
  --coral-dark: #e8474c;
  --tangerine: #FF8C42;
  --yellow: #FFC93C;
  --blue: #2E6BE6;
  --teal: #14B8A6;

  /* Tints for tiles / blocks */
  --coral-tint: #FFE3E2;
  --tangerine-tint: #FFE7D4;
  --yellow-tint: #FFF1C7;
  --blue-tint: #DEE8FF;
  --teal-tint: #CFF3EE;

  /* Type */
  --font-display: "Space Grotesk", "Poppins", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, sans-serif;

  /* Radius */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 44px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 4px 14px rgba(22,22,29,.07);
  --shadow-md: 0 12px 30px rgba(22,22,29,.10);
  --shadow-lg: 0 26px 60px rgba(22,22,29,.16);
  --shadow-coral: 0 12px 28px rgba(255,90,95,.35);

  /* Layout */
  --maxw: 1220px;
  --gutter: clamp(1.1rem, 4vw, 3rem);
  --header-h: 76px;

  /* Motion */
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral);
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--coral);
}
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.1rem); margin: .6rem 0 .8rem; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.center { text-align: center; margin-inline: auto; }
.text-muted { color: var(--ink-soft); }
.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;
}

/* Skip link */
.skip-link {
  position: absolute; left: 1rem; top: -60px; z-index: 200;
  background: var(--ink); color: var(--white);
  padding: .7rem 1.2rem; border-radius: var(--r-pill);
  font-weight: 700; transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* Focus visibility */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--white);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: .95rem 1.7rem; border: none; border-radius: var(--r-pill);
  cursor: pointer; text-align: center;
  transition: transform .3s var(--spring), box-shadow .3s var(--ease), background .2s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(-1px) scale(.99); }
.btn--primary { --bg: var(--coral); --fg: var(--white); box-shadow: var(--shadow-coral); }
.btn--primary:hover { --bg: var(--coral-dark); box-shadow: 0 16px 34px rgba(255,90,95,.42); }
.btn--secondary { --bg: transparent; --fg: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btn--secondary:hover { --bg: var(--ink); --fg: var(--white); }
.btn--yellow { --bg: var(--yellow); --fg: var(--ink); }
.btn--blue { --bg: var(--blue); --fg: var(--white); }
.btn--block { width: 100%; }
.btn--sm { padding: .6rem 1.1rem; font-size: .9rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h);
}
.site-header.is-stuck {
  background: rgba(255,248,240,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: var(--shadow-sm);
}
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.32rem;
  letter-spacing: -.02em;
}
.brand svg { width: 34px; height: 34px; }
.brand span b { color: var(--coral); }

.primary-nav ul { display: flex; align-items: center; gap: 2rem; }
.primary-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 1rem;
  position: relative; padding: .3rem 0;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 3px; border-radius: 2px; background: var(--coral);
  transition: width .3s var(--ease);
}
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: .75rem; }

.icon-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: var(--r-pill);
  background: var(--white); border: 2px solid transparent;
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .3s var(--spring), border-color .2s;
}
.icon-btn:hover { transform: translateY(-2px) rotate(-6deg); border-color: var(--yellow); }
.icon-btn svg { width: 22px; height: 22px; }

.cart-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 22px; height: 22px; padding: 0 5px;
  display: grid; place-items: center;
  background: var(--coral); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  border-radius: var(--r-pill); border: 2px solid var(--cream);
}
.cart-count.pop { animation: badgePop .45s var(--spring); }
@keyframes badgePop { 0%{transform:scale(1)} 40%{transform:scale(1.5)} 100%{transform:scale(1)} }

.hamburger { display: none; }

/* ---------- Mobile drawer ---------- */
.nav-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
  background: var(--cream); z-index: 160;
  transform: translateX(105%);
  transition: transform .42s var(--spring);
  padding: 1.4rem 1.4rem 2rem;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.nav-drawer ul { display: flex; flex-direction: column; gap: .4rem; }
.nav-drawer a {
  display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.4rem;
  padding: .7rem .4rem; border-radius: var(--r-sm);
  transition: background .2s, padding-left .2s;
}
.nav-drawer a:hover { background: var(--coral-tint); padding-left: 1rem; }
.drawer-cta { margin-top: auto; padding-top: 1.5rem; }
.scrim {
  position: fixed; inset: 0; background: rgba(22,22,29,.45); z-index: 150;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
  backdrop-filter: blur(2px);
}
.scrim.open { opacity: 1; visibility: visible; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; padding-top: clamp(2rem, 5vw, 4rem); padding-bottom: clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 7vw, 4.9rem);
  letter-spacing: -.03em; margin: 1rem 0 1.2rem;
}
.hero-copy h1 .hl { position: relative; color: var(--coral); white-space: nowrap; }
.hero-copy h1 .hl svg {
  position: absolute; left: 0; right: 0; bottom: -.35em; width: 100%; height: .4em;
}
.hero-copy p.lede { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--ink-soft); max-width: 34ch; margin-bottom: 1.8rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.8rem; }
.hero-trust { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-weight: 700; }
.hero-trust .stars { color: var(--tangerine); letter-spacing: 2px; font-size: 1.1rem; }
.hero-trust small { color: var(--ink-soft); font-weight: 600; }

.hero-visual { position: relative; }
.hero-blob {
  position: relative; border-radius: 46% 54% 55% 45% / 52% 44% 56% 48%;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--tangerine) 55%, var(--coral) 100%);
  padding: 10px;
  animation: blobMorph 12s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
}
@keyframes blobMorph {
  0%,100% { border-radius: 46% 54% 55% 45% / 52% 44% 56% 48%; }
  33% { border-radius: 58% 42% 40% 60% / 45% 58% 42% 55%; }
  66% { border-radius: 40% 60% 62% 38% / 60% 40% 60% 40%; }
}
.hero-blob img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 44% 56% 53% 47% / 50% 46% 54% 50%;
}
.hero-img-tilt { transition: transform .3s var(--ease); will-change: transform; }

/* Floating sticker shapes */
.float {
  position: absolute; z-index: 3;
  font-family: var(--font-display); font-weight: 700;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  padding: .55rem 1rem; font-size: .9rem;
  display: inline-flex; align-items: center; gap: .4rem;
}
.float--1 { top: 4%; left: -4%; background: var(--white); color: var(--ink); animation: bob 5s ease-in-out infinite; }
.float--2 { bottom: 12%; left: -7%; background: var(--blue); color: #fff; animation: bob 6.5s ease-in-out infinite .4s; }
.float--3 { top: 12%; right: -3%; background: var(--teal); color: #fff; animation: bob 5.8s ease-in-out infinite .8s; }
.float--dot {
  width: 64px; height: 64px; padding: 0; border-radius: 50%;
  bottom: -3%; right: 12%; background: var(--yellow);
  display: grid; place-items: center; animation: bob 7s ease-in-out infinite .2s;
}
.float--dot svg { width: 34px; height: 34px; }
@keyframes bob { 0%,100%{ transform: translateY(0) rotate(-2deg); } 50%{ transform: translateY(-14px) rotate(2deg); } }

.scroll-cue {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 2.2rem;
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft);
}
.scroll-cue .mouse {
  width: 22px; height: 34px; border: 2px solid var(--ink-soft); border-radius: 12px; position: relative;
}
.scroll-cue .mouse::after {
  content:""; position: absolute; left: 50%; top: 6px; width: 4px; height: 8px;
  background: var(--coral); border-radius: 2px; transform: translateX(-50%);
  animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel { 0%{opacity:0; transform: translate(-50%,0);} 40%{opacity:1;} 100%{opacity:0; transform: translate(-50%,10px);} }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  background: var(--ink); color: var(--cream); overflow: hidden;
  padding-block: 1.05rem; border-block: 3px solid var(--ink);
}
.marquee__track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  padding-inline: 1.6rem; display: inline-flex; align-items: center; gap: 1.6rem;
  white-space: nowrap;
}
.marquee__track span::after { content: "🐾"; font-size: .9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   CATEGORIES
   ========================================================================== */
.cat-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
.cat-tile {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 3/4; display: block; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--spring), box-shadow .35s var(--ease);
}
.cat-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cat-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.cat-tile:hover img { transform: scale(1.08); }
.cat-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(22,22,29,.72));
}
.cat-tile span {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  padding: .9rem; display: flex; align-items: center; justify-content: space-between;
}
.cat-tile span::after { content: "→"; transition: transform .3s var(--spring); }
.cat-tile:hover span::after { transform: translateX(5px); }

/* ==========================================================================
   PRODUCT GRID / CARDS
   ========================================================================== */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem);
}
.product-card {
  background: var(--white); border-radius: var(--r-lg); padding: .8rem .8rem 1.3rem;
  box-shadow: var(--shadow-sm); position: relative;
  transition: box-shadow .35s var(--ease);
  transform-style: preserve-3d;
}
.product-card:hover { box-shadow: var(--shadow-lg); }
.product-media {
  position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/3;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.07); }

.badge {
  position: absolute; top: .8rem; left: .8rem; z-index: 3;
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm); transform: rotate(-4deg);
}
.badge--new { background: var(--blue); color: #fff; }
.badge--best { background: var(--yellow); color: var(--ink); }
.badge--eco { background: var(--teal); color: #fff; }
.badge--sale { background: var(--coral); color: #fff; }

.wishlist {
  position: absolute; top: .7rem; right: .7rem; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.9); cursor: pointer;
  display: grid; place-items: center;
  transition: transform .3s var(--spring), background .2s;
}
.wishlist svg { width: 20px; height: 20px; fill: none; stroke: var(--ink); stroke-width: 2; transition: fill .2s, stroke .2s; }
.wishlist:hover { transform: scale(1.15); }
.wishlist.active svg { fill: var(--coral); stroke: var(--coral); }
.wishlist.active { animation: heartPop .4s var(--spring); }
@keyframes heartPop { 0%{transform:scale(1)} 45%{transform:scale(1.35)} 100%{transform:scale(1)} }

.product-body { padding: 1rem .5rem 0; }
.product-cat { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--tangerine); }
.product-body h3 { font-size: 1.22rem; margin: .25rem 0 .35rem; }
.rating { display: flex; align-items: center; gap: .4rem; font-size: .86rem; font-weight: 700; color: var(--ink-soft); }
.rating .stars { color: var(--tangerine); letter-spacing: 1px; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .9rem; }
.price { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; }
.price s { color: var(--ink-soft); font-size: .95rem; font-weight: 500; margin-left: .35rem; }

.add-btn {
  position: relative; overflow: hidden;
  border: none; cursor: pointer; background: var(--ink); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  padding: .6rem 1.1rem; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: .45rem;
  transition: transform .3s var(--spring), background .25s;
}
.add-btn:hover { transform: translateY(-2px); background: var(--coral); }
.add-btn .txt-added { display: none; }
.add-btn.added { background: var(--teal); }
.add-btn.added .txt-default { display: none; }
.add-btn.added .txt-added { display: inline-flex; align-items: center; gap: .4rem; }

/* confetti dots */
.confetti {
  position: absolute; width: 8px; height: 8px; border-radius: 2px;
  pointer-events: none; z-index: 40;
}

/* ==========================================================================
   VALUE PROPS
   ========================================================================== */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.value-card {
  background: var(--white); border-radius: var(--r-lg); padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--spring);
}
.value-card:hover { transform: translateY(-8px); }
.value-icon {
  width: 62px; height: 62px; border-radius: var(--r-md); display: grid; place-items: center;
  margin-bottom: 1.1rem;
}
.value-icon svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 2; }
.value-card:nth-child(1) .value-icon { background: var(--coral-tint); color: var(--coral); }
.value-card:nth-child(2) .value-icon { background: var(--blue-tint); color: var(--blue); }
.value-card:nth-child(3) .value-icon { background: var(--teal-tint); color: var(--teal); }
.value-card:nth-child(4) .value-icon { background: var(--yellow-tint); color: var(--tangerine); }
.value-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.value-card p { color: var(--ink-soft); font-size: .98rem; }

/* ==========================================================================
   LIFESTYLE BAND
   ========================================================================== */
.lifestyle {
  background: var(--blue); color: #fff; border-radius: var(--r-xl);
  overflow: hidden; display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.lifestyle-media { min-height: 340px; }
.lifestyle-media img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-copy { padding: clamp(2rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: center; }
.lifestyle-copy .eyebrow { color: var(--yellow); }
.lifestyle-copy .eyebrow::before { background: var(--yellow); }
.lifestyle-copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin: .7rem 0 1rem; }
.lifestyle-copy p { color: rgba(255,255,255,.88); font-size: 1.08rem; margin-bottom: 1.6rem; max-width: 46ch; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testi-card {
  background: var(--white); border-radius: var(--r-lg); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm); position: relative;
  border-top: 6px solid var(--coral);
}
.testi-card:nth-child(2) { border-top-color: var(--blue); }
.testi-card:nth-child(3) { border-top-color: var(--teal); }
.testi-card .stars { color: var(--tangerine); letter-spacing: 2px; margin-bottom: .8rem; }
.testi-card blockquote { font-size: 1.06rem; margin-bottom: 1.3rem; }
.testi-who { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.05rem;
  background: var(--tangerine);
}
.testi-card:nth-child(2) .testi-avatar { background: var(--blue); }
.testi-card:nth-child(3) .testi-avatar { background: var(--teal); }
.testi-who strong { display: block; font-family: var(--font-display); }
.testi-who span { font-size: .85rem; color: var(--ink-soft); }

/* ==========================================================================
   STATS BAND
   ========================================================================== */
.stats {
  background: var(--ink); color: var(--cream); border-radius: var(--r-xl);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat b {
  font-family: var(--font-display); font-weight: 700; display: block;
  font-size: clamp(2.4rem, 6vw, 3.6rem); line-height: 1;
  background: linear-gradient(120deg, var(--yellow), var(--coral));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { font-weight: 600; color: rgba(255,248,240,.75); font-size: .98rem; }

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.newsletter {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--tangerine) 100%);
  border-radius: var(--r-xl); padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center; position: relative; overflow: hidden;
}
.newsletter h2 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--ink); }
.newsletter p { color: rgba(22,22,29,.8); font-size: 1.1rem; margin: .8rem auto 1.8rem; max-width: 46ch; }
.news-form { display: flex; gap: .6rem; max-width: 480px; margin-inline: auto; flex-wrap: wrap; }
.news-form input {
  flex: 1 1 220px; min-width: 0; border: none; border-radius: var(--r-pill);
  padding: .95rem 1.4rem; font-size: 1rem; box-shadow: var(--shadow-sm);
}
.news-note { margin-top: 1rem; font-size: .85rem; color: rgba(22,22,29,.65); }
.news-success { margin-top: 1rem; font-weight: 700; color: var(--ink); display: none; }
.news-success.show { display: block; animation: fadeUp .4s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px);} to { opacity:1; transform:none; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--cream); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2.4rem;
  padding-bottom: 2.5rem;
}
.footer-brand .brand { color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,248,240,.7); max-width: 34ch; margin-bottom: 1.3rem; }
.socials { display: flex; gap: .6rem; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); transition: transform .3s var(--spring), background .2s;
}
.socials a:hover { transform: translateY(-3px); background: var(--coral); }
.socials svg { width: 20px; height: 20px; fill: var(--cream); }
.footer-col h4 { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { color: rgba(255,248,240,.78); transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--cream); padding-left: 4px; }
.footer-news { margin-top: .4rem; }
.footer-news form { display: flex; gap: .4rem; margin-top: .7rem; }
.footer-news input { flex: 1; border: none; border-radius: var(--r-pill); padding: .6rem 1rem; font-size: .9rem; }
.footer-news button { border: none; border-radius: var(--r-pill); padding: .6rem 1rem; background: var(--coral); color: #fff; font-family: var(--font-display); font-weight: 700; cursor: pointer; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.6rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,248,240,.6); font-size: .88rem; }
.footer-legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,248,240,.7); font-size: .88rem; }
.footer-legal a:hover { color: var(--cream); }
.pay-badges { display: flex; gap: .5rem; align-items: center; }
.pay-badges span {
  font-family: var(--font-display); font-weight: 700; font-size: .68rem;
  background: rgba(255,255,255,.1); padding: .3rem .55rem; border-radius: 6px; color: rgba(255,248,240,.85);
}

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */
.page-hero { padding-block: clamp(3rem, 7vw, 5.5rem); position: relative; overflow: hidden; }
.page-hero .eyebrow { justify-content: flex-start; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 4.4rem); margin: .8rem 0 1rem; }
.page-hero p { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); max-width: 52ch; }
.page-hero.center { text-align: center; }
.page-hero.center .eyebrow { justify-content: center; }
.page-hero.center p { margin-inline: auto; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.story-copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.story-copy p { color: var(--ink-soft); margin-bottom: 1rem; }
.story-media { position: relative; }
.story-media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.tag-sticker {
  position: absolute; bottom: -1.2rem; right: -1rem;
  background: var(--coral); color: #fff; font-family: var(--font-display); font-weight: 700;
  padding: 1rem 1.3rem; border-radius: var(--r-md); box-shadow: var(--shadow-md);
  transform: rotate(-5deg); text-align: center; line-height: 1.1;
}
.tag-sticker b { display: block; font-size: 1.6rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.value-block {
  background: var(--white); border-radius: var(--r-lg); padding: 2rem;
  box-shadow: var(--shadow-sm); border-left: 6px solid var(--coral);
}
.value-block:nth-child(2){ border-left-color: var(--blue); }
.value-block:nth-child(3){ border-left-color: var(--teal); }
.value-block:nth-child(4){ border-left-color: var(--tangerine); }
.value-block:nth-child(5){ border-left-color: var(--yellow); }
.value-block:nth-child(6){ border-left-color: var(--coral); }
.value-block h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.value-block p { color: var(--ink-soft); font-size: .96rem; }
.value-block .num { font-family: var(--font-display); font-weight: 700; color: var(--coral); font-size: .9rem; letter-spacing: .1em; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step .n {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--yellow); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  margin-bottom: 1rem;
}
.step:nth-child(2) .n { background: var(--coral); color: #fff; }
.step:nth-child(3) .n { background: var(--blue); color: #fff; }
.step:nth-child(4) .n { background: var(--teal); color: #fff; }
.step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.2fr .9fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-form {
  background: var(--white); border-radius: var(--r-lg); padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; margin-bottom: .4rem; font-size: .95rem; }
.field input, .field textarea, .field select {
  width: 100%; border: 2px solid var(--cream-deep); background: var(--cream);
  border-radius: var(--r-sm); padding: .85rem 1.1rem; font-size: 1rem;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--coral); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none; align-items: center; gap: .6rem; margin-top: 1rem;
  background: var(--teal-tint); color: #0c7a6d; font-weight: 700;
  padding: .9rem 1.1rem; border-radius: var(--r-sm);
}
.form-success.show { display: flex; animation: fadeUp .4s var(--ease); }

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-card { background: var(--white); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: 1.05rem; display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.info-card .ic { width: 40px; height: 40px; border-radius: var(--r-sm); display: grid; place-items: center; background: var(--coral-tint); color: var(--coral); flex: none; }
.info-card:nth-child(2) .ic { background: var(--blue-tint); color: var(--blue); }
.info-card:nth-child(3) .ic { background: var(--teal-tint); color: var(--teal); }
.info-card .ic svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.info-card p, .info-card a { color: var(--ink-soft); }
.info-card a:hover { color: var(--coral); }

/* FAQ accordion */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { background: var(--white); border-radius: var(--r-md); box-shadow: var(--shadow-sm); margin-bottom: .9rem; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; border: none; background: none; cursor: pointer;
  padding: 1.2rem 1.4rem; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-q .plus { flex: none; width: 28px; height: 28px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--coral);
  border-radius: 2px; transition: transform .3s var(--spring);
}
.faq-q .plus::before { width: 16px; height: 3px; transform: translate(-50%,-50%); }
.faq-q .plus::after { width: 3px; height: 16px; transform: translate(-50%,-50%); }
.faq-q[aria-expanded="true"] .plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal { max-width: 820px; margin-inline: auto; }
.legal .updated {
  display: inline-block; background: var(--yellow-tint); color: var(--ink);
  font-weight: 700; font-size: .85rem; padding: .4rem .9rem; border-radius: var(--r-pill); margin-bottom: 2rem;
}
.legal h2 { font-size: 1.5rem; margin: 2.2rem 0 .8rem; padding-top: 1rem; }
.legal h3 { font-size: 1.15rem; margin: 1.4rem 0 .5rem; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: .9rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; }
.legal li { margin-bottom: .4rem; }
.legal a { color: var(--blue); font-weight: 700; text-decoration: underline; }
.legal .toc {
  background: var(--white); border-radius: var(--r-md); padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm); margin-bottom: 2.5rem;
}
.legal .toc h2 { margin: 0 0 .8rem; padding: 0; font-size: 1.1rem; }
.legal .toc ul { list-style: none; padding: 0; columns: 2; }
.legal .toc a { text-decoration: none; font-weight: 600; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
[data-reveal] {
  opacity: 0; transform: translateY(28px) scale(.97);
  transition: opacity .7s var(--ease), transform .7s var(--spring);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .40s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .primary-nav { display: none; }
  .hamburger { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 440px; margin-inline: auto; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle { grid-template-columns: 1fr; }
  .lifestyle-media { min-height: 260px; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .story-media { max-width: 460px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .legal .toc ul { columns: 1; }
  .hero-copy h1 .hl { white-space: normal; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}
