/* ================================================================
   WILLIAM PREMIUM MEAT  |  Main Stylesheet
   Palette: Deep greens (farm), warm earths (soil), amber (harvest)
   Breakpoints: 480px (mobile), 768px (tablet), 1024px (desktop)
   ================================================================ */

/* ── CSS CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Farm & Health Greens */
  --green-deep:   #1A3D2B;   /* deep forest / nav background */
  --green-mid:    #2C6044;   /* meadow green  */
  --green-bright: #4A9068;   /* fresh grass accent */
  --green-pale:   #A8D5BC;   /* sage light */

  /* Earthy Warmth */
  --earth-dark:   #3E2410;   /* dark bark / footer */
  --earth-mid:    #7A4B2A;   /* warm soil */
  --amber:        #C87941;   /* harvest amber / CTA */
  --amber-light:  #E5A06A;   /* light amber */
  --wheat:        #F0CA7A;   /* wheat / accent numbers */

  /* Neutral Base */
  --cream:        #F6F1E9;   /* warm off-white background */
  --linen:        #EDE8DF;   /* slightly darker background */
  --white:        #FFFFFF;
  --charcoal:     #1E1E1E;

  /* Text */
  --text-primary: #1E1E1E;
  --text-body:    #3D3028;
  --text-muted:   #7A6B5E;
  --text-light:   #F6F1E9;

  /* Utility */
  --border:       rgba(62,36,16,0.12);
  --border-mid:   rgba(62,36,16,0.20);
  --shadow-sm:    0 2px 10px rgba(30,20,10,0.07);
  --shadow-md:    0 6px 28px rgba(30,20,10,0.11);
  --shadow-lg:    0 20px 56px rgba(30,20,10,0.16);
  --radius:       4px;
  --transition:   0.28s cubic-bezier(0.4,0,0.2,1);
  --max-w:        1220px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--text-body);
  font-family: 'Lora', Georgia, serif;
  line-height: 1.72;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--earth-dark);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.6rem); }
h4 { font-size: 1rem; }

p { color: var(--text-body); font-size: 1rem; line-height: 1.8; }

.label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600;
  color: var(--green-mid);
}

.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--wheat));
  border-radius: 2px; margin: 14px 0 20px;
}
.divider--center { margin-left: auto; margin-right: auto; }
.divider--light { background: linear-gradient(90deg, var(--green-pale), transparent); }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--sm { padding: 56px 0; }
.section--lg { padding: 110px 0; }
.text-center { text-align: center; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-green {
  background: var(--green-mid);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44,96,68,0.35);
}
.btn-amber {
  background: var(--amber);
  color: var(--white);
}
.btn-amber:hover {
  background: var(--earth-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,121,65,0.38);
}
.btn-outline-green {
  background: transparent;
  color: var(--green-mid);
  border: 2px solid var(--green-mid);
}
.btn-outline-green:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 24px; font-size: 0.72rem; }

/* ── NAVIGATION ──────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}
.navbar--transparent .nav-inner { background: transparent; box-shadow: none; }
.navbar--solid .nav-inner {
  background: rgba(26,61,43,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  transition: padding var(--transition), background var(--transition);
}
.navbar--solid .nav-inner { padding: 12px 40px; }

.nav-logo img {
  height: 48px; width: auto;
  transition: height var(--transition);
  filter: brightness(1.05);
}
.navbar--solid .nav-logo img { height: 40px; }

.nav-menu {
  display: flex; align-items: center; gap: 0;
}
.nav-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(246,241,233,0.82);
  padding: 8px 18px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--green-pale);
  border-bottom-color: var(--green-pale);
}
.nav-cta-link {
  margin-left: 12px;
  background: var(--amber);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border: none !important;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta-link:hover {
  background: var(--amber-light) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--green-pale);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 850;
  background: var(--green-deep);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav.open { opacity: 1; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; color: var(--cream);
  padding: 10px 20px;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--green-pale); }
.mobile-close {
  position: absolute; top: 22px; right: 28px;
  font-size: 2rem; color: var(--green-pale); cursor: pointer;
  background: none; border: none;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(26,61,43,0.91) 0%,
    rgba(26,61,43,0.72) 45%,
    rgba(62,36,16,0.65) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 140px 0 100px;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(240,202,122,0.5);
  padding: 6px 16px; margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--wheat);
}
.hero-badge::before { content: '✦'; font-size: 7px; }
.hero h1 { color: var(--cream); margin-bottom: 18px; }
.hero h1 em {
  font-style: italic;
  color: var(--green-pale);
}
.hero-sub {
  font-family: 'Lora', serif;
  font-size: 1.05rem; color: rgba(246,241,233,0.75);
  line-height: 1.8; margin-bottom: 38px; max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Stats Bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(26,61,43,0.93);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(168,213,188,0.15);
}
.hero-stat {
  padding: 22px 16px; text-align: center;
  border-right: 1px solid rgba(168,213,188,0.12);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 900;
  color: var(--wheat);
  line-height: 1;
}
.hero-stat span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green-pale); opacity: 0.75;
  margin-top: 4px; display: block;
}

/* ── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  min-height: 320px;
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  padding: 0;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,61,43,0.92) 0%, rgba(26,61,43,0.45) 60%, rgba(26,61,43,0.2) 100%);
}
.page-hero-text {
  position: relative; z-index: 2;
  padding: 48px 0 44px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(168,213,188,0.7); margin-bottom: 10px;
}
.breadcrumb a { color: var(--green-pale); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--wheat); }
.breadcrumb::before { content: ''; } /* spacer */
.page-hero-text h1 { color: var(--cream); }

/* ── FEATURE BAR ────────────────────────────────────────────── */
.feature-bar {
  background: var(--green-deep);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.feature-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 28px 20px;
  border-right: 1px solid rgba(168,213,188,0.1);
  transition: background var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--green-mid); }
.feature-icon { font-size: 1.8rem; margin-bottom: 8px; }
.feature-item strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--cream); margin-bottom: 4px;
}
.feature-item p { font-size: 0.8rem; color: var(--green-pale); opacity: 0.75; line-height: 1.4; }

/* ── SECTION HEADERS ─────────────────────────────────────────── */
.sec-header { margin-bottom: 48px; }
.sec-header--center { text-align: center; }
.sec-header--center .divider { margin-left: auto; margin-right: auto; }

/* ── CARDS ────────────────────────────────────────────────────── */
/* Product Card */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s var(--transition);
}
.product-card:hover .product-card-img img { transform: scale(1.07); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--green-mid); color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 2px;
}
.product-badge--amber { background: var(--amber); }
.product-badge--dark  { background: var(--earth-dark); }
.product-body { padding: 22px 22px 16px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 1.08rem; margin-bottom: 7px; color: var(--earth-dark); }
.product-body p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.product-footer {
  padding: 14px 22px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
}
.product-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.67rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green-bright);
  background: rgba(74,144,104,0.09);
  padding: 3px 10px; border-radius: 2px;
}
.product-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--amber);
  transition: color var(--transition);
}
.product-link:hover { color: var(--earth-mid); }

/* Featured Product Banner */
.product-featured {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
.product-featured-img { overflow: hidden; min-height: 360px; }
.product-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.product-featured-body {
  padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.product-featured-body .product-badge { position: static; display: inline-block; margin-bottom: 16px; }
.product-featured-body h2 { font-size: clamp(1.4rem,2.5vw,2rem); margin-bottom: 14px; }
.product-featured-body p { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 20px; }
.variants-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 26px; }
.variant-chip {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border: 1px solid var(--border-mid);
  color: var(--text-muted); border-radius: 2px;
  transition: all 0.2s;
}
.variant-chip:hover { border-color: var(--green-mid); color: var(--green-mid); }

/* ── FILTER BAR ──────────────────────────────────────────────── */
.filter-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 9px 20px; border: 1px solid var(--border-mid);
  color: var(--text-muted); border-radius: 2px;
  background: transparent;
  transition: all 0.22s;
}
.filter-btn:hover    { border-color: var(--green-mid); color: var(--green-mid); }
.filter-btn.is-active {
  background: var(--green-mid); color: var(--white);
  border-color: var(--green-mid);
}

/* ── STORY / ABOUT ───────────────────────────────────────────── */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.story-img-wrap { position: relative; }
.story-img-main { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius); }
.story-img-accent {
  position: absolute; bottom: -28px; right: -28px;
  width: 46%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.story-stamp {
  position: absolute; top: 22px; left: -20px; z-index: 2;
  background: var(--amber); color: var(--white);
  padding: 14px 16px; text-align: center; line-height: 1.3;
  font-family: 'Playfair Display', serif; font-size: 0.82rem; font-weight: 700;
  box-shadow: var(--shadow-md);
}
.story-text p { margin-bottom: 16px; color: var(--text-muted); }
.story-list { margin: 22px 0; display: flex; flex-direction: column; gap: 12px; }
.story-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; color: var(--text-body);
}
.story-list li::before {
  content: '✓';
  color: var(--green-mid); font-weight: 700; flex-shrink: 0; margin-top: 2px;
}

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-masonry {
  columns: 3; column-gap: 14px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 14px;
  overflow: hidden; position: relative;
  border-radius: var(--radius); cursor: zoom-in;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.5s var(--transition), filter 0.35s;
  filter: brightness(0.92);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1.03); }
.gallery-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 14px 12px;
  background: linear-gradient(transparent, rgba(26,61,43,0.78));
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-pale); opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-cap { opacity: 1; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-bright);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.testi-stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 14px; }
.testi-quote {
  font-family: 'Lora', serif; font-style: italic;
  font-size: 0.97rem; color: var(--text-body); line-height: 1.85;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--linen);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.testi-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--earth-dark);
}
.testi-role { font-size: 0.8rem; color: var(--text-muted); }

/* ── VALUES GRID ─────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.value-tile {
  background: var(--white);
  padding: 40px 32px;
  border-bottom: 4px solid transparent;
  transition: border-color var(--transition);
}
.value-tile:hover { border-bottom-color: var(--green-mid); }
.value-icon { font-size: 2.2rem; margin-bottom: 16px; }
.value-tile h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-tile p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ── ORDER STEPS ────────────────────────────────────────────── */
.steps-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; }
.step-tile {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 28px; position: relative;
  border-right: none;
}
.step-tile:last-child { border-right: 1px solid var(--border); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem; font-weight: 900; line-height: 1;
  color: rgba(44,96,68,0.07);
  position: absolute; top: 16px; right: 16px;
}
.step-icon { font-size: 2rem; margin-bottom: 14px; }
.step-tile h4 { font-size: 0.98rem; margin-bottom: 8px; color: var(--earth-dark); }
.step-tile p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info-box {
  background: var(--green-deep);
  padding: 40px 36px;
  border-radius: var(--radius);
  color: var(--cream);
}
.contact-info-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--cream);
  margin-bottom: 28px; padding-bottom: 18px;
  border-bottom: 1px solid rgba(168,213,188,0.18);
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.info-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green-pale); margin-bottom: 3px; display: block;
}
.info-row p, .info-row a {
  font-size: 0.9rem; color: rgba(246,241,233,0.78);
  line-height: 1.6;
}
.info-row a:hover { color: var(--wheat); }
.hours-list { margin-top: 4px; }
.hours-row {
  display: flex; justify-content: space-between;
  font-size: 0.87rem; padding: 4px 0;
  color: rgba(246,241,233,0.7);
  border-bottom: 1px solid rgba(168,213,188,0.08);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span { color: var(--green-pale); font-weight: 600; }

/* ── FORMS ───────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 13px 15px;
  font-family: 'Lora', serif; font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(44,96,68,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--green-mid); color: var(--white);
  border: none; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 4px;
}
.form-submit:hover { background: var(--green-deep); transform: translateY(-1px); }
.form-success {
  display: none; padding: 14px 18px;
  background: rgba(44,96,68,0.09);
  border: 1px solid var(--green-mid);
  border-radius: var(--radius);
  color: var(--green-mid);
  font-size: 0.9rem; text-align: center;
  margin-top: 8px;
}

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  background: var(--green-deep);
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(74,144,104,0.1); pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px;
}
.cta-inner h2 { color: var(--cream); }
.cta-inner p  { color: rgba(168,213,188,0.75); margin-top: 10px; max-width: 460px; }
.cta-actions  { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ── QUOTE BAND ──────────────────────────────────────────────── */
.quote-band {
  background: var(--earth-dark);
  padding: 64px 0; text-align: center;
}
.quote-band blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.9rem);
  font-style: italic; font-weight: 400;
  color: var(--cream); line-height: 1.6;
  max-width: 700px; margin: 0 auto 16px;
}
.quote-band cite {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--wheat);
}

/* ── COUNTERS ────────────────────────────────────────────────── */
.counters-band {
  background: var(--green-mid);
  padding: 56px 0;
}
.counters-row { display: grid; grid-template-columns: repeat(4,1fr); }
.counter-item { text-align: center; padding: 10px 16px; border-right: 1px solid rgba(168,213,188,0.18); }
.counter-item:last-child { border-right: none; }
.counter-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: var(--wheat); display: block; line-height: 1;
}
.counter-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(168,213,188,0.7); margin-top: 5px; display: block;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem; font-weight: 600; color: var(--earth-dark);
  background: none; border: none; cursor: pointer; text-align: left;
  transition: color var(--transition);
}
.faq-toggle:hover { color: var(--green-mid); }
.faq-arrow {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--linen); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0; color: var(--green-mid);
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--green-mid); color: var(--white); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.3s; }
.faq-body p { padding: 0 0 20px; font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; }

/* ── ORDER SIDEBAR ───────────────────────────────────────────── */
.order-layout { display: grid; grid-template-columns: 1fr 340px; gap: 52px; align-items: start; }
.order-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px; margin-bottom: 18px;
}
.sidebar-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.sidebar-card p   { font-size: 0.88rem; color: var(--text-muted); }
.sidebar-card a   { color: var(--green-mid); font-size: 0.88rem; font-weight: 600; }
.sidebar-card a:hover { color: var(--earth-mid); }
.quick-list { display: flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.quick-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-body); }
.quick-list li span { font-size: 1.2rem; }

/* ── CHANNEL CARDS ───────────────────────────────────────────── */
.channels-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.channel-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 24px; text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.channel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.channel-icon { font-size: 2.2rem; margin-bottom: 12px; }
.channel-card h3 { font-size: 1rem; margin-bottom: 8px; }
.channel-card p  { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }
.channel-card a  { color: var(--green-mid); font-size: 0.85rem; font-weight: 600; }
.channel-card a:hover { color: var(--earth-mid); }

/* ── SOCIAL ──────────────────────────────────────────────────── */
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  width: 38px; height: 38px; border-radius: var(--radius);
  border: 1px solid rgba(168,213,188,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(246,241,233,0.55);
  transition: all 0.22s;
}
.social-btn:hover { border-color: var(--green-pale); color: var(--green-pale); background: rgba(168,213,188,0.08); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--earth-dark); border-top: 3px solid var(--green-mid); }
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px; padding: 64px 0 48px;
}
.footer-brand p  { font-size: 0.88rem; color: rgba(246,241,233,0.48); line-height: 1.8; margin-top: 14px; }
.footer-logo img { height: 46px; }
.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--green-pale); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(246,241,233,0.48); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(246,241,233,0.07);
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(246,241,233,0.3); }
.footer-bottom span { color: var(--green-pale); }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
#back-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 400;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-mid); color: var(--white);
  border: none; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: var(--shadow-md);
}
#back-top.visible { opacity: 1; pointer-events: auto; }
#back-top:hover { transform: translateY(-3px); background: var(--green-deep); }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.65s var(--transition), transform 0.65s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── UTILITY ─────────────────────────────────────────────────── */
.bg-cream  { background: var(--cream); }
.bg-linen  { background: var(--linen); }
.bg-white  { background: var(--white); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-36 { margin-top: 36px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }

/* ================================================================
   RESPONSIVE  — Tablet  (≤ 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }

  .nav-inner { padding: 16px 32px; }
  .navbar--solid .nav-inner { padding: 12px 32px; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; padding: 52px 0 36px; }

  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .hero-stat:nth-child(2) { border-right: none; }

  .story-grid { gap: 40px; }
  .story-img-accent { display: none; }

  .values-grid { grid-template-columns: repeat(2,1fr); }

  .steps-row { grid-template-columns: repeat(2,1fr); }
  .step-tile { border-right: 1px solid var(--border) !important; }
  .step-tile:nth-child(2) { border-right: none !important; }

  .channels-grid { grid-template-columns: repeat(2,1fr); }

  .counters-row { grid-template-columns: repeat(2,1fr); }
  .counter-item:nth-child(2) { border-right: none; }

  .feature-bar { grid-template-columns: repeat(2,1fr); }
  .feature-item:nth-child(2) { border-right: none; }

  .order-layout { grid-template-columns: 1fr; }
  .order-sidebar { position: static; }

  .contact-layout { grid-template-columns: 1fr; gap: 36px; }

  .gallery-masonry { columns: 2; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-inner p { margin: 10px auto 0; }
  .cta-actions { justify-content: center; }

  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ================================================================
   RESPONSIVE  — Mobile  (≤ 768px)
   ================================================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section--lg { padding: 72px 0; }

  /* Nav */
  .nav-inner { padding: 14px 20px; }
  .navbar--solid .nav-inner { padding: 10px 20px; }
  .nav-menu { display: none; }
  .nav-cta-link { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-content { padding: 120px 0 100px; max-width: 100%; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }

  /* Feature bar */
  .feature-bar { grid-template-columns: 1fr 1fr; }
  .feature-item { padding: 22px 14px; }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-top: 1px solid rgba(168,213,188,0.1); border-right: 1px solid rgba(168,213,188,0.1); }
  .feature-item:nth-child(4) { border-top: 1px solid rgba(168,213,188,0.1); }

  /* Product featured */
  .product-featured { grid-template-columns: 1fr; }
  .product-featured-img { min-height: 240px; }
  .product-featured-body { padding: 28px 24px; }

  /* Story */
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-stamp { display: none; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; gap: 2px; }

  /* Steps */
  .steps-row { grid-template-columns: 1fr; }
  .step-tile { border-right: 1px solid var(--border) !important; }

  /* Counters */
  .counters-row { grid-template-columns: repeat(2,1fr); }
  .counter-item:nth-child(2) { border-right: none; }
  .counter-item:nth-child(3) { border-top: 1px solid rgba(168,213,188,0.18); }
  .counter-item:nth-child(4) { border-top: 1px solid rgba(168,213,188,0.18); border-right: none; }

  /* Gallery */
  .gallery-masonry { columns: 1; }

  /* Channels */
  .channels-grid { grid-template-columns: 1fr; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 44px 0 28px; }

  /* CTA */
  .cta-banner { padding: 52px 0; }

  /* Order layout */
  .order-layout { grid-template-columns: 1fr; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }

  /* Page hero */
  .page-hero { min-height: 240px; }

  /* Back to top */
  #back-top { bottom: 16px; right: 16px; }
}

/* ================================================================
   RESPONSIVE  — Small mobile  (≤ 480px)
   ================================================================ */
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .hero-badge { font-size: 0.6rem; letter-spacing: 2.5px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn { padding: 12px 24px; font-size: 0.72rem; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .counters-band { padding: 40px 0; }
  .counter-num { font-size: 2.4rem; }
  .feature-bar { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; border-top: 1px solid rgba(168,213,188,0.1) !important; }
  .feature-item:first-child { border-top: none !important; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { justify-content: center; }
}
