/* ============================================================
   LOCAL BRAND FONTS — Bookman Std
   ============================================================ */
@font-face {
  font-family: 'BookmanStd';
  src: url('../fonts/BookmanStd-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BookmanStd';
  src: url('../fonts/BookmanStd-Medium.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BookmanStd';
  src: url('../fonts/BookmanStd-Demi.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BookmanStd';
  src: url('../fonts/BookmanStd-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --green-bright:   #3dae2b;
  --green-dark:     #0b6722;
  --green-deep:     #074d1a;
  --cream:          #f8f3eb;
  --cream-dark:     #efe8d8;
  --warm-white:     #fdfaf5;
  --charcoal:       #1c1c1c;
  --dark-brown:     #2b1f0e;
  --terracotta:     #754a3a;
  --terracotta-light: #c49b8a;
  --text-body:      #3a3228;
  --text-muted:     #7a6f62;

  --font-serif: 'BookmanStd', Georgia, 'Times New Roman', serif;
  --font-sans:  'BookmanStd', Georgia, serif;
  --font-body:  'BookmanStd', Georgia, serif;
  --font-hand:  'Cause', cursive;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-xl:   48px;
  --shadow-soft: 0 8px 40px rgba(0,0,0,.12);
  --shadow-card: 0 4px 24px rgba(0,0,0,.09);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-body);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
  z-index: 1;
  opacity: .5;
  mix-blend-mode: multiply;
}

/* ============================================================
   POLAROID FRAMES
   ============================================================ */
.polaroid {
  background: #fffef8;
  padding: 12px 12px 44px;
  box-shadow: 2px 4px 14px rgba(0,0,0,.18), 0 1px 3px rgba(0,0,0,.1);
  display: inline-block;
  position: relative;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.polaroid:hover {
  box-shadow: 4px 10px 28px rgba(0,0,0,.24);
  z-index: 10;
}
.polaroid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.03);
}
.polaroid-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  text-align: center;
  padding: 8px 10px 10px;
  font-family: var(--font-hand);
  font-size: 1.05rem;
  font-weight: 500;
  color: #4a3f32;
  line-height: 1.2;
}
/* clear/scotch tape strip */
.polaroid::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  width: 52px; height: 22px;
  background: rgba(210,210,210,.48);
  border: 1px solid rgba(160,160,160,.22);
  z-index: 2;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
/* rotation variants */
.polaroid-tilt-l  { transform: rotate(-4deg); }
.polaroid-tilt-ll { transform: rotate(-7.5deg); }
.polaroid-tilt-r  { transform: rotate(3.5deg); }
.polaroid-tilt-rr { transform: rotate(6deg); }
.polaroid-tilt-s  { transform: rotate(1.5deg); }
.polaroid-tilt-l:hover  { transform: rotate(-2deg) scale(1.04); }
.polaroid-tilt-ll:hover { transform: rotate(-5deg) scale(1.04); }
.polaroid-tilt-r:hover  { transform: rotate(1.5deg) scale(1.04); }
.polaroid-tilt-rr:hover { transform: rotate(4deg) scale(1.04); }
.polaroid-tilt-s:hover  { transform: rotate(.5deg) scale(1.04); }

/* ============================================================
   POLAROID WALL SECTION
   ============================================================ */
.polaroid-wall {
  background: #f0ebe0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='500' height='500' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 400px;
  padding: 48px 0 52px;
  position: relative;
  overflow: hidden;
}
.polaroid-wall::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;

  background-image:
    linear-gradient(45deg, var(--green-dark) 25%, transparent 25%),
    linear-gradient(-45deg, var(--green-dark) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--green-dark) 75%),
    linear-gradient(-45deg, transparent 75%, var(--green-dark) 75%);

  background-size: 12px 12px;
  background-position: 0 0, 0 6px, 6px -6px, -6px 0;
  background-color: white;
}
.pw-header {
  text-align: center;
  margin-bottom: 32px;
}
.pw-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.15;
  margin-bottom: 10px;
}
.pw-headline em { font-style: italic; color: var(--green-dark); }
.pw-sub {
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: var(--text-muted);
}
.pw-scrapbook {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  flex-wrap: wrap;
  padding: 20px 0;
  position: relative;
}
.pw-p1 { margin-right: -18px; margin-bottom: 24px; z-index: 3; }
.pw-p2 { margin-right: -12px; margin-bottom: 0; z-index: 4; }
.pw-p3 { margin-right: -14px; margin-bottom: 30px; z-index: 5; }
.pw-p4 { margin-right: -10px; margin-bottom: 8px; z-index: 3; }
.pw-p5 { margin-bottom: 18px; z-index: 4; }
.pw-polaroid    { width: 210px; height: 210px; }
.pw-polaroid-lg { width: 250px; height: 250px; }

/* ============================================================
   PAPER / ORGANIC TEXTURES ON LIGHT SECTIONS
   ============================================================ */
.intro {
  background: var(--warm-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 350px;
}
.farm-tours {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 350px;
}

/* ============================================================
   WAVY ORGANIC SECTION DIVIDERS
   ============================================================ */
.wavy-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}
.wavy-divider svg { display: block; width: 100%; }

/* ============================================================
   HANDWRITTEN ACCENT LABELS
   ============================================================ */
.hand-label {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 12px;
  display: block;
  letter-spacing: .01em;
}
.hand-label-light { color: rgba(255,255,255,.65); }

/* ============================================================
   ORGANIC INTRO VISUAL — polaroid stack
   ============================================================ */
.intro-polaroid-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 40px 40px;
}
.intro-pol-main  { width: 320px; height: 320px; z-index: 3; position: relative; }
.intro-pol-back1 { position: absolute; top: 10px; left: -10px; width: 280px; height: 280px; z-index: 2; }
.intro-pol-back2 { position: absolute; top: 30px; right: -30px; width: 240px; height: 240px; z-index: 1; }
.intro-pol-corner { position: absolute; bottom: -10px; right: 10px; width: 170px; height: 170px; z-index: 4; }

/* ============================================================
   FARM TOUR CARDS
   ============================================================ */
.ft-card {
  background: #fffef8;
  border-radius: 4px 18px 18px 4px;
  overflow: hidden;
  box-shadow: 2px 4px 18px rgba(0,0,0,.11), 0 1px 4px rgba(0,0,0,.07);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
  border: 1px solid rgba(0,0,0,.05);
}
.ft-card:hover {
  transform: translateY(-6px) rotate(.4deg);
  box-shadow: 6px 16px 40px rgba(0,0,0,.14);
}

/* ============================================================
   ORGANIC ROPE DIVIDER
   ============================================================ */
.rope-line {
  width: 60px;
  height: 3px;
  background: repeating-linear-gradient(90deg,
    var(--terracotta) 0px, var(--terracotta) 6px,
    transparent 6px, transparent 9px);
  border-radius: 2px;
  margin: 0 0 28px;
  opacity: .7;
}

/* ============================================================
   RESPONSIVE — polaroid wall
   ============================================================ */
@media (max-width: 768px) {
  .pw-scrapbook { gap: 16px; }
  .pw-p1,.pw-p2,.pw-p3,.pw-p4,.pw-p5 { margin: 8px; z-index: 1; }
  .pw-polaroid    { width: 160px; height: 160px; }
  .pw-polaroid-lg { width: 180px; height: 180px; }
  .intro-polaroid-stack { padding: 20px 10px; }
  .intro-pol-back1, .intro-pol-back2 { display: none; }
  .intro-pol-main { width: 260px; height: 260px; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .45s; }

/* ============================================================
   NAVIGATION — centered logo, split links
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
  overflow: visible;
}
.nav.scrolled {
  background: rgba(8, 35, 12, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}
/* left nav links — flush right so links hug the logo */
.nav-left { display: flex; align-items: center; justify-content: flex-end; }
.nav-links-left {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding-right: 12px;
}
/* right nav links — flush left so links hug the logo */
.nav-right { display: flex; align-items: center; justify-content: flex-start; }
.nav-links-right {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding-left: 12px;
}
.nav-links-left a,
.nav-links-right a {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links-left a:hover,
.nav-links-right a:hover { color: var(--green-bright); }

/* centered logo */
.nav-logo-wrap {
  display: flex;
  justify-content: center;
}
.nav-logo-link {
  display: block;
  position: relative;
  z-index: 1001;
}
.nav-logo-img {
  height: 160px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.35));
  transition: height .4s cubic-bezier(.22,1,.36,1), transform .3s cubic-bezier(.22,1,.36,1);
}
.nav.scrolled .nav-logo-img {
  height: 72px;
}
.nav-logo-img:hover { transform: scale(1.04); }

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-dropdown-trigger:hover { color: var(--green-bright); }
.nav-dropdown-arrow {
  display: inline-block;
  font-size: .6rem;
  transition: transform .2s;
  margin-top: 1px;
}
.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  background: rgba(5, 24, 9, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(61,174,43,.18);
  border-radius: 10px;
  padding: 6px 0;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 999;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover {
  background: rgba(61,174,43,.1);
  color: var(--green-bright);
}
.nav-dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 4px 12px;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1002;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .22s cubic-bezier(.22,1,.36,1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-bright);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--green-dark);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--charcoal);
  color: #fff;
}
.btn-dark:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.btn-terracotta {
  background: var(--terracotta);
  color: #fff;
}
.btn-terracotta:hover {
  background: #9a4a2c;
  transform: translateY(-2px);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { position: relative; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.section-label-green { color: var(--green-bright); }
.section-label-terracotta { color: var(--terracotta-light); }
.section-label-cream { color: var(--cream-dark); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a1f0d;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/CD%20Farm%20Store.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 7, 0.8);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 90px 48px 0;
  width: 100%;
}
.hero-banner {
  display: inline-block;
  position: relative;
  padding: 28px 56px 32px;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,.28);
  border-bottom: 1px solid rgba(255,255,255,.28);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp .8s .3s forwards;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
  animation: pulse 2s 1s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: .01em;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp .9s .5s forwards;
}
.hero-headline em { font-style: italic; color: var(--green-bright); }
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.72;
  opacity: 0;
  animation: fadeUp .9s .7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp .9s .9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.5);
  font-family: var(--font-sans);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s both;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
  animation: scrollLine 2s 1.5s infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-badge {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-60%);
  z-index: 2;
  width: 140px; height: 140px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid var(--green-bright);
  animation: fadeUp 1s 1.1s both, badgeSpin 30s linear infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
@keyframes badgeSpin {
  from { transform: translateY(-60%) rotate(0deg); }
  to   { transform: translateY(-60%) rotate(360deg); }
}
.hero-badge-inner { animation: badgeSpinReverse 30s linear infinite; text-align: center; }
@keyframes badgeSpinReverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
.hero-badge-year {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--terracotta-light);
  line-height: 1;
}
.hero-badge-text {
  font-family: var(--font-sans);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-top: 4px;
  line-height: 1.4;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--green-bright);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track-2 { animation-delay: -15s; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
}
.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  flex-shrink: 0;
}

/* ============================================================
   INTRO / WELCOME
   ============================================================ */
.intro {
  background: var(--warm-white);
  padding: 120px 0;
}
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.15;
  margin-bottom: 24px;
}
.intro-headline em { font-style: italic; color: var(--green-dark); }
.intro-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 400;
}
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-dark);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.intro-visual { position: relative; }
.intro-img-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.intro-img-float {
  position: absolute;
  bottom: -40px; left: -50px;
  width: 220px; height: 270px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--warm-white);
  box-shadow: var(--shadow-soft);
}
.intro-badge-float {
  position: absolute;
  top: 32px; right: -24px;
  background: var(--terracotta);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 8px 24px rgba(184,92,58,.35);
}
.intro-badge-float strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.intro-badge-float span {
  font-family: var(--font-sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}

/* ============================================================
   ICE CREAM (DARK GREEN SECTION)
   ============================================================ */
.ice-cream {
  background: var(--green-deep);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ice-cream-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 300px;
  opacity: 0.6;
}
.ice-cream-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ice-cream-visual { position: relative; order: -1; }
.ic-img-hero {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-sm) var(--radius-xl) var(--radius-xl) var(--radius-xl);
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
.ic-flavor-tags {
  position: absolute;
  bottom: 32px; left: -24px;
  background: rgba(5, 30, 10, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(61,174,43,.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ic-flavor-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .06em;
}
.ic-flavor-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ic-count-badge {
  position: absolute;
  top: -20px; right: -20px;
  background: var(--green-bright);
  color: #fff;
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(61,174,43,.3);
}
.ic-count-badge strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.ic-count-badge span {
  font-family: var(--font-sans);
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .9;
}
.ic-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.ic-headline em { font-style: italic; color: var(--green-bright); }
.ic-body {
  font-size: 1.02rem;
  color: rgba(255,255,255,.7);
  line-height: 1.78;
  margin-bottom: 40px;
}
.ic-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.ic-feature {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 20px;
}
.ic-feature-icon { font-size: 1.6rem; margin-bottom: 10px; }
.ic-feature-title {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: .05em;
  margin-bottom: 5px;
}
.ic-feature-text { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.55; }

/* ============================================================
   FARM TOURS
   ============================================================ */
.farm-tours {
  background: var(--cream);
  padding: 130px 0;
  position: relative;
}
.farm-tours::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 350px;
}
.ft-inner { position: relative; z-index: 1; }
.ft-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 40px;
}
.ft-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.1;
}
.ft-headline em { font-style: italic; color: var(--green-dark); }
.ft-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 28px;
}
.ft-polaroid-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding: 0 20px;
}
.ft-pol    { width: 180px; height: 180px; }
.ft-pol-lg { width: 210px; height: 210px; }
.ft-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ft-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
}
.ft-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.ft-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .5s ease;
}
.ft-card:hover .ft-card-img { transform: scale(1.04); }
.ft-card-img-wrap { overflow: hidden; }
.ft-card-body { padding: 28px; }
.ft-card-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--green-dark);
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.ft-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.25;
  margin-bottom: 10px;
}
.ft-card-text {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}
.ft-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ft-card-list li {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.ft-card-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 700;
}
/* ============================================================
   CERTIFICATIONS STRIP
   ============================================================ */
.cert-strip {
  background: var(--charcoal);
  padding: 28px 48px;
  position: relative;
}
.cert-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 300px;
  pointer-events: none;
}
.cert-logos {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cert-logo-item {
  display: flex;
  align-items: center;
  opacity: .88;
  transition: opacity .2s;
}
.cert-logo-item:hover { opacity: 1; }
.cert-logo {
  height: 90px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 6px;
  mix-blend-mode: luminosity;
  filter: brightness(1.1);
}
.cert-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ============================================================ */

.ft-card-link {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.ft-card:hover .ft-card-link { gap: 10px; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  background: var(--charcoal);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.products::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 300px;
}
.prod-inner { position: relative; z-index: 1; }
.prod-header { text-align: center; margin-bottom: 70px; }
.prod-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.prod-headline em { font-style: italic; color: var(--green-bright); }
.prod-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}
.prod-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.prod-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.prod-card-1 { grid-row: span 2; }
.prod-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
  display: block;
}
.prod-card-1 img { min-height: 500px; }
.prod-card:not(.prod-card-1) img { min-height: 220px; }
.prod-card:hover img { transform: scale(1.06); }
.prod-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,18,7,.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.prod-card-label {
  font-family: var(--font-sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 6px;
}
.prod-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.prod-card-1 .prod-card-title { font-size: 1.9rem; }

/* ============================================================
   FULL-WIDTH FEATURE (KITCHEN)
   ============================================================ */
.kitchen-feature {
  position: relative;
  height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kitchen-feature-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/burger-and-chips.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.kitchen-feature-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 7, 0.62);
}
.kitchen-feature-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: 100%;
  padding: 0 48px;
  text-align: center;
}
.kf-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
}
.kf-headline em { font-style: italic; color: var(--green-bright); }
.kf-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.kf-items {
  display: flex;
  gap: 12px 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.kf-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .03em;
}
.kf-item-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  flex-shrink: 0;
}

/* ============================================================
   EVENTS
   ============================================================ */
.events {
  background: var(--warm-white);
  padding: 80px 0;
}
.ev-header { text-align: center; margin-bottom: 70px; }
.ev-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.1;
  margin-bottom: 16px;
}
.ev-headline em { font-style: italic; color: var(--green-dark); }
.ev-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}
.ev-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.ev-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  height: 500px;
}
.ev-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.ev-card:hover .ev-card-bg { transform: scale(1.05); }
.ev-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 18, 7, 0.88) 0%, transparent 65%);
}
.ev-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  z-index: 1;
}
.ev-card-date {
  display: inline-block;
  background: var(--green-bright);
  color: #fff;
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.ev-card-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}
.ev-card-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin-bottom: 24px;
}
.ev-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  color: var(--green-bright);
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: gap .2s;
}
.ev-card:hover .ev-card-link { gap: 12px; }

/* ============================================================
   HISTORY / CENTENNIAL FARM
   ============================================================ */
.history {
  background: var(--cream);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.hist-visual { position: relative; }
.hist-img-main {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-sm) var(--radius-sm) var(--radius-xl) var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.hist-centennial-badge {
  position: absolute;
  top: 30px; left: -20px;
  background: var(--green-dark);
  color: #fff;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(7,77,26,.45);
}
.hist-centennial-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--terracotta-light);
  line-height: 1;
  margin-bottom: 4px;
}
.hist-centennial-badge span {
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.hist-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hist-headline em { font-style: italic; color: var(--green-dark); }
.hist-body {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
}
.hist-timeline {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hist-year {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.hist-year:last-child { border-bottom: none; }
.hist-year-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  min-width: 60px;
  line-height: 1.4;
}
.hist-year-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--green-dark);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 320px;
}
.test-inner { position: relative; z-index: 1; }
.test-header { text-align: center; margin-bottom: 56px; }
.test-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.test-headline em { font-style: italic; color: var(--green-bright); }
.test-polaroid-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.test-pol    { width: 155px; height: 155px; }
.test-pol-lg { width: 185px; height: 185px; }
.tp-p1 { margin-bottom: 20px; }
.tp-p2 { margin-bottom: 0; }
.tp-p3 { margin-bottom: 14px; }
.tp-p4 { margin-bottom: 30px; }
.test-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.test-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: background .3s, transform .3s;
}
.test-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.test-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--terracotta-light);
  font-size: 1rem;
}
.test-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.88);
  line-height: 1.7;
  margin-bottom: 28px;
}
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.2);
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-bright);
  flex-shrink: 0;
}
.test-name {
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.test-location { font-size: .76rem; color: rgba(255,255,255,.5); }

/* ============================================================
   FAMILY MEMORY STRIP
   ============================================================ */
.family-strip {
  background: #e8e0d0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='500' height='500' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
  background-size: 380px;
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.family-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg,
    var(--terracotta) 0px, var(--terracotta) 18px,
    transparent 18px, transparent 26px,
    var(--green-dark) 26px, var(--green-dark) 40px,
    transparent 40px, transparent 48px);
  opacity: .55;
}
.fs-header { text-align: center; margin-bottom: 48px; }
.fs-headline {
  font-family: var(--font-hand);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--dark-brown);
  line-height: 1.2;
}
.fs-headline em { color: var(--green-dark); font-style: normal; }
.fs-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px;
}
.fs-pol    { width: 190px; height: 190px; }
.fs-pol-sm { width: 160px; height: 160px; }
.fs-pol-lg { width: 220px; height: 220px; }
.fs-p1 { margin-bottom: 30px; }
.fs-p2 { margin-bottom: 0; }
.fs-p3 { margin-bottom: 20px; }
.fs-p4 { margin-bottom: 40px; }
.fs-p5 { margin-bottom: 10px; }
.fs-p6 { margin-bottom: 28px; }
.fs-note { display: flex; justify-content: center; margin-top: 52px; }
.fs-note-inner {
  background: #fffbe8;
  border: 1px solid #c8a86a;
  padding: 16px 24px;
  transform: rotate(.8deg);
  box-shadow: 2px 4px 10px rgba(0,0,0,.12);
  border-radius: 2px;
  max-width: 380px;
  text-align: center;
  position: relative;
}
.fs-note-inner::before {
  content: '';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 44px; height: 18px;
  background: rgba(210,210,210,.5);
  border: 1px solid rgba(160,160,160,.22);
  border-radius: 2px;
}
.fs-note-text {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: #5a4a10;
  line-height: 1.5;
}

/* ============================================================
   VISIT / CTA
   ============================================================ */
.visit-cta {
  background: var(--warm-white);
  padding: 130px 0;
}
.vc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.vc-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.1;
  margin-bottom: 22px;
}
.vc-headline em { font-style: italic; color: var(--green-dark); }
.vc-body {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 40px;
}
.vc-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.vc-info-label {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vc-info-label::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--green-bright);
  border-radius: 2px;
}
.vc-info-text { font-size: .9rem; color: var(--text-body); line-height: 1.65; }
.vc-visual { position: relative; }
.vc-map-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}
.vc-map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--green-bright);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(61,174,43,.3), 0 0 0 16px rgba(61,174,43,.1);
  animation: pinPulse 2s infinite;
}
@keyframes pinPulse {
  0%,100% { box-shadow: 0 0 0 8px rgba(61,174,43,.3), 0 0 0 16px rgba(61,174,43,.1); }
  50% { box-shadow: 0 0 0 12px rgba(61,174,43,.2), 0 0 0 24px rgba(61,174,43,.05); }
}
.vc-polaroid-float {
  position: absolute;
  top: -36px; right: -20px;
  width: 160px; height: 160px;
  z-index: 5;
}
.vc-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-brown);
  padding: 52px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1;
}
.footer-logo-sub {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 260px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: all .2s;
}
.footer-social-link:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col-title {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col-links a:hover { color: var(--green-bright); }
.footer-col--inline .footer-col-links { flex-direction: row; flex-wrap: wrap; gap: 6px 20px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-copy span { color: var(--green-bright); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: .75rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: 1003;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
  overflow-y: auto;
  padding: 80px 24px 40px;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  transition: color .2s;
  text-align: center;
}
.mobile-menu a:hover { color: var(--green-bright); }
.mobile-menu-sub {
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,.6) !important;
  letter-spacing: .06em;
}
.mobile-menu-sub:hover { color: var(--green-bright) !important; }
.mobile-menu-divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,.18);
  margin: 4px 0;
}
.mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  color: #fff;
  font-size: 1.5rem;
  padding: 8px;
  transition: color .2s;
}
.mobile-close:hover { color: var(--green-bright); }

/* ============================================================
   ICE CREAM FLAVORS SHOWCASE (bottom section)
   ============================================================ */
.flavors-section {
  background: var(--green-deep);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.flavors-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 300px;
  opacity: .6;
}
.flavors-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.flavors-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.flavors-headline em { font-style: italic; color: var(--green-bright); }
.flavors-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.62);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.72;
  font-weight: 300;
}
.flavors-img-wrap {
  position: relative;
  margin-bottom: 48px;
}
.flavors-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
.flavors-marquee-wrap {
  overflow: hidden;
  width: 100%;
  margin-bottom: 48px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}
.flavors-marquee-row {
  display: flex;
  width: max-content;
  gap: 0;
  margin-bottom: 10px;
}
.flavors-marquee-row:last-child { margin-bottom: 0; }
.flavors-marquee-row--left {
  animation: flavorLeft 32s linear infinite;
}
.flavors-marquee-row--right {
  animation: flavorRight 28s linear infinite;
}
.flavors-marquee-wrap:hover .flavors-marquee-row {
  animation-play-state: paused;
}
@keyframes flavorLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes flavorRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.flavor-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: 10px 22px;
  margin: 0 6px;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  letter-spacing: .03em;
  white-space: nowrap;
  cursor: default;
  transition: background .25s, border-color .25s, color .25s;
}
.flavors-marquee-wrap:hover .flavor-chip {
  background: rgba(255,255,255,.11);
  border-color: rgba(61,174,43,.35);
  color: #fff;
}
.flavor-chip-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.flavors-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav { padding: 0 24px; }
  .nav-links-left, .nav-links-right { gap: 20px; }
  .intro-inner { grid-template-columns: 1fr; gap: 60px; }
  .intro-img-float { display: none; }
  .ice-cream-inner { grid-template-columns: 1fr; gap: 50px; }
  .ice-cream-visual { order: 0; }
  .ft-header { grid-template-columns: 1fr; gap: 20px; }
  .ft-cards { grid-template-columns: 1fr 1fr; }
  .prod-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .prod-card-1 { grid-column: span 2; grid-row: span 1; }
  .hist-inner { grid-template-columns: 1fr; gap: 60px; }
  .test-cards { grid-template-columns: 1fr 1fr; }
  .vc-inner { grid-template-columns: 1fr; gap: 50px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .ev-cards { grid-template-columns: 1fr; }
  .ev-card { height: 420px; }
}

@media (max-width: 768px) {
  .nav-links-left, .nav-links-right { display: none; }
  .hamburger { display: flex; }
  .hero-badge { display: none; }
  .nav-logo-img { height: 72px; }
  .hero-content { padding: 110px 24px 80px; }
  .container { padding: 0 24px; }
  .ft-cards { grid-template-columns: 1fr; }
  .ft-polaroid-row { display: none; }
  .prod-grid { grid-template-columns: 1fr; }
  .prod-card-1 { grid-column: span 1; }
  .test-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .ic-features { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: repeat(3, 1fr); }
  .vc-info-grid { grid-template-columns: 1fr; }
  .vc-polaroid-float { display: none; }
  .kitchen-feature-bg { background-attachment: scroll; }
  .wavy-divider-kitchen { background-attachment: scroll; }
  .events-overview-grid { grid-template-columns: 1fr !important; }
  .hist-img-main { height: 280px; }
  .hist-polaroid-float { display: none; }
  .intro-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-number { font-size: 1.6rem; }
  .intro-badge-float { display: none; }
  .fs-pol-sm { width: 130px; height: 130px; }
  .fs-pol    { width: 150px; height: 150px; }
  .fs-pol-lg { width: 160px; height: 160px; }
}
