/* ============================================================
   Priddles Garlic — Design System
   Palette: garlic-skin tones (papery cream, charcoal, rust-brown,
   soft lavender/plum blush, sage green from the crop leaves)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300..900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Core palette */
  --cream:        #FBF3E6;
  --cream-soft:   #F5E9D8;
  --paper:        #FFFEFB;
  --charcoal:     #2A2118;
  --charcoal-70:  #55483F;
  --charcoal-40:  #8B7F74;

  --brown:        #8A4A2A;
  --brown-dark:   #5E3018;
  --brown-tint:   #F0DCC9;

  --blush:        #D9BAD3;
  --plum:         #6E4863;
  --plum-dark:    #4B3044;

  --sage:         #7C8B5A;
  --sage-dark:    #565F3D;
  --sage-tint:    #E3E8D4;

  --cream-rgb: 251, 243, 230;

  /* Semantic */
  --bg: var(--cream);
  --surface: var(--paper);
  --text: var(--charcoal);
  --text-muted: var(--charcoal-70);
  --border: rgba(42, 33, 24, 0.12);

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Radii */
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --radius-pill: 999px;

  /* Motion tokens */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.1, 0.25, 1);
  --dur-fast: 200ms;
  --dur-med: 400ms;
  --dur-slow: 700ms;

  --shadow-sm: 0 2px 10px rgba(42, 33, 24, 0.06);
  --shadow-md: 0 12px 32px rgba(42, 33, 24, 0.10);
  --shadow-lg: 0 24px 60px rgba(42, 33, 24, 0.16);

  --container: 1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ---------- Type scale (fluid) ---------- */
.h-hero    { font-size: clamp(3rem, 10vw, 8.5rem); line-height: 0.92; letter-spacing: -0.02em; }
.h-xl      { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05; }
.h-lg      { font-size: clamp(1.75rem, 3.4vw, 2.75rem); line-height: 1.1; }
.h-md      { font-size: clamp(1.35rem, 2.2vw, 1.75rem); line-height: 1.25; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
}
.eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--text-muted); max-width: 46ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brown); color: var(--cream); }
.btn-primary:hover { background: var(--brown-dark); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--brown); color: var(--brown); }
.btn-plum { background: var(--plum); color: var(--cream); }
.btn-plum:hover { background: var(--plum-dark); box-shadow: var(--shadow-md); }
.btn-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 9px; height: 9px; border-radius: 50%; background: currentColor;
  opacity: 0.8;
}
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
  background: rgba(var(--cream-rgb), 0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-med), box-shadow var(--dur-med), background var(--dur-med);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brown-dark);
}
.brand img { height: 40px; width: 40px; border-radius: 50%; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a { position: relative; color: var(--text); padding: 0.25rem 0; }
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--brown);
  transition: right var(--dur-med) var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--brown-dark); }
.nav-actions { display: flex; align-items: center; gap: var(--space-sm); }
.nav-toggle {
  display: none;
  background: none; border: none; padding: 0.5rem;
  color: var(--text);
}
.nav-toggle svg { width: 26px; height: 26px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  padding: var(--space-sm) var(--space-md);
  transform: translateY(-100%);
  transition: transform var(--dur-med) var(--ease-out);
}
.mobile-menu.is-open { display: block; transform: translateY(0); }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-xl); }
.mobile-menu-close { background: none; border: none; color: var(--text); }
.mobile-menu-close svg { width: 28px; height: 28px; }
.mobile-menu ul { display: flex; flex-direction: column; gap: var(--space-lg); }
.mobile-menu a { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; }
.mobile-menu .mobile-menu-cta { margin-top: var(--space-xl); font-family: var(--font-body); font-size: 1rem; }

/* ---------- Section scaffolding ---------- */
section { position: relative; }
.section-pad { padding-block: clamp(3.5rem, 8vw, var(--space-3xl)); }
.section-head { max-width: 640px; margin-bottom: var(--space-xl); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Hero ---------- */
/* ---------- Hero ---------- */
.hero-scrub {
  position: relative;
}
.hero-scrub-sticky {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: var(--charcoal);
}
.hero-scrub-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20,16,12,0.55) 0%, rgba(20,16,12,0.25) 32%, rgba(20,16,12,0.35) 68%, rgba(20,16,12,0.7) 100%);
}
.hero-scrub-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  padding-top: 4rem;
}
.hero-scrub-content .eyebrow { justify-content: center; margin-bottom: var(--space-md); color: var(--cream); }
.hero-scrub-content .eyebrow::before { background: var(--blush); }
.hero-title { margin: 0 0 var(--space-md); }
.hero-title .char { display: inline-block; will-change: transform, opacity; }
.hero-title .line {
  display: block;
  color: var(--cream);
  text-shadow: 0 6px 30px rgba(0,0,0,0.5);
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  color: var(--blush);
  margin: 0 0 var(--space-md);
  text-shadow: 0 3px 14px rgba(0,0,0,0.5);
}
.hero-sub { margin-inline: auto; margin-bottom: var(--space-lg); color: rgba(251,243,230,0.92); text-shadow: 0 2px 12px rgba(0,0,0,0.45); }
.hero-actions { display: flex; justify-content: center; gap: var(--space-sm); flex-wrap: wrap; }
.btn-outline-light { background: rgba(251,243,230,0.08); color: var(--cream); border-color: rgba(251,243,230,0.55); backdrop-filter: blur(6px); }
.btn-outline-light:hover { border-color: var(--cream); background: rgba(251,243,230,0.16); color: var(--cream); }

.hero-badge {
  position: absolute;
  z-index: 2;
  bottom: var(--space-lg);
  left: var(--space-lg);
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  display: flex; align-items: center; gap: var(--space-sm);
  box-shadow: var(--shadow-lg);
  max-width: 320px;
}
.hero-badge .badge-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sage-tint); color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-badge .badge-icon svg { width: 22px; height: 22px; }
.hero-badge strong { display: block; font-size: 0.95rem; }
.hero-badge span { font-size: 0.82rem; color: var(--text-muted); }

@media (max-width: 700px) {
  .hero-scrub-sticky { flex-direction: column; height: auto; min-height: 100vh; padding-bottom: var(--space-2xl); }
  .hero-badge { position: relative; left: auto; right: auto; bottom: auto; margin-top: var(--space-lg); max-width: none; }
}

/* ---------- Hero media (reused for static page-hero images, e.g. Our Story) ---------- */
.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 8.5;
  box-shadow: var(--shadow-lg);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,33,24,0) 55%, rgba(42,33,24,0.35) 100%);
}

/* ---------- Marquee ---------- */
.marquee-wrap {
  background: var(--brown);
  color: var(--cream);
  overflow: hidden;
  padding-block: var(--space-md);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
.marquee-track span {
  display: inline-flex; align-items: center; gap: var(--space-md);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 600;
  padding-right: var(--space-md);
  white-space: nowrap;
}
.marquee-track span::after { content: '\2726'; font-size: 0.9rem; color: var(--blush); margin-left: var(--space-md); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Split / story section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, var(--space-2xl));
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .blob {
  position: absolute;
  inset: -6%;
  background: var(--sage-tint);
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  z-index: 0;
}
.split-media img {
  position: relative; z-index: 1;
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.split-text ul { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-md); }
.split-text ul li { display: flex; gap: var(--space-xs); align-items: flex-start; }
.split-text .check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--brown-tint); color: var(--brown-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.split-text .check svg { width: 12px; height: 12px; }

@media (max-width: 860px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}

/* ---------- USP / feature grid ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.usp-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.usp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.usp-card:nth-child(3n+2) { background: var(--brown-tint); }
.usp-card:nth-child(3n+3) { background: var(--sage-tint); }
.usp-toggle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: default;
}
.usp-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.usp-icon svg { width: 26px; height: 26px; color: var(--brown); }
.usp-toggle h3 { font-size: 1.15rem; margin-bottom: 0; }
.usp-desc { color: var(--text-muted); font-size: 0.95rem; padding: 0 var(--space-lg) var(--space-lg); margin: 0; }
.usp-chevron { display: none; }

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

/* ---------- Phone: compact accordion tiles (icon + title, tap to expand) ---------- */
@media (max-width: 768px) {
  .usp-grid { grid-template-columns: 1fr; gap: var(--space-sm); }
  .usp-card:hover { transform: none; box-shadow: none; }
  .usp-toggle {
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
  }
  .usp-icon { width: 40px; height: 40px; border-radius: 12px; margin-bottom: 0; }
  .usp-icon svg { width: 20px; height: 20px; }
  .usp-toggle h3 { font-size: 1rem; flex: 1; }
  .usp-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform var(--dur-med) var(--ease-out);
  }
  .usp-chevron svg { width: 18px; height: 18px; }
  .usp-toggle[aria-expanded="true"] .usp-chevron { transform: rotate(180deg); }
  .usp-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 var(--space-md) 0 calc(40px + var(--space-sm) + var(--space-md));
    transition: max-height var(--dur-med) var(--ease-out), opacity var(--dur-med) var(--ease-out), padding var(--dur-med) var(--ease-out);
  }
  .usp-card.is-open .usp-desc {
    max-height: 220px;
    opacity: 1;
    padding: 0 var(--space-md) var(--space-md) calc(40px + var(--space-sm) + var(--space-md));
  }
}

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-md);
}
.product-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--cream-soft); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.product-card:hover .product-media img { transform: scale(1.06); }
.stock-badge {
  position: absolute; top: var(--space-sm); left: var(--space-sm);
  background: var(--paper); color: var(--text-muted);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.stock-badge.in-stock { color: var(--sage-dark); }
.stock-badge.sold-out { color: var(--plum-dark); }
.product-body { padding: var(--space-md); display: flex; flex-direction: column; gap: var(--space-2xs); flex: 1; }
.product-body h3 { font-size: 1.2rem; }
.product-body .price { font-weight: 700; color: var(--brown-dark); }
.product-body .desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: var(--space-2xs); }
.product-body .btn { margin-top: auto; }

/* ---------- Stat / trust band ---------- */
.trust-band {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 6vw, var(--space-2xl));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-2xl);
  align-items: center;
  overflow: hidden;
  position: relative;
}
.trust-band img.award-img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.trust-media { position: relative; }
.floating-quote {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--paper);
  color: var(--text);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  max-width: 260px;
  box-shadow: var(--shadow-lg);
}
.floating-quote p { font-size: 0.92rem; font-style: italic; margin-bottom: var(--space-2xs); }
.floating-quote span { font-size: 0.8rem; font-weight: 700; color: var(--brown); }
@media (max-width: 860px) {
  .trust-band { grid-template-columns: 1fr; }
  .floating-quote { position: static; margin-top: var(--space-md); max-width: none; }
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.testimonial-card .stars { color: var(--brown); margin-bottom: var(--space-sm); display: flex; gap: 3px; }
.testimonial-card .stars svg { width: 16px; height: 16px; }
.testimonial-card p { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.4; margin-bottom: var(--space-sm); }
.testimonial-card span { font-weight: 700; font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---------- Recipe cards ---------- */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.recipe-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  min-height: 260px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform var(--dur-med) var(--ease-out);
  background-size: cover;
  background-position: center;
  color: var(--cream);
  overflow: hidden;
}
.recipe-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,33,24,0.1) 0%, rgba(42,33,24,0.8) 100%);
  z-index: 0;
}
.recipe-card > * { position: relative; z-index: 1; }
.recipe-card:hover { transform: translateY(-6px); }
.recipe-tag {
  display: inline-flex; align-self: flex-start;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
  background: rgba(251,243,230,0.25);
  color: var(--cream);
}
.recipe-card h3 { margin-top: var(--space-md); font-size: 1.4rem; color: var(--cream); text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
@media (max-width: 900px) { .recipe-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .recipe-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(3rem, 8vw, var(--space-2xl));
  text-align: center;
  color: var(--cream);
}
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-band::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(42,33,24,0.55), rgba(42,33,24,0.78));
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band .h-xl { margin-bottom: var(--space-md); }
.cta-band .eyebrow { color: var(--blush); justify-content: center; margin-bottom: var(--space-sm); }
.cta-band .eyebrow::before { background: var(--blush); }

/* ---------- Footer ---------- */
.site-footer { padding-block: var(--space-2xl) var(--space-lg); }
.footer-top {
  display: flex; justify-content: space-between; gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.footer-brand { max-width: 340px; }
.footer-brand .brand { margin-bottom: var(--space-sm); }
.footer-brand p { color: var(--text-muted); font-size: 0.95rem; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  margin-top: var(--space-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brown);
  transition: color var(--dur-fast);
}
.footer-social:hover { color: var(--brown-dark); }
.footer-cols { display: flex; gap: var(--space-2xl); flex-wrap: wrap; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-sm); color: var(--text-muted); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-2xs); }
.footer-col a { font-weight: 500; transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--brown); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-sm);
  padding-top: var(--space-lg);
  font-size: 0.85rem; color: var(--text-muted);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero { text-align: center; padding-block: clamp(2rem, 6vw, var(--space-xl)) var(--space-lg); }
.page-hero .eyebrow { justify-content: center; margin-bottom: var(--space-sm); }
.page-hero .lede { margin-inline: auto; }

/* ---------- Reveal animation base states ---------- */
[data-reveal] { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ---------- Story page process steps ---------- */
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); counter-reset: step; }
.process-step { position: relative; padding-top: var(--space-lg); }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--brown-tint);
  -webkit-text-stroke: 1.5px var(--brown);
  display: block;
  margin-bottom: var(--space-sm);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: var(--space-2xs); }
.process-step p { color: var(--text-muted); font-size: 0.92rem; }
@media (max-width: 900px) { .process-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-list { grid-template-columns: 1fr; } }

/* ---------- Variety guide table (shop page) ---------- */
.guide-table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); background: var(--surface); }
.guide-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.guide-table th, .guide-table td { text-align: left; padding: var(--space-sm) var(--space-md); border-bottom: 1px solid var(--border); }
.guide-table th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.guide-table tr:last-child td { border-bottom: none; }

/* ---------- Meet the Team (Our Story) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1020px;
  margin-inline: auto;
}
.team-card { text-align: center; }
.team-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.team-role {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brown);
  margin-bottom: var(--space-sm);
}
.team-card p { color: var(--text-muted); font-size: 0.95rem; }
@media (max-width: 860px) { .team-grid { grid-template-columns: repeat(2, 1fr); max-width: 560px; } }
@media (max-width: 500px) { .team-grid { grid-template-columns: 1fr; max-width: 380px; } }

/* ---------- 3D Coverflow (Featured Varieties) ---------- */
.coverflow-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, var(--space-3xl));
  background: var(--charcoal);
  color: var(--cream);
}
.cf-ambience { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cf-ambience img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.28) blur(28px);
  transform: scale(1.15);
  transition: opacity 800ms ease;
}
.cf-ambience-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(42,33,24,0.35) 0%, rgba(42,33,24,0.94) 100%);
}
.cf-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }

.cf-eyebrow-row { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-xl); }
.cf-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blush);
  margin: 0;
  white-space: nowrap;
}
.cf-rule { width: 36px; height: 1px; background: linear-gradient(90deg, transparent, var(--blush)); flex-shrink: 0; }
.cf-rule:last-child { background: linear-gradient(90deg, var(--blush), transparent); }

.cf-stage {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  perspective: 1400px;
}
.cf-card {
  position: absolute;
  width: 330px;
  height: 500px;
  border-radius: 18px;
  overflow: hidden;
  background: #171311;
  border: 1px solid rgba(251, 243, 230, 0.12);
  transform-origin: center center;
  transition: width 300ms ease, height 300ms ease, transform 800ms cubic-bezier(0.25,1,0.5,1), opacity 800ms cubic-bezier(0.25,1,0.5,1), filter 800ms cubic-bezier(0.25,1,0.5,1);
  cursor: pointer;
}
.cf-card.is-center { cursor: default; box-shadow: 0 25px 60px rgba(0,0,0,0.55), 0 0 35px rgba(217,186,211,0.18); }
.cf-card:not(.is-center) { box-shadow: 0 15px 35px rgba(0,0,0,0.4); }
.cf-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cf-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 25%, rgba(0,0,0,0.68) 60%, rgba(0,0,0,0.96) 100%);
}
.cf-content {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  padding: 20px 18px 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  text-align: center;
  transition: opacity 500ms ease, transform 500ms ease;
}
.cf-body { display: flex; flex-direction: column; align-items: center; gap: 3px; margin-top: auto; padding-bottom: 4px; }
.cf-title {
  font-size: 1.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--cream); margin: 0; line-height: 1.1;
  text-shadow: 0 3px 12px rgba(0,0,0,0.95);
}
.cf-sub {
  font-size: 1.05rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--cream-soft); line-height: 1.2;
  text-shadow: 0 3px 10px rgba(0,0,0,0.9);
}
.cf-divider { width: 34px; height: 2px; background: var(--blush); border-radius: 2px; margin: 5px auto 4px; box-shadow: 0 0 8px rgba(217,186,211,0.6); }
.cf-desc { font-size: 0.82rem; font-style: italic; color: rgba(251,243,230,0.9); max-width: 280px; margin: 0; line-height: 1.3; text-shadow: 0 2px 8px rgba(0,0,0,0.9); }

.cf-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(251,243,230,0.1);
  border: 1px solid rgba(251,243,230,0.25);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 40;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.cf-arrow:hover { background: rgba(251,243,230,0.2); }
.cf-prev { left: clamp(0px, 2vw, 24px); }
.cf-next { right: clamp(0px, 2vw, 24px); }

.cf-dots { display: flex; align-items: center; justify-content: center; gap: 8px; }
.cf-dots button {
  height: 8px; width: 8px; border-radius: var(--radius-pill);
  background: rgba(251,243,230,0.28); border: none; padding: 0;
  transition: width 300ms ease, background 300ms ease, box-shadow 300ms ease;
}
.cf-dots button.is-active { width: 28px; background: var(--blush); box-shadow: 0 0 10px rgba(217,186,211,0.7); }

@media (max-width: 900px) {
  .cf-stage { height: 420px; }
  .cf-arrow { width: 40px; height: 40px; }
}
@media (max-width: 560px) {
  .cf-stage { height: 340px; }
  .cf-eyebrow { font-size: 0.68rem; letter-spacing: 0.22em; }
  .cf-arrow { width: 36px; height: 36px; }
  .cf-arrow svg { width: 16px; height: 16px; }
  .cf-content { padding: 14px 12px 16px; }
  .cf-title { font-size: 1.2rem; }
  .cf-sub { font-size: 0.85rem; }
  .cf-desc { font-size: 0.74rem; max-width: 200px; }
}

/* ---------- Responsive: header / grids ---------- */
@media (max-width: 860px) {
  .nav-links, .nav-actions .btn-outline { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 480px) {
  .nav-actions { display: none; }
  .brand { font-size: 1.05rem; white-space: nowrap; }
  .brand img { height: 34px; width: 34px; }
}
@media (max-width: 700px) {
  .trust-band { padding: var(--space-lg); }
}
