/* ============================================================
   PET FUNK — STYLE.CSS
   A small e-commerce site for hand-drawn pet merch.
   Two-colour palette + neutral grounds. Voice-led. Mobile-first.
   ============================================================ */

:root {
  /* PALETTE — coral + sky on cream */
  --coral:        #F25C3D;     /* primary accent: tomato/coral red */
  --coral-deep:   #D54620;     /* hover state, links */
  --coral-soft:   #FFC2B0;     /* tinted backgrounds */

  --sky:          #A4C8E1;     /* secondary accent: pale sky blue */
  --sky-deep:     #6FA0C0;     /* darker sky for contrast */
  --sky-soft:     #DDEBF5;     /* tinted sky background */

  --butter:       #FFE9A8;     /* tertiary tint, used sparingly */

  --cream:        #FFF6E8;     /* primary ground */
  --cream-deep:   #F8EDD5;     /* secondary ground for sections */
  --ink:          #1F1A14;     /* primary text, deep warm near-black */
  --ink-soft:     #4A3F2E;     /* body text, slightly lighter */
  --ink-muted:    #8E8576;     /* muted, captions */

  --rule:         #2A2218;     /* dark hairlines on cream */
  --rule-soft:    #E0D6BC;     /* soft dividers on cream */

  /* TYPE */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Switzer', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', Menlo, monospace;

  /* MOTION */
  --quick:    180ms;
  --base:     280ms;
  --slow:     440ms;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
  --bounce:   cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* LAYOUT */
  --container:        1240px;
  --container-narrow: 760px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* TYPE SCALE */
  --t-display:  clamp(3rem,    8vw + 0.5rem, 7rem);
  --t-h1:       clamp(2.5rem,  6vw + 0.5rem, 5.5rem);
  --t-h2:       clamp(2rem,    4.5vw + 0.5rem, 3.75rem);
  --t-h3:       clamp(1.5rem,  2.5vw + 0.5rem, 2.25rem);
  --t-h4:       clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem);
  --t-lead:     clamp(1.125rem, 0.5vw + 1rem, 1.375rem);
  --t-body:     clamp(1rem, 0.25vw + 0.95rem, 1.0625rem);
  --t-small:    clamp(0.875rem, 0.125vw + 0.85rem, 0.9375rem);
  --t-caption:  clamp(0.6875rem, 0.125vw + 0.625rem, 0.75rem);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  font-feature-settings: "ss01";
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.02em;
}
em {
  font-style: italic;
  font-variation-settings: "WONK" 1;
}
p { margin: 0; }

::selection { background: var(--coral); color: var(--cream); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 1000;
  font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

/* ============================================================
   TYPE PRIMITIVES
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--t-caption);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.eyebrow--coral { color: var(--coral); }
.eyebrow--blue  { color: var(--sky-deep); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: var(--ink);
  color: var(--cream);
  padding: 0.625rem 0;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.announce__track {
  display: inline-flex;
  gap: 1.5rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.announce span { display: inline-flex; align-items: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--cream);
  border-bottom: 1px solid var(--rule-soft);
  transition: transform var(--base) var(--ease);
}
.site-header.is-hidden { transform: translateY(-100%); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 72px;
}
@media (max-width: 1023px) { .header__inner { height: 60px; } }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-variation-settings: "opsz" 24, "WONK" 1;
  font-size: 1.625rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.wordmark__paw {
  width: 32px;
  height: 32px;
  background: var(--coral);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: transform var(--base) var(--bounce);
}
.wordmark__paw svg { width: 18px; height: 18px; }
.wordmark:hover .wordmark__paw {
  transform: rotate(-12deg) scale(1.05);
}

.site-nav { flex: 1; display: flex; justify-content: center; }
.site-nav ul { display: flex; gap: 2rem; }
.site-nav a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  position: relative;
  white-space: nowrap;
  padding: 0.25rem 0;
  transition: color var(--quick);
}
.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--base) var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); }
@media (max-width: 1023px) { .site-nav { display: none; } }

.header__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
@media (max-width: 1023px) { .header__right { margin-left: auto; margin-right: 1rem; } }

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: var(--cream-deep);
  border: 1px solid var(--rule-soft);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
  transition: background var(--quick), border-color var(--quick);
}
.cart-button:hover {
  background: var(--butter);
  border-color: var(--ink);
}
.cart-button svg { width: 18px; height: 18px; }
.cart-button__count {
  background: var(--coral);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.125rem;
  transition: transform var(--base) var(--bounce);
}
.cart-button.is-pulse .cart-button__count {
  transform: scale(1.4);
}

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 6px;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--base) var(--ease);
}
.hamburger span:nth-child(1) { top: 11px; }
.hamburger span:nth-child(2) { top: 19px; }
@media (max-width: 1023px) { .hamburger { display: block; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 100px;
  transition: transform var(--base) var(--ease),
              background var(--quick),
              color var(--quick);
}
.btn--coral {
  background: var(--coral);
  color: var(--cream);
}
.btn--coral:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn--lg {
  padding: 1.25rem 2.25rem;
  font-size: 1.125rem;
}
.btn--full { width: 100%; justify-content: center; }
.arrow {
  display: inline-block;
  transition: transform var(--base) var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }
.btn__num {
  font-family: var(--font-mono);
  font-size: 0.875em;
  opacity: 0.85;
  margin-left: 0.5rem;
  padding-left: 0.75rem;
  border-left: 1px solid currentColor;
  border-color: rgba(255, 246, 232, 0.4);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(4rem, 8vw, 8rem);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
}

.hero__h1 {
  font-size: var(--t-h1);
  font-variation-settings: "opsz" 144, "wght" 600, "WONK" 0;
  margin: 0 0 1.5rem;
  letter-spacing: -0.025em;
}
.hero__h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "wght" 500, "WONK" 1;
  color: var(--coral);
}

.hero__lead {
  font-size: var(--t-lead);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 0 2rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  font-family: var(--font-mono);
}
.hero__trust strong {
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-mono);
}
.hero__trust-sep {
  color: var(--coral);
}

.hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
  align-self: center;
  justify-self: center;
}
@media (max-width: 900px) {
  .hero__visual {
    max-width: 320px;
    margin-top: 1rem;
  }
}

.hero__sticker {
  position: absolute;
  border-radius: 50%;
  filter: drop-shadow(0 12px 24px rgba(31, 26, 20, 0.18));
  transition: transform var(--slow) var(--ease);
}
.hero__sticker--cat {
  width: 60%;
  top: 8%;
  right: 4%;
  transform: rotate(-6deg);
  z-index: 3;
  animation: float-1 6s ease-in-out infinite;
}
.hero__sticker--paw {
  width: 42%;
  bottom: 12%;
  left: 4%;
  transform: rotate(10deg);
  z-index: 2;
  animation: float-2 7s ease-in-out infinite;
}
.hero__sticker--bone {
  width: 56%;
  border-radius: 60px;
  bottom: 4%;
  right: 12%;
  transform: rotate(-8deg);
  z-index: 1;
  animation: float-3 5s ease-in-out infinite;
}
.hero__sticker--bone svg { aspect-ratio: 2/1; }

@keyframes float-1 {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(-4deg) translateY(-8px); }
}
@keyframes float-2 {
  0%, 100% { transform: rotate(10deg) translateY(0); }
  50%      { transform: rotate(12deg) translateY(-6px); }
}
@keyframes float-3 {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%      { transform: rotate(-10deg) translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__sticker { animation: none !important; }
}

/* ============================================================
   WHAT WE MAKE
   ============================================================ */
.what {
  background: var(--cream-deep);
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.what__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .what__grid { grid-template-columns: 1fr; gap: 1rem; }
}

.what__card {
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: 2rem;
  position: relative;
  transition: transform var(--base) var(--ease);
}
.what__card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
}
.what__card::before {
  content: "";
  position: absolute;
  inset: 6px -6px -6px 6px;
  background: var(--ink);
  z-index: -1;
  transition: inset var(--base) var(--ease);
}
.what__card:hover::before {
  inset: 8px -8px -8px 8px;
}
.what__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}
.what__h {
  font-size: var(--t-h3);
  margin-bottom: 0.5rem;
  font-variation-settings: "opsz" 60, "WONK" 1;
}
.what__price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--coral);
  margin-bottom: 1rem;
}
.what__desc {
  font-size: var(--t-small);
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee {
  background: var(--coral);
  color: var(--cream);
  padding: 1.25rem 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "WONK" 1;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 500;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee__dot {
  display: inline-flex;
  font-size: 0.5em;
  opacity: 0.7;
  font-style: normal;
}

/* ============================================================
   SHOP
   ============================================================ */
.shop {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.shop__head {
  max-width: 720px;
  margin-bottom: 3rem;
}
.shop__h {
  font-size: var(--t-h2);
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 96, "WONK" 0;
}
.shop__h em {
  font-style: italic;
  font-variation-settings: "opsz" 96, "WONK" 1;
  color: var(--coral);
}
.shop__lead {
  font-size: var(--t-lead);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule-soft);
}
.filter {
  padding: 0.625rem 1.125rem;
  background: var(--cream-deep);
  border: 1.5px solid var(--rule-soft);
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--ink-soft);
  transition: all var(--quick);
}
.filter:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.filter.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

/* PRODUCTS GRID */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) { .products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .products { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 460px)  { .products { grid-template-columns: 1fr; } }

.product {
  background: var(--cream);
  border: 1.5px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: transform var(--base) var(--ease),
              border-color var(--base) var(--ease);
}
.product:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}
.product__image {
  aspect-ratio: 1 / 1;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.product__image svg {
  width: 100%;
  height: 100%;
  transition: transform var(--slow) var(--ease);
}
.product:hover .product__image svg {
  transform: scale(1.05) rotate(-2deg);
}
.product__index {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--cream);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  z-index: 2;
}
.product__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--coral);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}
.product__body {
  padding: 1rem 1.125rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product__type {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 0.375rem;
}
.product__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 36, "WONK" 1;
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.625rem;
  flex-grow: 1;
}
.product__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.product__price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.product__add {
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--quick) var(--bounce),
              background var(--quick);
  flex-shrink: 0;
}
.product__add svg { width: 16px; height: 16px; }
.product:hover .product__add {
  background: var(--coral);
  transform: rotate(90deg);
}
.product.is-hidden { display: none; }

/* ============================================================
   STORY
   ============================================================ */
.story {
  background: var(--sky-soft);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.story__h {
  font-size: var(--t-h2);
  margin-bottom: 2.5rem;
  max-width: 18ch;
}
.story__h em {
  font-style: italic;
  color: var(--coral);
  font-variation-settings: "WONK" 1;
}
.story__prose p {
  font-size: var(--t-lead);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  max-width: 60ch;
}
.story__prose p:last-child { margin-bottom: 0; }

.pullquote {
  margin: 4rem 0 0;
  padding: 0 0 0 1.5rem;
  border-left: 4px solid var(--coral);
  max-width: 32ch;
}
.pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 72, "WONK" 1;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 1rem;
}
.pullquote footer {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--ink-muted);
  font-style: normal;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.how .eyebrow--coral { color: var(--coral); }
.how__h {
  font-size: var(--t-h2);
  color: var(--cream);
  margin-bottom: 3rem;
  max-width: 16ch;
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 900px) {
  .how__grid { grid-template-columns: 1fr; }
}

.how__step {
  padding: 2rem 1.5rem 2rem 0;
  border-right: 1px solid rgba(255, 246, 232, 0.15);
  position: relative;
}
.how__step:last-child { border-right: 0; }
@media (max-width: 900px) {
  .how__step {
    padding: 1.75rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 246, 232, 0.15);
  }
  .how__step:last-child { border-bottom: 0; }
}
.how__step:nth-child(n+2) { padding-left: 1.5rem; }
@media (max-width: 900px) {
  .how__step:nth-child(n+2) { padding-left: 0; }
}

.how__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "WONK" 1;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--coral);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.how__step-h {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 36;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.how__step p {
  font-size: 0.9375rem;
  color: rgba(255, 246, 232, 0.75);
  line-height: 1.55;
}

/* ============================================================
   FEED
   ============================================================ */
.feed {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream-deep);
}
.feed__head {
  max-width: 720px;
  margin-bottom: 3rem;
}
.feed__h {
  font-size: var(--t-h2);
  margin-bottom: 1.5rem;
}
.feed__h em {
  font-style: italic;
  color: var(--coral);
  font-variation-settings: "WONK" 1;
}
.feed__lead {
  font-size: var(--t-lead);
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  max-width: 56ch;
}
.feed__link {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--coral);
  border-bottom: 2px solid var(--coral);
  padding-bottom: 0.125rem;
  transition: color var(--quick);
}
.feed__link:hover { color: var(--coral-deep); }

.feed__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}
@media (max-width: 1023px) { .feed__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .feed__grid { grid-template-columns: repeat(2, 1fr); } }

.feed__cell {
  aspect-ratio: 1 / 1;
  background: var(--cream);
  border: 1.5px solid var(--rule-soft);
  position: relative;
  overflow: hidden;
  transition: transform var(--base) var(--ease),
              border-color var(--base) var(--ease);
}
.feed__cell:hover {
  transform: scale(1.03);
  border-color: var(--ink);
  z-index: 2;
}
.feed__cell svg, .feed__cell .feed__placeholder {
  width: 100%;
  height: 100%;
}
.feed__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "WONK" 1;
  font-size: 1.25rem;
  text-align: center;
  padding: 1rem;
  color: var(--ink);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.faq__h {
  font-size: var(--t-h2);
  margin-bottom: 3rem;
}
.faq__h em {
  font-style: italic;
  color: var(--coral);
  font-variation-settings: "WONK" 1;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  border-top: 1px solid var(--rule-soft);
}
@media (max-width: 768px) {
  .faq__grid { grid-template-columns: 1fr; column-gap: 0; }
}

.faq__item {
  border-bottom: 1px solid var(--rule-soft);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 36, "WONK" 1;
  font-size: clamp(1.0625rem, 1vw + 0.5rem, 1.25rem);
  line-height: 1.3;
  color: var(--ink);
  transition: color var(--quick);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--coral); }
.faq__plus {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--coral);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--base) var(--bounce);
}
.faq__item[open] .faq__plus {
  transform: rotate(45deg);
}
.faq__a {
  padding: 0 0 1.5rem;
  max-width: 50ch;
}
.faq__a p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
.contact {
  background: var(--coral);
  color: var(--cream);
  padding: clamp(5rem, 9vw, 9rem) 0 3rem;
}
.contact__h {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144;
  max-width: 18ch;
}
.contact__h em {
  font-style: italic;
  font-variation-settings: "WONK" 1;
  color: var(--butter);
}
.contact__lead {
  font-size: var(--t-lead);
  color: rgba(255, 246, 232, 0.92);
  max-width: 56ch;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}
.contact__ctas {
  margin-bottom: 5rem;
}
.contact .btn--coral {
  background: var(--ink);
  color: var(--cream);
}
.contact .btn--coral:hover {
  background: var(--cream);
  color: var(--ink);
}
.contact .btn__num {
  border-color: rgba(255, 246, 232, 0.35);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 246, 232, 0.2);
  text-align: left;
}
@media (max-width: 900px) {
  .footer-cols { grid-template-columns: 1fr; gap: 2.5rem; }
}
.footer-col {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 246, 232, 0.88);
}
.footer-col p { margin: 0 0 0.75rem; }
.footer-col__h {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--butter);
  margin-bottom: 1.25rem;
}
.footer-col__address {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: rgba(255, 246, 232, 0.72);
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(255, 246, 232, 0.88);
  border-bottom: 1px solid transparent;
  transition: border-color var(--quick), color var(--quick);
}
.footer-col a:hover {
  color: var(--cream);
  border-bottom-color: var(--butter);
}
.footer-col hr {
  border: 0;
  border-top: 1px solid rgba(255, 246, 232, 0.2);
  margin: 1rem 0;
}
.footer-col__small {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 246, 232, 0.65);
}
.footer-bottom {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: rgba(255, 246, 232, 0.55);
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}
.sep { opacity: 0.6; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 26, 20, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--base) var(--ease);
  z-index: 99;
}
.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform var(--slow) var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(31, 26, 20, 0.2);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--rule-soft);
}
.cart-drawer__head h3 {
  font-size: 1.5rem;
  font-variation-settings: "WONK" 1;
}
.cart-drawer__close {
  font-size: 2rem;
  line-height: 1;
  color: var(--ink-soft);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--quick);
}
.cart-drawer__close:hover {
  background: var(--cream-deep);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-drawer__empty {
  text-align: center;
  font-style: italic;
  color: var(--ink-muted);
  padding: 3rem 1rem;
  font-size: 1.0625rem;
  font-family: var(--font-display);
  font-variation-settings: "WONK" 1;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: center;
}
.cart-item__image {
  width: 64px;
  height: 64px;
  background: var(--cream-deep);
  border: 1px solid var(--rule-soft);
  overflow: hidden;
}
.cart-item__image svg { width: 100%; height: 100%; }
.cart-item__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 24, "WONK" 1;
  font-size: 0.9375rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 0.125rem;
}
.cart-item__price {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--ink-soft);
}
.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
}
.cart-item__qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  background: var(--cream);
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--quick), background var(--quick);
}
.cart-item__qty-btn:hover {
  border-color: var(--ink);
  background: var(--butter);
}
.cart-item__qty {
  font-weight: 600;
  min-width: 18px;
  text-align: center;
}

.cart-drawer__foot {
  padding: 1.5rem;
  border-top: 2px solid var(--ink);
  background: var(--cream-deep);
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}
.cart-drawer__total strong {
  font-family: var(--font-mono);
  font-size: 1.625rem;
  color: var(--ink);
}
.cart-drawer__shipping {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
.cart-drawer__shipping.is-free {
  color: var(--coral-deep);
  font-weight: 600;
}
.cart-drawer__note {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "WONK" 1;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 0.75rem;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--base) var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2.5rem;
  color: var(--ink);
  line-height: 1;
  width: 44px;
  height: 44px;
}
.mobile-menu nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 60, "WONK" 1;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--ink);
}
.mobile-menu nav a:hover { color: var(--coral); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
