/* ====================================================================
   HOPTA — pet food subscription HTML template
   Maximalist warm-playful direction. Big, bold, friendly, sunny.
   Tokenized via CSS custom properties — edit :root to retheme.
   ==================================================================== */

:root {
  /* palette */
  --sun: #ffc83a;            /* primary saturation — sunny yellow */
  --coral: #ff5236;          /* warm coral red — secondary energy */
  --berry: #b3185b;          /* deep berry — accent */
  --leaf: #1f7a4d;           /* fresh leaf green — ingredients */
  --ink: #181210;            /* near-black with warmth */
  --ink-soft: #3b2c26;       /* warm graphite */
  --cream: #fff7ea;          /* off-white surface */
  --cream-2: #fbe9c8;        /* warmer cream */
  --paper: #ffffff;
  --line: rgba(24,18,16,0.12);

  /* type */
  --display: 'Caprasimo', 'Recoleta', 'Cooper Black', Georgia, serif;
  --body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* scale */
  --t-mega: clamp(4rem, 2rem + 9vw, 11rem);
  --t-hero: clamp(2.6rem, 1.4rem + 4.6vw, 5.6rem);
  --t-h1: clamp(2.4rem, 1.6rem + 3.6vw, 4.8rem);
  --t-h2: clamp(1.8rem, 1.3rem + 2.2vw, 3rem);
  --t-h3: clamp(1.25rem, 1rem + 1vw, 1.6rem);
  --t-body: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  --t-small: 0.875rem;
  --t-mono: 0.78rem;

  /* spacing */
  --gutter: clamp(1.25rem, 1rem + 1vw, 2rem);
  --section-y: clamp(4rem, 3rem + 4vw, 7.5rem);

  /* radii */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 36px;
  --r-pill: 999px;

  /* shadow */
  --shadow-soft: 0 12px 40px -12px rgba(24,18,16,0.18);
  --shadow-lift: 0 24px 60px -20px rgba(24,18,16,0.28);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
strong { font-weight: 700; }

::selection { background: var(--sun); color: var(--ink); }

/* ============ TYPOGRAPHY ============ */
.display { font-family: var(--display); font-weight: 400; line-height: 0.92; letter-spacing: -0.01em; }
.mono { font-family: var(--mono); font-size: var(--t-mono); text-transform: uppercase; letter-spacing: 0.16em; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; }
p { margin: 0 0 0.75em; }

/* ============ LAYOUT ============ */
.wrap { width: min(1320px, 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
.flex { display: flex; }
.grid { display: grid; }

/* ============ NAV ============ */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.site-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 14px;
  gap: 24px;
}
.brand {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 8px;
}
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--coral);
  position: relative;
  display: inline-block;
}
.brand-mark::before, .brand-mark::after {
  content: ''; position: absolute; width: 12px; height: 14px;
  background: var(--coral); border-radius: 50% 50% 30% 30%;
  top: -8px;
}
.brand-mark::before { left: 4px; transform: rotate(-22deg); }
.brand-mark::after { right: 4px; transform: rotate(22deg); }
.brand-mark span {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 6px; background: var(--ink); border-radius: 50%;
  box-shadow: -10px 4px 0 var(--ink), 10px 4px 0 var(--ink);
}
.nav-list { display: flex; gap: 28px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-list a { font-weight: 600; font-size: 0.95rem; }
.nav-list a:hover { color: var(--coral); }
.nav-cta {
  background: var(--ink); color: var(--cream);
  padding: 12px 22px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 0.9rem;
  transition: transform .25s, background .25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--coral); transform: translateY(-2px); }
.nav-toggle { display: none; }
@media (max-width: 880px) {
  .nav-list { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 18px 24px; border-bottom: 2px solid var(--ink); }
  .nav-list.open { display: flex; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 2px solid var(--ink); border-radius: 50%; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--cream);
}
.hero-inner {
  position: relative;
  height: clamp(620px, 88vh, 900px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-bottom: 2px solid var(--ink);
}
.hero-text-col {
  position: relative;
  padding: 56px var(--gutter) 56px clamp(24px, 4vw, 72px);
  display: flex; flex-direction: column; justify-content: space-between;
  background:
    radial-gradient(circle at 20% 110%, var(--cream-2) 0%, transparent 55%),
    var(--cream);
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: var(--t-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}
.hero-eyebrow::before { content: ''; width: 36px; height: 2px; background: var(--coral); }
.hero-h1 {
  font-family: var(--display);
  font-size: var(--t-hero);
  line-height: 0.92;
  letter-spacing: -0.018em;
  margin-top: 24px;
  color: var(--ink);
}
.hero-h1 .swirl {
  display: inline-block;
  background: var(--sun);
  color: var(--ink);
  padding: 0 0.18em 0.06em;
  border-radius: 22px 60px 28px 56px / 60px 22px 56px 28px;
  transform: rotate(-3deg);
  margin-right: 6px;
  box-shadow: 8px 10px 0 var(--coral);
}
.hero-h1 .stamp {
  display: inline-block;
  border: 3px solid var(--ink);
  padding: 0 0.18em;
  transform: rotate(2deg);
  border-radius: 18px;
}
.hero-sub {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  max-width: 520px;
  margin-top: 28px;
  color: var(--ink-soft);
}
.hero-cta-row { display: flex; gap: 14px; margin-top: 36px; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 30px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.005em;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  border: 2px solid var(--ink);
}
.btn-primary {
  background: var(--coral);
  color: var(--cream);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-arrow { transition: transform .25s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.hero-meta {
  display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap;
}
.hero-meta-item { display: flex; flex-direction: column; }
.hero-meta-item b { font-family: var(--display); font-size: 2rem; line-height: 1; color: var(--ink); }
.hero-meta-item span { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }

.hero-image-col {
  position: relative;
  background: var(--coral);
  overflow: hidden;
}
.hero-image-col img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 30%;
}
.hero-blob {
  position: absolute;
  width: 260px; height: 260px;
  background: var(--sun);
  border-radius: 50% 38% 60% 42% / 50% 60% 38% 50%;
  bottom: -60px; left: -60px;
  z-index: 3;
  box-shadow: 8px 8px 0 var(--ink);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  transform: rotate(-12deg);
}
.hero-blob-text {
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.05;
  color: var(--ink);
  padding: 30px;
  transform: rotate(12deg);
}
.hero-blob-text b { display: block; font-size: 2.2rem; }

.hero-card {
  position: absolute;
  bottom: 36px; right: 28px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex; gap: 14px; align-items: center;
  box-shadow: var(--shadow-lift);
  max-width: 280px;
  z-index: 4;
}
.hero-card-emoji { font-size: 2rem; line-height: 1; }
.hero-card b { display: block; font-size: 0.95rem; }
.hero-card span { font-size: 0.78rem; color: var(--ink-soft); display: block; margin-top: 2px; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; height: auto; }
  .hero-image-col { height: 460px; order: 2; }
  .hero-card { right: 14px; bottom: 14px; max-width: 240px; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  border-block: 2px solid var(--ink);
  overflow: hidden;
  padding-block: 22px;
  position: relative;
}
.marquee-track {
  display: flex; gap: 56px; align-items: center;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: var(--display);
  font-size: clamp(1.6rem, 1rem + 1.6vw, 2.4rem);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-dot { width: 14px; height: 14px; background: var(--sun); border-radius: 50%; flex-shrink: 0; }
.marquee-dot.coral { background: var(--coral); }
.marquee-dot.leaf { background: var(--leaf); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============ ETHOS — bento ============ */
.ethos { background: var(--cream); }
.ethos-head {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
  align-items: end; margin-bottom: 56px;
}
.ethos-head h2 {
  font-family: var(--display);
  font-size: var(--t-h1);
  line-height: 0.95;
  color: var(--ink);
}
.ethos-head h2 em {
  font-style: normal;
  color: var(--coral);
  position: relative;
}
.ethos-head h2 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 8px; background: var(--sun); z-index: -1; border-radius: 4px;
}
.ethos-head p {
  font-size: 1.15rem; color: var(--ink-soft); max-width: 460px;
}
.ethos-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 20px;
}
.ethos-card {
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--paper);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.ethos-card:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--ink); }
.ethos-card h3 {
  font-family: var(--display); font-size: 1.7rem; line-height: 1; color: var(--ink);
}
.ethos-card p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 8px; }
.ethos-card-num {
  font-family: var(--mono); font-size: var(--t-mono); color: var(--ink-soft);
}
.ethos-card-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--sun); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }

.ethos-grid > .ethos-card:nth-child(1) { grid-column: span 4; background: var(--sun); }
.ethos-grid > .ethos-card:nth-child(2) { grid-column: span 4; background: var(--cream); }
.ethos-grid > .ethos-card:nth-child(3) { grid-column: span 4; background: var(--coral); color: var(--cream); }
.ethos-grid > .ethos-card:nth-child(3) p { color: var(--cream); opacity: .85; }
.ethos-grid > .ethos-card:nth-child(3) .ethos-card-num { color: var(--cream); opacity: .8; }
.ethos-grid > .ethos-card:nth-child(3) .ethos-card-icon { background: var(--cream); }
.ethos-grid > .ethos-card:nth-child(4) { grid-column: span 6; background: var(--leaf); color: var(--cream); }
.ethos-grid > .ethos-card:nth-child(4) p { color: var(--cream); opacity: .9; }
.ethos-grid > .ethos-card:nth-child(4) .ethos-card-num { color: var(--cream); opacity: .8; }
.ethos-grid > .ethos-card:nth-child(4) .ethos-card-icon { background: var(--sun); }
.ethos-grid > .ethos-card:nth-child(5) { grid-column: span 6; background: var(--berry); color: var(--cream); }
.ethos-grid > .ethos-card:nth-child(5) p { color: var(--cream); opacity: .85; }
.ethos-grid > .ethos-card:nth-child(5) .ethos-card-num { color: var(--cream); opacity: .8; }
.ethos-grid > .ethos-card:nth-child(5) .ethos-card-icon { background: var(--sun); }

@media (max-width: 880px) {
  .ethos-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .ethos-grid > .ethos-card { grid-column: span 12 !important; }
}

/* ============ PRODUCT BOXES ============ */
.boxes { background: var(--cream-2); }
.boxes-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: end; margin-bottom: 48px; }
.boxes-head h2 { font-family: var(--display); font-size: var(--t-h1); line-height: 0.95; }
.boxes-head .mono { color: var(--ink-soft); }
.boxes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.box-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.box-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.box-card-img { height: 240px; background: var(--cream); position: relative; overflow: hidden; }
.box-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.box-card:hover .box-card-img img { transform: scale(1.06); }
.box-card-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--ink); color: var(--cream);
  padding: 6px 14px; border-radius: var(--r-pill);
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.box-card-tag.sun { background: var(--sun); color: var(--ink); }
.box-card-tag.coral { background: var(--coral); color: var(--cream); }
.box-card-body { padding: 26px; flex-grow: 1; display: flex; flex-direction: column; }
.box-card-name { font-family: var(--display); font-size: 1.85rem; line-height: 1; }
.box-card-desc { color: var(--ink-soft); margin-top: 10px; flex-grow: 1; font-size: 0.95rem; }
.box-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 22px; border-top: 1px dashed var(--line); }
.box-card-price { font-family: var(--display); font-size: 1.6rem; }
.box-card-price small { font-family: var(--body); font-size: 0.78rem; color: var(--ink-soft); margin-left: 4px; }
.box-card-buy { background: var(--ink); color: var(--cream); padding: 10px 18px; border-radius: var(--r-pill); font-weight: 600; font-size: 0.85rem; transition: background .25s; }
.box-card-buy:hover { background: var(--coral); }
@media (max-width: 880px) { .boxes-grid { grid-template-columns: 1fr; } .boxes-head { grid-template-columns: 1fr; gap: 16px; } }

/* ============ HOW IT WORKS ============ */
.how { background: var(--ink); color: var(--cream); }
.how-head { text-align: center; margin-bottom: 64px; }
.how-head h2 { font-family: var(--display); font-size: var(--t-h1); line-height: 0.95; max-width: 800px; margin: 14px auto 0; }
.how-head h2 em { font-style: normal; color: var(--sun); }
.how-head .mono { color: var(--cream); opacity: 0.7; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.how-step {
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px 18px;
  border: 2px dashed rgba(255,247,234,0.2);
  border-radius: var(--r-lg);
  transition: border-color .3s, background .3s;
  position: relative;
}
.how-step:hover { border-color: var(--sun); background: rgba(255,200,58,0.05); }
.how-step-num {
  font-family: var(--display); font-size: 4.5rem; line-height: 0.85; color: var(--sun);
}
.how-step h3 { font-family: var(--display); font-size: 1.6rem; line-height: 1; }
.how-step p { color: rgba(255,247,234,0.7); font-size: 0.95rem; }
@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .how-grid { grid-template-columns: 1fr; } }

/* ============ INGREDIENTS ============ */
.ingredients { background: var(--leaf); color: var(--cream); position: relative; overflow: hidden; }
.ingredients::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, var(--sun) 0%, transparent 60%); opacity: 0.4;
  pointer-events: none;
}
.ing-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.ing-text h2 { font-family: var(--display); font-size: var(--t-h1); line-height: 0.95; }
.ing-text h2 em { font-style: normal; color: var(--sun); }
.ing-text p { color: rgba(255,247,234,0.85); font-size: 1.1rem; max-width: 480px; margin-top: 18px; }
.ing-list { list-style: none; padding: 0; margin: 36px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ing-list li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-pill);
}
.ing-list li::before { content: '✓'; width: 24px; height: 24px; background: var(--sun); color: var(--ink); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.ing-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 110px);
  gap: 16px;
}
.ing-photos div {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px solid var(--cream);
  transition: transform .35s;
}
.ing-photos div:hover { transform: translateY(-4px); }
.ing-photos img { width: 100%; height: 100%; object-fit: cover; }
.ing-photos div:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.ing-photos div:nth-child(2) { grid-column: 2; grid-row: 1; }
.ing-photos div:nth-child(3) { grid-column: 3; grid-row: 1 / span 2; }
.ing-photos div:nth-child(4) { grid-column: 2; grid-row: 2 / span 2; }
.ing-photos div:nth-child(5) { grid-column: 1; grid-row: 3; }
.ing-photos div:nth-child(6) { grid-column: 3; grid-row: 3; }
@media (max-width: 880px) { .ing-grid { grid-template-columns: 1fr; gap: 36px; } .ing-photos { grid-template-rows: repeat(3, 90px); } .ing-list { grid-template-columns: 1fr; } }

/* ============ TESTIMONIALS ============ */
.voices { background: var(--cream); }
.voices-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; flex-wrap: wrap; gap: 24px; }
.voices-head h2 { font-family: var(--display); font-size: var(--t-h1); line-height: 0.95; max-width: 600px; }
.voices-head h2 em { font-style: normal; color: var(--berry); }
.voices-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.voice {
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.voice-quote { font-family: var(--display); font-size: 1.6rem; line-height: 1.15; }
.voice:nth-child(1) { background: var(--sun); }
.voice:nth-child(1) .voice-quote { font-size: 2rem; }
.voice:nth-child(2) { background: var(--cream); }
.voice:nth-child(3) { background: var(--berry); color: var(--cream); }
.voice:nth-child(3) .voice-tag { background: var(--cream); color: var(--ink); }
.voice-foot { display: flex; align-items: center; gap: 14px; margin-top: 36px; }
.voice-avatar { width: 54px; height: 54px; border-radius: 50%; overflow: hidden; border: 2px solid var(--ink); flex-shrink: 0; }
.voice-avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice-name { font-weight: 700; }
.voice-pet { font-size: 0.85rem; opacity: 0.8; margin-top: 2px; }
.voice-tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--ink); color: var(--cream);
  padding: 4px 12px; border-radius: var(--r-pill);
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
}
@media (max-width: 980px) { .voices-grid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq { background: var(--sun); }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-head h2 { font-family: var(--display); font-size: var(--t-h1); line-height: 0.95; max-width: 700px; margin: 14px auto 0; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .25s;
}
.faq-item:hover { transform: translateX(4px); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  font-weight: 700;
  text-align: left;
  font-size: 1.05rem;
}
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--coral); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--ink); }
.faq-a { padding: 0 26px 24px; color: var(--ink-soft); font-size: 0.98rem; display: none; }
.faq-item.open .faq-a { display: block; }

/* ============ FOOTER CTA ============ */
.cta {
  background: var(--coral);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; left: -120px; top: -120px;
  width: 360px; height: 360px;
  background: var(--sun); border-radius: 50% 60% 38% 50% / 60% 50% 50% 38%;
  z-index: 0; opacity: 0.35;
}
.cta::after {
  content: ''; position: absolute; right: -160px; bottom: -160px;
  width: 460px; height: 460px;
  background: var(--berry); border-radius: 50%;
  z-index: 0; opacity: 0.35;
}
.cta-inner { position: relative; z-index: 2; text-align: center; padding-block: 24px; }
.cta h2 { font-family: var(--display); font-size: var(--t-mega); line-height: 0.85; margin-bottom: 28px; }
.cta h2 .ring { border: 4px solid var(--cream); border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%; padding: 0 0.18em; display: inline-block; transform: rotate(-3deg); }
.cta p { font-size: 1.2rem; max-width: 560px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn-primary { background: var(--ink); color: var(--cream); border-color: var(--cream); box-shadow: 6px 6px 0 var(--cream); }
.cta .btn-primary:hover { box-shadow: 10px 10px 0 var(--cream); }
.cta .btn-ghost { color: var(--cream); border-color: var(--cream); }
.cta .btn-ghost:hover { background: var(--cream); color: var(--ink); }

/* ============ FOOTER ============ */
footer.site-foot {
  background: var(--ink);
  color: var(--cream);
  padding-block: 64px 28px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.foot-col h4 { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.6; margin-bottom: 16px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 0.95rem; opacity: 0.85; transition: color .25s; }
.foot-col a:hover { color: var(--sun); opacity: 1; }
.foot-brand { font-family: var(--display); font-size: 3rem; line-height: 0.9; margin-bottom: 12px; }
.foot-brand-tag { font-size: 0.95rem; opacity: 0.7; max-width: 320px; line-height: 1.5; }
.foot-bottom { border-top: 1px solid rgba(255,247,234,0.15); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.82rem; opacity: 0.7; }
.foot-bottom a:hover { color: var(--sun); opacity: 1; }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }

/* ============ PAGE-HEADER (subpages) ============ */
.page-header {
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
  padding-block: clamp(60px, 4vw + 40px, 110px);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px;
  background: var(--sun); border-radius: 50% 60% 40% 50% / 60% 40% 60% 40%;
  z-index: 0; box-shadow: 8px 8px 0 var(--coral);
}
.page-header-inner { position: relative; z-index: 2; }
.page-header .mono { color: var(--ink-soft); }
.page-header h1 { font-family: var(--display); font-size: var(--t-hero); line-height: 0.92; margin: 14px 0 18px; max-width: 880px; }
.page-header h1 em { font-style: normal; color: var(--coral); }
.page-header p { font-size: 1.2rem; max-width: 580px; color: var(--ink-soft); }

/* ============ SHOP PAGE ============ */
.shop-filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; align-items: center; }
.shop-filters .mono { color: var(--ink-soft); margin-right: 12px; }
.shop-filter-btn {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 2px solid var(--ink);
  background: transparent;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all .25s;
}
.shop-filter-btn:hover, .shop-filter-btn.active { background: var(--ink); color: var(--cream); }

/* ============ CONTACT PAGE ============ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.contact-form { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-lg); padding: 36px; box-shadow: 8px 8px 0 var(--ink); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--ink); border-radius: var(--r-md);
  font-family: var(--body); font-size: 1rem;
  background: var(--cream); color: var(--ink);
  transition: background .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; background: var(--sun); }
.field textarea { resize: vertical; min-height: 130px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info h3 { font-family: var(--display); font-size: 1.6rem; line-height: 1; }
.contact-block {
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 24px;
  background: var(--paper);
}
.contact-block:nth-child(1) { background: var(--sun); }
.contact-block:nth-child(3) { background: var(--leaf); color: var(--cream); }
.contact-block:nth-child(3) p { color: rgba(255,247,234,0.85); }
.contact-block .mono { color: inherit; opacity: 0.7; margin-bottom: 8px; display: block; }
.contact-block p { font-size: 0.98rem; margin-bottom: 4px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============ REVEAL ============ */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
[data-reveal].in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============ A11Y / FOCUS ============ */
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 4px; }
