/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a2e1f;
  background: #f7f9f6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ───────────────────────────────────────── */
:root {
  --green-900: #0d3318;
  --green-800: #1a5c2a;
  --green-700: #227a36;
  --green-600: #2d9d46;
  --green-500: #4ade80;
  --green-100: #d1f5d8;
  --green-50:  #eefbf2;
  --cream:     #f7f9f6;
  --cream-dark:#eef2ea;
  --slate:     #2c3e35;
  --slate-light:#4a6355;
  --white:     #ffffff;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 1px 3px rgba(13,51,24,.08), 0 4px 24px rgba(13,51,24,.06);
  --shadow-lg: 0 8px 40px rgba(13,51,24,.12);
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; color: var(--green-900); }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--slate-light); }
strong { color: var(--green-900); font-weight: 600; }

/* ── Layout ───────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.938rem;
  padding: 14px 32px; border-radius: 50px; transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-primary { background: var(--green-800); color: var(--white); }
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-light { background: var(--white); color: var(--green-900); }
.btn-light:hover { background: var(--green-50); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }

/* ── Section Tags ─────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-600);
  background: var(--green-100); padding: 6px 16px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag.light { background: rgba(255,255,255,.15); color: var(--green-300, #86efac); }
.section-title { margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-desc { font-size: 1.063rem; max-width: 560px; margin-bottom: 48px; }
.section-desc.light { color: rgba(255,255,255,.75); }
.section-header { margin-bottom: 64px; }
.section-header.light { text-align: center; }
.section-header.light .section-desc { margin-left: auto; margin-right: auto; }

/* ── Header ───────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247,249,246,.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,92,42,.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(13,51,24,.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-text { font-family: var(--font-serif); font-size: 1.25rem; color: var(--green-900); font-weight: 400; }
.logo-num { color: var(--green-600); font-weight: 700; }
.logo-text-light { color: var(--white); }
.logo-icon { flex-shrink: 0; }

/* ── Nav ──────────────────────────────────────────────── */
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-list a {
  font-size: 0.938rem; font-weight: 500; color: var(--slate);
  padding: 8px 16px; border-radius: 8px; transition: all 0.2s ease;
}
.nav-list a:hover { color: var(--green-800); background: var(--green-50); }
.nav-toggle { display: none; padding: 8px; color: var(--green-900); }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 24px 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(26,92,42,.7) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(13,51,24,.6) 0%, transparent 55%),
    linear-gradient(160deg, rgba(13,51,24,.82) 0%, rgba(26,92,42,.72) 40%, rgba(45,157,70,.55) 100%);
}
.hero-scrim { position: absolute; inset: 0; background: rgba(10,30,15,.25); }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 820px; }
.hero-eyebrow {
  font-family: var(--font-sans); font-size: 0.813rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-500);
  margin-bottom: 24px;
}
.hero-headline {
  color: var(--white); margin-bottom: 24px;
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.188rem); color: rgba(255,255,255,.8);
  max-width: 600px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,.15);
}
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-serif); font-size: 1.75rem; color: var(--white); }
.stat-label { font-size: 0.813rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.5); animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── Products ─────────────────────────────────────────── */
.products { background: var(--cream); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img-wrap { overflow: hidden; aspect-ratio: 3/2; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-card-body { padding: 28px 32px 32px; }
.product-card-body h3 { margin-bottom: 10px; font-size: 1.375rem; }
.product-card-body p { font-size: 0.938rem; line-height: 1.7; }

/* ── About ────────────────────────────────────────────── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: -32px; right: -32px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid var(--white);
  aspect-ratio: 3/2;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-desc { margin-bottom: 20px; }
.about-content > p { margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.value { display: flex; gap: 16px; align-items: flex-start; }
.value-icon { color: var(--green-600); flex-shrink: 0; margin-top: 2px; }
.value strong { display: block; margin-bottom: 4px; font-size: 1rem; }
.value span { font-size: 0.938rem; }

/* ── Fresh ────────────────────────────────────────────── */
.fresh {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 50%, var(--green-700) 100%);
  position: relative;
}
.fresh::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.fresh-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 32px;
  position: relative;
}
.fresh-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 40px 32px;
  transition: all 0.3s ease;
}
.fresh-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.fresh-num {
  font-family: var(--font-serif); font-size: 3rem; line-height: 1;
  color: var(--green-500); margin-bottom: 16px;
}
.fresh-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.25rem; }
.fresh-card p { color: rgba(255,255,255,.7); font-size: 0.938rem; line-height: 1.7; }

/* ── CTA Banner ───────────────────────────────────────── */
.cta-banner {
  background: var(--green-800);
  padding: 80px 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-text { flex: 1; min-width: 280px; }
.cta-title { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta-desc { color: rgba(255,255,255,.75); font-size: 1.063rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Visit ────────────────────────────────────────────── */
.visit { background: var(--cream); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.visit-details { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.visit-row { display: flex; gap: 16px; align-items: flex-start; }
.visit-icon { color: var(--green-600); flex-shrink: 0; margin-top: 2px; }
.visit-row dt { width: 100px; flex-shrink: 0; }
.visit-row dd { margin: 0; }
.visit-row strong { display: block; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-800); margin-bottom: 4px; }
.visit-row span { font-size: 0.938rem; color: var(--slate-light); line-height: 1.6; }
.visit-row a { color: var(--green-700); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.visit-row a:hover { color: var(--green-900); }
.visit-map { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ── Contact ──────────────────────────────────────────── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-channels { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.contact-ch {
  display: flex; gap: 16px; align-items: center;
  padding: 20px 24px; border-radius: var(--radius);
  background: var(--green-50); border: 1px solid var(--green-100);
  transition: all 0.2s ease;
}
.contact-ch:hover { background: var(--green-100); transform: translateX(4px); }
.contact-ch-icon { color: var(--green-700); flex-shrink: 0; }
.contact-ch strong { display: block; font-size: 0.938rem; color: var(--green-900); }
.contact-ch span { font-size: 0.875rem; color: var(--slate-light); }
.contact-ch a { color: var(--slate-light); text-decoration: underline; text-underline-offset: 3px; }
.contact-ch a:hover { color: var(--green-800); }

/* ── Form ─────────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--cream); border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid var(--green-100);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.875rem; font-weight: 600; color: var(--green-900);
}
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-sans); font-size: 0.938rem; color: var(--slate);
  background: var(--white); border: 1.5px solid var(--green-100);
  border-radius: var(--radius); padding: 12px 16px; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(45,157,70,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.813rem; color: var(--slate-light); text-align: center; }
.form-success {
  text-align: center; padding: 48px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.success-icon { color: var(--green-600); }
.form-success h3 { font-size: 1.5rem; color: var(--green-900); }
.form-success p { color: var(--slate-light); }

/* ── Footer ───────────────────────────────────────────── */
.footer { background: var(--green-900); color: rgba(255,255,255,.7); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px;
}
.footer-brand p { margin-top: 16px; font-size: 0.938rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-links, .footer-hours, .footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-links strong, .footer-hours strong, .footer-contact strong {
  font-size: 0.813rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--green-500); margin-bottom: 4px;
}
.footer-links ul, .footer-hours ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a { font-size: 0.938rem; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-hours li { display: flex; justify-content: space-between; font-size: 0.875rem; gap: 16px; }
.footer-hours li span:last-child { color: var(--green-500); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.813rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* ── Mobile Nav ───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-list {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(247,249,246,.98); backdrop-filter: blur(16px);
    flex-direction: column; padding: 24px; gap: 4px;
    border-bottom: 1px solid rgba(26,92,42,.08);
    transform: translateY(-120%); opacity: 0;
    transition: all 0.3s ease; pointer-events: none;
  }
  .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-list a { padding: 14px 16px; width: 100%; }
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid, .visit-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-img-float { right: 16px; bottom: -24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}
@media (max-width: 640px) {
  section { padding: 72px 0; }
  .hero { padding: 100px 20px 60px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 40px; height: 1px; }
  .product-grid { grid-template-columns: 1fr; }
  .fresh-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .visit-row dt { width: auto; }
  .contact-form-wrap { padding: 24px; }
}

/* ── Reduced Motion ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .hero-scroll { animation: none; }
}
