/* =============================================================
   BANKS FRESH FARMS — style.css
   Approved Mockup: Dark Warm Brown · Family Photo Hero · Gold Dividers
   ============================================================= */

/* ─── Variables ──────────────────────────────────────────────── */
:root {
  --bg-dark:       #1A0D08;
  --bg-mid:        #261208;
  --bg-card:       #8B5E3C;
  --bg-card-light: #C4956A;
  --gold:          #C8922A;
  --gold-light:    #E8B86D;
  --cream:         #F5ECD7;
  --cream-muted:   #C9B99A;
  --charcoal:      #100705;
  --white:         #FFFFFF;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100%;
}


body {
  font-family: 'Lato', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--cream);
  line-height: 1.65;
  max-width: 100%;
  overflow-x: hidden;
}

/* Grain texture overlay — fixed, sits above everything, non-interactive */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
  z-index: 9999;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ─── Fade-in animation ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================================
   NAVIGATION — stacked, centered
   ============================================================= */

.site-nav {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(200,146,42,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px 16px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 200;
  -webkit-transition: padding 0.4s ease-in-out, box-shadow 0.3s ease;
  transition: padding 0.4s ease-in-out, box-shadow 0.3s ease;
}

.site-nav::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--charcoal);
  pointer-events: none;
}

.nav-scrolled-brand {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  flex-direction: column;
  align-items: center;
  gap: 3px;
  pointer-events: none;
  white-space: nowrap;
}

.nav-scrolled-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}

.nav-scrolled-sub {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 9px;
  font-weight: 400;
  color: var(--cream-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.nav-hamburger {
  display: none;
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.nav-brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  max-height: 300px;
  transition: opacity 0.35s ease-in-out, max-height 0.4s ease-in-out;
}

.nav-logo {
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s ease;
}

.nav-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.6) contrast(1.4);
}

.nav-logo--fallback {
  width: 100px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  max-height: 40px;
  overflow: hidden;
  transition: opacity 0.35s ease-in-out, max-height 0.4s ease-in-out, margin 0.35s ease-in-out;
}

.nav-sub {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  max-height: 30px;
  overflow: hidden;
  transition: opacity 0.35s ease-in-out, max-height 0.4s ease-in-out, margin 0.35s ease-in-out;
}

.site-nav.nav--scrolled { padding: 6px 20px; }
.site-nav.nav--scrolled .nav-logo { width: 150px; }
.site-nav.nav--scrolled .nav-brand-center { gap: 0; }
.site-nav.nav--scrolled .nav-brand,
.site-nav.nav--scrolled .nav-sub {
  opacity: 0;
  max-height: 0;
  margin: 0;
  pointer-events: none;
}

.nav-bottom-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(200,146,42,0.15);
  width: 100%;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 32px;
  padding: 0;
}

.nav-links a {
  color: rgba(245,236,215,0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--gold-light); }

.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--charcoal);
  padding: 32px 24px;
  border-bottom: 1px solid rgba(200,146,42,0.2);
  position: fixed;
  left: 0;
  right: 0;
  z-index: 199;
  overflow-y: auto;
  max-height: calc(100vh - 60px);
}

.mobile-nav.open { display: flex; }

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
  transition: color 0.2s;
}

.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-cta { margin-top: 8px; }


/* =============================================================
   HERO — Full-width family photo
   ============================================================= */
.hero-photo {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  display: block;
  line-height: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}


/* =============================================================
   HEADLINE BLOCK
   ============================================================= */
.headline-block {
  background: var(--bg-dark);
  background-image: radial-gradient(ellipse at center, #7B4220 0%, #4E2512 45%, var(--bg-dark) 75%);
  text-align: center;
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.headline-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 48px);
  color: var(--cream);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 18px;
}

.headline-title em {
  color: var(--gold);
  font-style: italic;
}

.headline-sub {
  color: var(--cream-muted);
  font-size: clamp(15px, 2.5vw, 19px);
  margin-bottom: 40px;
  font-weight: 300;
  font-family: 'Lato', sans-serif;
}

.headline-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--bg-dark);
  color: var(--cream);
  border: 2px solid rgba(245,236,215,0.5);
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--cream);
  color: var(--bg-dark);
  border-color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--cream-muted);
  border: 1px solid var(--gold);
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}


/* =============================================================
   TRUST BAR
   ============================================================= */
.trust-bar {
  background: var(--charcoal);
  border-top:    1px solid rgba(200,146,42,0.15);
  border-bottom: 1px solid rgba(200,146,42,0.15);
  padding: 16px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-item {
  font-size: 10px;
  font-weight: 700;
  color: var(--cream-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.trust-sep {
  color: var(--gold);
  font-size: 8px;
  opacity: 0.5;
}


/* =============================================================
   GOLD DIVIDER — reusable between sections
   ============================================================= */
.section-divider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 60px 20px;
  background: var(--bg-dark);
  background-image: radial-gradient(ellipse at center, #5A2E14 0%, var(--bg-dark) 70%);
}

.section-divider-row--mid  { background: var(--bg-mid); }
.section-divider-row--dark { background: var(--charcoal); }

.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(200,146,42,0.35);
  max-width: 220px;
}

.divider-label {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: clamp(14px, 3vw, 22px);
  font-style: italic;
  letter-spacing: 1px;
  white-space: nowrap;
  max-width: calc(100vw - 120px);
  overflow: hidden;
  text-overflow: ellipsis;
}


/* =============================================================
   OUR STORY
   ============================================================= */
.story-section {
  background: var(--bg-dark);
  background-image: radial-gradient(ellipse at 65% 50%, #6B3818 0%, #3D2010 50%, var(--bg-dark) 100%);
  padding: 16px 60px 80px;
}

.story-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1020px;
  margin: 0 auto;
}

.story-photo {
  border: 3px solid rgba(200,146,42,0.3);
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;
  flex-shrink: 0;
}

.story-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.4s ease;
}

.story-photo:hover img { transform: scale(1.03); }

/* Rotating slideshow for story photos */
.story-slideshow {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 3px solid rgba(200,146,42,0.3);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.story-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.story-slideshow .slide.active { opacity: 1; }

.story-copy { padding-top: 8px; }

.story-line {
  color: var(--cream-muted);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 16px;
  font-family: 'Lato', sans-serif;
}

.story-quote {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  margin: 24px 0 4px;
  text-align: center;
}

.btn-story {
  display: block;
  width: fit-content;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(200,146,42,0.5);
  color: var(--cream-muted);
  background: transparent;
  padding: 11px 28px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-story:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}


/* =============================================================
   SHOP — Product Cards
   ============================================================= */
.shop-section {
  background: var(--bg-mid);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.shop-card {
  background: var(--bg-card-light);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.shop-card--soon { opacity: 0.88; }

.shop-card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  line-height: 0;
  position: relative;
  background: rgba(44,24,16,0.4);
}

.shop-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.shop-card:hover .shop-card-photo img { transform: scale(1.05); }

/* Fallback when no photo */
.shop-card-photo.no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: rgba(44,24,16,0.6);
}

.shop-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 1;
}

.shop-card-badge--soon {
  background: rgba(26,15,10,0.85);
  border: 1px solid var(--gold);
  color: var(--gold);
}

.shop-card-body {
  padding: 22px 20px 24px;
  background: var(--bg-card-light);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shop-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-weight: 700;
}

.shop-card-desc {
  font-size: 13px;
  color: rgba(26,15,10,0.72);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
  font-family: 'Lato', sans-serif;
}

.shop-card-btn {
  display: block;
  background: var(--bg-dark);
  color: var(--cream);
  text-align: center;
  padding: 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  width: 100%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.shop-card-btn:hover { background: var(--charcoal); }

.shop-card-btn--soon {
  background: var(--gold);
  color: var(--white);
}

.shop-card-btn--soon:hover { background: var(--gold-light); }


/* =============================================================
   SHOP CAROUSEL (mobile only) — native scroll + scroll-snap
   Keeps all overflow inside .shop-grid; nothing leaks to the page.
   ============================================================= */
.shop-section--carousel .shop-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 0 20px 20px;
  margin: 0;
  max-width: none;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.shop-section--carousel .shop-grid::-webkit-scrollbar { display: none; }

.shop-section--carousel .shop-card {
  flex: 0 0 82vw;
  max-width: 82vw;
  scroll-snap-align: start;
}

.shop-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 4px 0 20px;
}

.shop-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(200,146,42,0.25);
  border: 1px solid rgba(200,146,42,0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.shop-carousel-dot--active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}


/* =============================================================
   FORM VALIDATION TOAST
   ============================================================= */
.form-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-120px);
  background: var(--charcoal);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 14px 20px 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 420px;
  width: calc(100% - 48px);
  z-index: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.form-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.form-toast-icon {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.form-toast-msg {
  font-size: 13px;
  color: var(--cream);
  line-height: 1.5;
  flex: 1;
}

.form-toast-close {
  background: none;
  border: none;
  color: var(--cream-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 0 0 0 8px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
}
.form-toast-close:hover { color: var(--cream); }

/* =============================================================
   EGGS PACK MODAL
   ============================================================= */
/* =============================================================
   VIDEO MODAL
   ============================================================= */
.video-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 550;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal-backdrop.open {
  display: flex;
}
.video-modal {
  position: relative;
  width: 100%;
  max-width: 860px;
}
.video-modal video {
  width: 100%;
  display: block;
  border-radius: 8px;
  background: #000;
  max-height: 80vh;
}
.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.video-modal-close:hover { color: var(--gold); }

/* =============================================================
   BEEF CUTS MODAL
   ============================================================= */
.beef-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16,7,5,0.92);
  z-index: 500;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.beef-modal-backdrop.open { display: flex; }

.beef-modal {
  background: var(--bg-mid);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  position: relative;
  border: 1px solid rgba(200,146,42,0.2);
  margin: auto;
}

.beef-modal-video {
  width: 100%;
  display: block;
  background: #000;
  max-height: 260px;
  object-fit: cover;
}

.beef-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(0,0,0,0.55);
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.beef-modal-close:hover { background: rgba(200,146,42,0.8); }

.beef-modal-header { text-align: center; margin-bottom: 28px; padding: 24px 28px 0; }

.beef-modal-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.beef-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 6px;
}

.beef-modal-sub {
  font-size: 13px;
  color: var(--cream-muted);
  letter-spacing: 0.5px;
}

.beef-cuts-list {
  list-style: none;
  padding: 0 28px;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.beef-cut-item {
  display: grid;
  grid-template-columns: 1fr 96px 88px;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.1);
  transition: background 0.15s;
}
.beef-cut-item:hover { background: rgba(200,146,42,0.08); }

.beef-cut-item--featured {
  border-color: rgba(200,146,42,0.3);
  background: rgba(200,146,42,0.06);
}

.beef-cut-stepper {
  display: flex;
  align-items: center;
  width: 96px;
  background: rgba(0,0,0,0.25);
  border-radius: 6px;
  overflow: hidden;
}

.beef-stepper-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 18px;
  width: 30px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.beef-stepper-btn:active { background: rgba(200,146,42,0.15); }

.beef-stepper-qty {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  line-height: 34px;
}

.beef-cut-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--cream);
  font-weight: 600;
  line-height: 1.3;
  word-break: break-word;
}

.beef-cut-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
  white-space: nowrap;
}

.beef-cut-unit {
  font-size: 11px;
  font-weight: 400;
  color: var(--cream-muted);
}

/* ─── Beef Order Summary Drawer ─────────────────────────────── */
.beef-summary {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
  margin: 0 28px;
}

.beef-summary--open {
  max-height: 400px;
  opacity: 1;
  margin-bottom: 16px;
}

.beef-summary-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 8px;
  border-top: 1px solid rgba(200,146,42,0.3);
}

.beef-summary-hdr-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.beef-summary-hdr-count {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--cream-muted);
  text-transform: uppercase;
}

.beef-summary-lines {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.beef-summary-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  color: var(--cream-muted);
  padding: 3px 0;
}

.beef-summary-qty {
  font-weight: 700;
  color: var(--cream);
  font-size: 12px;
  white-space: nowrap;
}

.beef-summary-name {
  color: var(--cream-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.beef-summary-sub {
  font-weight: 700;
  color: var(--gold);
  text-align: right;
  white-space: nowrap;
}

.beef-cta-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 28px 28px;
  border-top: 1px solid rgba(200,146,42,0.2);
}

.beef-cta-total {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.beef-cta-total--visible { display: flex; }

.beef-cta-total-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.beef-cta-total-amt {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.beef-modal-order-btn {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s;
  touch-action: manipulation;
  cursor: pointer;
  width: 100%;
  max-width: 320px;
}
.beef-modal-order-btn:hover { background: var(--gold-light); }

.pack-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 7, 5, 0.88);
  z-index: 500;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px 16px;
}

.pack-modal-backdrop.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.pack-modal {
  background: var(--bg-mid);
  border: 1px solid rgba(200,146,42,0.25);
  border-radius: 12px;
  max-width: 1000px;
  width: 100%;
  padding: 48px 40px 56px;
  position: relative;
}

.pack-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--cream-muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.pack-modal-close:hover { color: var(--cream); }

.pack-modal-header {
  text-align: center;
  margin-bottom: 40px;
}

.pack-modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.pack-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 10px;
}

.pack-modal-sub {
  font-size: 14px;
  color: var(--cream-muted);
  font-family: 'Lato', sans-serif;
}

/* Capacity availability bar */
.pack-capacity {
  margin-top: 18px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.18);
  border-radius: 8px;
}

.pack-capacity-track {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.pack-capacity-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 0.6s ease;
  width: 0%;
}

.pack-capacity--low  .pack-capacity-fill { background: #e07b2a; }
.pack-capacity--full .pack-capacity-fill { background: #c0392b; }

.pack-capacity-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--cream-muted);
  text-align: center;
  font-family: 'Lato', sans-serif;
}

.pack-capacity--low  .pack-capacity-text { color: #e07b2a; }
.pack-capacity--full .pack-capacity-text { color: #c0392b; }

.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

/* Base pack card */
.pack-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.18);
  border-radius: 10px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pack-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Featured (Weekly Dozen) */
.pack-card--featured {
  background: rgba(200,146,42,0.1);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

/* Reserve */
.pack-card--reserve {
  opacity: 0.82;
}

.pack-card-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(200,146,42,0.2);
  color: var(--gold);
  border: 1px solid rgba(200,146,42,0.4);
  margin-bottom: 20px;
  align-self: flex-start;
}

.pack-card-badge--featured {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.pack-card-badge--reserve {
  background: rgba(26,15,10,0.6);
  color: var(--cream-muted);
  border-color: rgba(200,146,42,0.25);
}

.pack-card-icon {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1;
}

.pack-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.pack-card-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.pack-card-desc {
  font-size: 13px;
  color: var(--cream-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.pack-card-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pack-card-features li {
  font-size: 12px;
  color: var(--cream-muted);
  padding-left: 18px;
  position: relative;
}
.pack-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Price block */
.pack-card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(200,146,42,0.15);
  border-bottom: 1px solid rgba(200,146,42,0.15);
  padding: 14px 0;
}

.pack-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.pack-price-per {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--cream-muted);
}

.pack-price-label {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Button group */
.pack-card-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

/* ─── Dozen quantity stepper (single-dozen card) ─────────────── */
.dozen-stepper {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(200,146,42,0.35);
  border-radius: 6px;
  overflow: hidden;
  margin: 0 0 10px;
}

.stepper-btn {
  flex: 0 0 48px;
  background: rgba(200,146,42,0.1);
  border: none;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  padding: 0;
}
.stepper-btn:active { background: rgba(200,146,42,0.28); }

.stepper-val {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 8px;
  border-left: 1px solid rgba(200,146,42,0.25);
  border-right: 1px solid rgba(200,146,42,0.25);
}

.stepper-qty {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  min-width: 24px;
  text-align: center;
}

.stepper-unit {
  font-size: 10px;
  color: var(--cream-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stepper-total {
  text-align: center;
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 16px;
}

.pack-card-btn {
  display: block;
  text-align: center;
  padding: 13px 16px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  border: 1px solid rgba(200,146,42,0.3);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.pack-card-btn:hover {
  background: rgba(200,146,42,0.15);
  color: var(--gold-light);
}

.pack-card-btn--featured {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.pack-card-btn--featured:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.pack-card-btn--reserve {
  background: transparent;
  color: var(--cream-muted);
  border-color: rgba(200,146,42,0.2);
}
.pack-card-btn--reserve:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Subscription tier buttons */
.pack-sub-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.pack-tier-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 2px;
}

.pack-card-btn--tier {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  font-size: 11px;
}

.pack-tier-save {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.18);
  color: var(--charcoal);
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
}

/* Secondary one-time button */
.pack-card-btn--alt {
  background: transparent;
  color: var(--cream-muted);
  border-color: rgba(255,255,255,0.12);
  font-size: 10px;
  padding: 10px 16px;
}
.pack-card-btn--alt:hover {
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  border-color: rgba(255,255,255,0.25);
}

.pack-card-btn--alt-muted {
  opacity: 0.55;
}
.pack-card-btn--alt-muted:hover {
  opacity: 0.8;
}

/* ── Pickup Calendar ───────────────────────────────────────── */
/* ─── Schedule pickup toggle ───────────────────────────────────── */
.pickup-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 16px;
  background: rgba(200,146,42,0.08);
  border: 1px solid rgba(200,146,42,0.35);
  border-radius: 6px;
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  margin-bottom: 0;
}
.pickup-toggle:hover { background: rgba(200,146,42,0.14); }

.pickup-toggle-chevron {
  font-size: 10px;
  display: inline-block;
  transition: transform 0.25s;
}
.pickup-toggle--open .pickup-toggle-chevron { transform: rotate(180deg); }

/* ─── Pickup section (radios + calendar) ──────────────────────── */
.pickup-section {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.pickup-section--open { max-height: 700px; }

/* ─── Pickup type radios ──────────────────────────────────────── */
.pickup-radios {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0 4px;
}

.pickup-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(200,146,42,0.2);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.pickup-radio:hover { background: rgba(200,146,42,0.06); }
.pickup-radio:has(input:checked) {
  background: rgba(200,146,42,0.12);
  border-color: var(--gold);
}

.pickup-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pickup-radio-ui {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(200,146,42,0.45);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}
.pickup-radio-ui::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.15s;
}
.pickup-radio:has(input:checked) .pickup-radio-ui { border-color: var(--gold); }
.pickup-radio:has(input:checked) .pickup-radio-ui::after { opacity: 1; }

.pickup-radio-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pickup-radio-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.pickup-radio-detail {
  font-size: 10px;
  color: var(--cream-muted);
  letter-spacing: 0.4px;
}

/* ─── Pickup calendar ─────────────────────────────────────────── */
.pickup-cal {
  display: none;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(200,146,42,0.18);
  border-radius: 8px;
  padding: 12px 10px 10px;
  margin: 12px 0 4px;
}
.pickup-cal--visible { display: block; }

.pickup-cal-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cal-nav {
  background: none;
  border: 1px solid rgba(200,146,42,0.3);
  color: var(--gold);
  width: 26px;
  height: 26px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cal-nav:hover:not(:disabled) { background: rgba(200,146,42,0.15); }
.cal-nav:disabled { opacity: 0.25; cursor: default; }

.cal-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.cal-weekdays span {
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  color: rgba(201,185,154,0.5);
  padding: 2px 0;
}
.cal-sat-hdr { color: var(--gold) !important; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border-radius: 50%;
  border: none;
  background: none;
  cursor: default;
  color: rgba(201,185,154,0.25);
  font-family: 'Lato', sans-serif;
}

.cal-day--sat {
  color: var(--gold);
  font-weight: 700;
  cursor: pointer;
  background: rgba(200,146,42,0.1);
  border: 1px solid rgba(200,146,42,0.3);
  transition: background 0.15s;
}
.cal-day--sat:hover { background: rgba(200,146,42,0.25); }

.cal-day--sel {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  border-color: var(--gold) !important;
}

.cal-label {
  text-align: center;
  font-size: 10px;
  color: rgba(201,185,154,0.5);
  letter-spacing: 0.5px;
  margin-top: 8px;
  min-height: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.cal-label--set {
  color: var(--gold);
}

/* Modal responsive */
@media (max-width: 900px) {
  .pack-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .pack-card--reserve { grid-column: 1 / -1; max-width: 320px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .pack-modal {
    padding: 40px 16px 44px;
  }
  .pack-modal-title { font-size: 24px; }
  .pack-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pack-card--reserve { max-width: 100%; }
}

/* =============================================================
   GARDEN STRIP
   ============================================================= */
.garden-strip {
  background: var(--charcoal);
  padding-bottom: 64px;
}

.garden-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.garden-item--large { grid-column: span 2; }

.garden-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  height: 260px;
  background: var(--bg-dark);
}

.garden-item--large { height: 360px; }

.garden-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.garden-item:hover img { transform: scale(1.05); }

.garden-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(26,15,10,0.85));
  color: var(--cream-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
}


/* =============================================================
   TRUST PILLARS
   ============================================================= */
.trust-pillars {
  background: var(--bg-mid);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 60px;
  padding: 48px 40px;
  border-top: 1px solid rgba(200,146,42,0.15);
}

.trust-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  max-width: 140px;
}

.trust-pillar-icon {
  font-size: 30px;
  opacity: 0.75;
  line-height: 1;
}

.trust-pillar-text {
  color: var(--cream-muted);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  line-height: 1.5;
}


/* =============================================================
   CLOSING IMAGE
   ============================================================= */
.closing-photo {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  line-height: 0;
}

.closing-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}


/* =============================================================
   CONTACT
   ============================================================= */
.contact-section {
  background: var(--bg-dark);
  background-image: radial-gradient(ellipse at center, #5A2E14 0%, #3A1C0C 50%, var(--bg-dark) 80%);
  padding-bottom: 88px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 16px 60px 0;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 34px);
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.22;
  font-weight: 700;
  text-align: center;
}

.contact-desc {
  color: var(--cream-muted);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.7;
  text-align: center;
}

.contact-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--cream);
  font-size: 14px;
}

.contact-detail a {
  color: var(--gold);
  transition: opacity 0.2s;
}

.contact-detail a:hover { opacity: 0.75; text-decoration: underline; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(245,236,215,0.07);
  border: 1px solid rgba(245,236,215,0.14);
  border-radius: 4px;
  color: var(--cream);
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(245,236,215,0.28); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }

.contact-form select option { background: var(--bg-dark); color: var(--cream); }

.contact-form textarea { resize: vertical; min-height: 110px; }

.form-submit {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Lato', sans-serif;
}

.form-submit:hover { background: var(--gold-light); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Form success state */
.form-success {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.form-success-icon {
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}

.form-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--cream);
  font-weight: 700;
}

.form-success-body {
  color: var(--cream-muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 340px;
}

.form-success-link {
  margin-top: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(200,146,42,0.4);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.form-success-link:hover { color: var(--gold-light); }


/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(200,146,42,0.2);
  padding: 44px 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-sub {
  color: var(--cream-muted);
  font-size: 11px;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.footer-tagline {
  color: var(--gold);
  font-size: 11px;
  margin-top: 4px;
  font-style: italic;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(245,236,215,0.38);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold); }

.footer-social { display: flex; align-items: center; }

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,236,215,0.5);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s;
  text-decoration: none;
}

.social-link:hover { color: var(--gold); }

.footer-copy {
  color: rgba(245,236,215,0.24);
  font-size: 11px;
  letter-spacing: 0.5px;
  line-height: 1.7;
  text-align: right;
}


/* =============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================= */
@media (max-width: 1024px) {
  .site-nav { padding: 14px 28px; }

  .story-inner { grid-template-columns: 260px 1fr; gap: 36px; }

  .shop-grid { grid-template-columns: 1fr 1fr; }

  .garden-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 28px;
  }

  .garden-item--large { grid-column: span 2; height: 300px; }
  .garden-item        { height: 220px; }
}


/* =============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================= */
@media (max-width: 768px) {
  .site-nav { padding: 10px 20px; }

  .nav-hamburger { display: block; transition: top 0.35s ease-in-out; }
  .nav-bottom-bar { display: none; }

  .nav-brand-center { gap: 4px; }
  .nav-logo  { width: 180px; }
  .nav-brand { font-size: 16px; }
  .nav-sub   { font-size: 11px; letter-spacing: 1.5px; }

  .site-nav.nav--scrolled { padding: 0; min-height: 68px; }
  .site-nav.nav--scrolled .nav-brand-center {
    opacity: 0;
    max-height: 0;
    pointer-events: none;
  }
  .site-nav.nav--scrolled .nav-bottom-bar { display: none; }
  .site-nav.nav--scrolled .nav-hamburger {
    display: block;
    top: 50%;
    transform: translateY(-50%);
  }
  .site-nav.nav--scrolled .nav-scrolled-brand { display: flex; }

  .hero-photo { aspect-ratio: 3 / 2; }
  .hero-photo img { object-position: center center; }

  .headline-block  { padding: 40px 24px 16px; }
  .headline-btns   { flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-outline     { width: 100%; max-width: 280px; text-align: center; }

  .story-section { padding: 12px 24px 56px; }
  .story-inner   { grid-template-columns: 1fr; gap: 28px; }
  .story-slideshow { aspect-ratio: 4 / 3; }

  .shop-section { padding: 12px 20px 56px; }
  .shop-grid    { grid-template-columns: 1fr; gap: 20px; }

  .garden-strip { padding-bottom: 40px; }
  .garden-grid  { grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 20px; }
  .garden-item--large { grid-column: span 2; height: 240px; }
  .garden-item        { height: 180px; }

  .trust-pillars { gap: 24px 36px; padding: 36px 20px; }

  .closing-photo     { aspect-ratio: 16 / 9; }
  .closing-photo img { object-position: center 20%; }

  .contact-section     { padding-bottom: 56px; }
  .contact-inner       { grid-template-columns: 1fr; gap: 36px; padding: 12px 20px 0; }
  .form-row            { grid-template-columns: 1fr; }

  .section-divider-row { padding: 16px 24px 14px; }

  .site-footer  { padding: 36px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy  { text-align: center; }
  .footer-nav   { justify-content: center; }
}


/* =============================================================
   RESPONSIVE — SMALL MOBILE (≤ 400px)
   ============================================================= */
@media (max-width: 400px) {
  .headline-title { font-size: 24px; }
  .nav-brand      { font-size: 13px; }
  .divider-label  { font-size: 14px; }
}


/* =============================================================
   LANDSCAPE — short viewport (phones in landscape)
   ============================================================= */
@media (max-height: 500px) and (orientation: landscape) {
  .site-nav       { padding: 8px 20px; }
  .nav-logo       { width: 120px; }
  .nav-brand      { font-size: 16px; }
  .nav-sub        { display: none; }
  .nav-bottom-bar { margin-top: 6px; padding-top: 6px; }
  .nav-hamburger  { top: 10px; }
}
