/* ==========================================================================
   Sunny Guide — Candy Store
   Design tokens
   ========================================================================== */

:root {
  /* Color */
  --cream:        #FFF6E6;   /* warm sunlit base */
  --cream-deep:    #FFECC7;   /* slightly deeper cream for section bands */
  --paper:        #FFFDF9;   /* card surface */
  --ink:          #3A2317;   /* warm cocoa-brown, used instead of pure black */
  --ink-soft:     #6B5142;   /* muted brown for secondary text */
  --sun:          #FFC53D;   /* marigold yellow — primary */
  --sun-deep:     #F2A400;
  --tangerine:    #FF7A3D;   /* orange — secondary / CTA */
  --tangerine-deep:#E85F22;
  --coral:        #FF4F6D;   /* pink-coral — accent / pop */
  --coral-deep:   #E23258;
  --grape:        #6E3FA3;   /* plum — contrast accent, used sparingly */
  --grape-deep:   #5A2F87;
  --line:         rgba(58, 35, 23, 0.14);
  --shadow-ink:   rgba(58, 35, 23, 0.18);

  /* Type */
  --font-display: "Baloo 2", "Segoe UI Rounded", "Nunito", sans-serif;
  --font-body:    "Nunito", "Segoe UI", sans-serif;

  /* Layout */
  --max-w: 1200px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.4em;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3vw + 1rem, 2.7rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 1vw + 1rem, 1.5rem); }

p { margin: 0 0 1em; max-width: 62ch; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

:focus-visible {
  outline: 3px solid var(--grape);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--tangerine);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(255, 122, 61, 0.65);
}
.btn-primary:hover { background: var(--tangerine-deep); }

.btn-secondary {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }

.btn-light {
  background: #fff;
  color: var(--coral-deep);
  box-shadow: 0 10px 24px -8px rgba(58,35,23,0.35);
}
.btn-light:hover { background: var(--sun); color: var(--ink); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 246, 230, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, var(--sun), var(--tangerine), var(--coral), var(--sun));
  box-shadow: inset 0 0 0 4px var(--paper);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover { background: var(--sun); }
.nav-links a.active { background: var(--ink); color: var(--cream); }

.nav-cta { margin-left: 6px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  overflow: hidden;
  padding: 64px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--coral-deep);
}

.hero-eyebrow-row .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,79,109,0.18);
}

.hero p.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-trust div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}
.hero-trust div span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-blob {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-blob svg { width: 100%; height: 100%; }

.hero-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  border-radius: var(--radius-lg);
  border: 3px dashed var(--tangerine-deep);
  background: repeating-linear-gradient(
    135deg,
    rgba(255,197,61,0.35),
    rgba(255,197,61,0.35) 14px,
    rgba(255,122,61,0.25) 14px,
    rgba(255,122,61,0.25) 28px
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  color: var(--tangerine-deep);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 24px;
  animation: bob 5s ease-in-out infinite;
  transform: rotate(-2deg);
}
.hero-placeholder img {
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

@keyframes bob {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-10px); }
}

.hero-sticker {
  position: absolute;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 24px -8px var(--shadow-ink);
}

.sticker-1 {
  top: -6px; right: 6%;
  width: 108px; height: 108px;
  background: var(--sun);
  color: var(--ink);
  transform: rotate(10deg);
  font-size: 0.9rem;
  line-height: 1.15;
  padding: 8px;
}

.sticker-2 {
  bottom: 4%; left: -4%;
  width: 92px; height: 92px;
  background: var(--coral);
  color: #fff;
  transform: rotate(-8deg);
  font-size: 0.85rem;
  padding: 6px;
}

/* ==========================================================================
   Section headers
   ========================================================================== */

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

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

.section-pad { padding: 84px 0; }
.section-pad-sm { padding: 56px 0; }

.band-cream-deep { background: var(--cream-deep); }
.band-ink { background: var(--ink); color: var(--cream); }
.band-ink h2, .band-ink h3 { color: var(--cream); }
.band-ink p { color: rgba(255,246,230,0.78); }

/* Scalloped divider between bands, like a wrapper edge */
.scallop-top {
  position: relative;
}
.scallop-top::before {
  content: "";
  display: block;
  height: 22px;
  width: 100%;
  background-image: radial-gradient(circle at 10px 0, transparent 11px, var(--cream-deep) 11.5px);
  background-size: 22px 22px;
  background-repeat: repeat-x;
  transform: translateY(-1px);
}

/* ==========================================================================
   Category cards
   ========================================================================== */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--line);
}

.cat-card:hover { transform: translateY(-6px); }

.cat-thumb {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(58,35,23,0.55);
  font-size: 0.95rem;
  text-align: center;
  padding: 28px;
  position: relative;
}

.cat-thumb img {
  width: 62%;
  height: auto;
  filter: drop-shadow(0 10px 14px rgba(58,35,23,0.18));
  transition: transform 0.2s ease;
}

.cat-card:hover .cat-thumb img { transform: scale(1.05); }

.cat-card.c1 { box-shadow: 0 14px 28px -14px rgba(242,164,0,0.55); }
.cat-card.c1 .cat-thumb { background: linear-gradient(160deg, #FFE49A, #FFC53D); }
.cat-card.c2 { box-shadow: 0 14px 28px -14px rgba(232,95,34,0.5); }
.cat-card.c2 .cat-thumb { background: linear-gradient(160deg, #FFB88A, #FF7A3D); }
.cat-card.c3 { box-shadow: 0 14px 28px -14px rgba(226,50,88,0.5); }
.cat-card.c3 .cat-thumb { background: linear-gradient(160deg, #FF93A6, #FF4F6D); }
.cat-card.c4 { box-shadow: 0 14px 28px -14px rgba(90,47,135,0.45); }
.cat-card.c4 .cat-thumb { background: linear-gradient(160deg, #C7A6E8, #6E3FA3); color: rgba(255,255,255,0.85); }
.cat-card.c5 { box-shadow: 0 14px 28px -14px rgba(242,164,0,0.55); }
.cat-card.c5 .cat-thumb { background: linear-gradient(160deg, #FFD27A, #FF9F3D); }
.cat-card.c6 { box-shadow: 0 14px 28px -14px rgba(226,50,88,0.5); }
.cat-card.c6 .cat-thumb { background: linear-gradient(160deg, #FFC1CE, #FF6E86); }

.cat-body { padding: 20px 22px 24px; }
.cat-body h3 { margin-bottom: 6px; }
.cat-body p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 12px; }
.cat-count {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--cream-deep);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ==========================================================================
   Product / featured cards
   ========================================================================== */

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

.product-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.product-card:hover { transform: translateY(-5px); }

.product-thumb {
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-thumb img {
  width: 66%;
  height: auto;
  filter: drop-shadow(0 8px 12px rgba(58,35,23,0.16));
  transition: transform 0.2s ease;
}

.product-card:hover .product-thumb img { transform: scale(1.06); }

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.product-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 1.08rem; margin-bottom: 4px; }
.product-body p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 14px; }

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--tangerine-deep);
}

.price-note { font-size: 0.75rem; color: var(--ink-soft); font-weight: 600; display:block; }

.pill-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  border: 2px solid var(--ink);
  background: none;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.pill-btn:hover { background: var(--ink); color: var(--cream); }
.pill-btn.saved { background: var(--coral); border-color: var(--coral); color: #fff; }

/* candy-jar swatch thumbnails used when no real image */
.swatch-a { background: linear-gradient(160deg,#FFE49A,#FFC53D); }
.swatch-b { background: linear-gradient(160deg,#FFB88A,#FF7A3D); }
.swatch-c { background: linear-gradient(160deg,#FF93A6,#FF4F6D); }
.swatch-d { background: linear-gradient(160deg,#C7A6E8,#6E3FA3); }
.swatch-e { background: linear-gradient(160deg,#FFD27A,#FF9F3D); }
.swatch-f { background: linear-gradient(160deg,#FFC1CE,#FF6E86); }
.swatch-g { background: linear-gradient(160deg,#B9E1CF,#FFC53D); }
.swatch-h { background: linear-gradient(160deg,#FFE49A,#FF4F6D); }

.thumb-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(58,35,23,0.5);
  padding: 10px;
  text-align: center;
}

/* ==========================================================================
   Info / story split section
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split.reverse .split-media { order: 2; }

.split-media {
  border-radius: var(--radius-lg);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 340px;
}

.info-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-list .bead {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-top: 3px;
}

.info-list li:nth-child(1) .bead { background: var(--sun); }
.info-list li:nth-child(2) .bead { background: var(--tangerine); }
.info-list li:nth-child(3) .bead { background: var(--coral); }
.info-list li:nth-child(4) .bead { background: var(--grape); }

.info-list strong { display: block; font-family: var(--font-display); }
.info-list p { margin: 2px 0 0; font-size: 0.95rem; color: var(--ink-soft); }

/* ==========================================================================
   Stats strip
   ========================================================================== */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--sun);
}
.stats-strip span { font-size: 0.9rem; color: rgba(255,246,230,0.75); }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--line);
}

.testi-stars { color: var(--sun-deep); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; }
.testi-card p.quote { font-size: 1rem; color: var(--ink); margin-bottom: 16px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #fff;
}
.testi-who strong { display: block; font-size: 0.92rem; }
.testi-who span { font-size: 0.82rem; color: var(--ink-soft); }

/* ==========================================================================
   Store info / hours / map
   ========================================================================== */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hours-card, .contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-weight: 600;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { color: var(--ink-soft); font-weight: 500; }
.hours-row.today { color: var(--tangerine-deep); }

.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px -18px var(--shadow-ink);
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Contact form
   ========================================================================== */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--tangerine);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }

.form-msg {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: #E9F7EE;
  color: #1E6B3B;
  font-weight: 600;
  font-size: 0.92rem;
  display: none;
}
.form-msg.show { display: block; }

.contact-info-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px;
}
.contact-info-card h3 { color: var(--cream); }
.contact-info-row {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  align-items: flex-start;
}
.contact-info-row .bead {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  background: rgba(255,197,61,0.18);
}
.contact-info-row strong { display: block; }
.contact-info-row a, .contact-info-row span.value { color: rgba(255,246,230,0.78); font-size: 0.95rem; }
.contact-info-row a:hover { color: var(--sun); }

/* ==========================================================================
   FAQ (accordion)
   ========================================================================== */

.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-question .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sun);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-question .plus { transform: rotate(45deg); background: var(--coral); color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p { padding: 0 24px 20px; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: linear-gradient(120deg, var(--coral), var(--tangerine));
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }

/* ==========================================================================
   Page hero banner (interior pages)
   ========================================================================== */

.page-banner {
  padding: 56px 0 48px;
  text-align: left;
}
.page-banner .section-head { margin-bottom: 0; }

/* ==========================================================================
   Timeline (About page - process is a real sequence)
   ========================================================================== */

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.timeline-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  position: relative;
}
.timeline-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--cream-deep);
  -webkit-text-stroke: 2px var(--tangerine);
  margin-bottom: 8px;
  display: block;
}
.timeline-step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.timeline-step p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   Values grid
   ========================================================================== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid var(--line);
}
.value-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

/* ==========================================================================
   Filter bar (Shop page)
   ========================================================================== */

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-chip {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 18px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-chip:hover { border-color: var(--tangerine); }
.filter-chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

/* ==========================================================================
   Newsletter
   ========================================================================== */

.newsletter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 460px;
}
.newsletter input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.newsletter input:focus { outline: 2px solid var(--sun); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: rgba(255,246,230,0.85);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,246,230,0.15);
}

.footer-brand .brand { color: var(--cream); }
.footer-brand p { color: rgba(255,246,230,0.65); font-size: 0.92rem; margin-top: 14px; }

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,246,230,0.7); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--sun); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,246,230,0.55);
  flex-wrap: wrap;
  gap: 12px;
}

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,246,230,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
  font-size: 0.95rem;
}
.social-row a:hover { background: var(--sun); color: var(--ink); }

/* ==========================================================================
   Scroll reveal (single deliberate effect)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 380px; margin: 0 auto; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .visit-grid, .contact-wrap { grid-template-columns: 1fr; }

  .nav-links {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    transition: transform 0.25s ease;
    z-index: 90;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { text-align: center; padding: 14px; }
  .nav-cta { margin-left: 0; margin-top: 6px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .cat-grid, .product-grid, .testi-grid, .timeline, .values-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 40px 24px; }
  section.section-pad { padding: 56px 0; }
  .hero { padding: 40px 0 24px; }
}
