:root {
  --forest: #2f4932;
  --forest-dark: #1f3423;
  --cream: #f5f1e7;
  --white: #fcfaf5;
  --gold: #b99a5b;
  --charcoal: #252722;
  --muted: #6b7069;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.hero {
  min-height: 100svh;
  position: relative;
  color: #fff;
  background: url("hero-field.jpg") center 48% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20, 28, 20, .40), rgba(20, 28, 20, .10) 42%, rgba(15, 20, 15, .46)),
    linear-gradient(to right, rgba(18, 28, 20, .20), transparent 55%);
}
.site-nav {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 5vw;
  display: flex;
  align-items: center;
  gap: 34px;
}
.wordmark {
  margin-right: auto;
  text-transform: uppercase;
  letter-spacing: .16em;
  line-height: 1.05;
  font-size: .72rem;
}
.wordmark span, .wordmark strong { display: block; }
.wordmark strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  letter-spacing: .08em;
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.nav-links a { opacity: .92; }
.nav-links a:hover { opacity: 1; }
.nav-toggle { display: none; }

.hero-content {
  z-index: 2;
  position: relative;
  max-width: 920px;
  text-align: center;
  padding: 120px 24px 60px;
}
.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  font-weight: 600;
}
.hero h1,
section h2,
.product-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}
.hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(4rem, 9vw, 8.2rem);
  line-height: .82;
  letter-spacing: -.035em;
  text-shadow: 0 2px 20px rgba(0,0,0,.18);
}
.hero-subtitle {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 155px;
  padding: 14px 22px;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .14em;
  border: 1px solid transparent;
  transition: .25s ease;
}
.btn-primary {
  background: var(--cream);
  color: var(--forest-dark);
}
.btn-primary:hover { background: #fff; transform: translateY(-1px); }
.btn-secondary {
  border-color: rgba(255,255,255,.8);
  color: #fff;
}
.btn-secondary:hover { background: rgba(255,255,255,.12); }
.btn-dark { background: var(--forest-dark); color: #fff; }

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  font-size: 1.4rem;
  animation: bob 1.8s infinite;
}
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.story-section,
.garlic-section,
.season-section,
.gallery-section,
.find-us-section {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 110px 0;
}
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.section-kicker { color: var(--forest); margin-bottom: 12px; }
.section-kicker.light { color: #efe8d7; }
section h2 {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: .95;
  margin: 0 0 24px;
}
.story-copy > p:not(.section-kicker),
.section-heading > p:last-child,
.feature-band-content p:last-child,
.find-us-card p {
  color: var(--muted);
  max-width: 660px;
}
.story-image img {
  height: 680px;
  object-fit: cover;
}
.story-points {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--forest-dark);
}

.garlic-section { padding-top: 40px; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--cream);
  overflow: hidden;
}
.product-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.product-content { padding: 26px; }
.product-label {
  color: var(--gold);
  text-transform: uppercase;
  font-size: .7rem;
  letter-spacing: .18em;
  font-weight: 600;
}
.product-card h3 {
  margin: 4px 0 10px;
  font-size: 2rem;
}

.feature-band {
  min-height: 76vh;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.feature-band-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(18, 30, 20, .72), rgba(18, 30, 20, .20)),
    url("curing.jpg") center / cover no-repeat;
}
.feature-band-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 90vw);
  margin: auto;
}
.feature-band-content h2,
.feature-band-content p {
  max-width: 620px;
}
.feature-band-content p:last-child { color: rgba(255,255,255,.84); }

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d8d2c4;
}
.timeline-item {
  padding: 32px 32px 34px 0;
  border-bottom: 1px solid #d8d2c4;
}
.timeline-item span {
  color: var(--gold);
  text-transform: uppercase;
  font-size: .7rem;
  letter-spacing: .17em;
}
.timeline-item h3 {
  margin: 7px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}
.timeline-item p { color: var(--muted); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-grid img {
  height: 100%;
  object-fit: cover;
  grid-column: span 4;
}
.gallery-grid .wide { grid-column: span 8; }
.gallery-grid .tall { grid-row: span 2; }

.find-us-card {
  background: var(--cream);
  padding: 60px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
.find-us-card h2 { margin-bottom: 12px; }

footer {
  background: var(--forest-dark);
  color: #fff;
  padding: 48px 5vw;
}
.footer-inner {
  width: min(1180px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 26px;
  align-items: center;
}
.footer-inner img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
}
.footer-inner strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
}
.footer-inner p { margin: 4px 0 0; opacity: .75; font-size: .85rem; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 820px) {
  .site-nav { padding: 22px 22px; }
  .nav-toggle {
    display: block;
    background: none;
    border: 0;
    padding: 8px;
    z-index: 6;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
  }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(31,52,35,.97);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    gap: 24px;
    transform: translateY(-100%);
    transition: transform .25s ease;
  }
  .nav-links.open { transform: translateY(0); }

  .hero h1 { font-size: clamp(3.7rem, 17vw, 6rem); }
  .story-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .story-image img { height: 520px; }
  .product-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 180px; }
  .gallery-grid img,
  .gallery-grid .wide { grid-column: span 12; }
  .gallery-grid .tall { grid-row: span 2; }
  .find-us-card {
    padding: 36px 26px;
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-inner {
    grid-template-columns: 76px 1fr;
  }
  .footer-inner img {
    width: 76px;
    height: 76px;
  }
  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .hero-content { padding-top: 100px; }
  .hero-subtitle { max-width: 330px; }
  .story-section,
  .garlic-section,
  .season-section,
  .gallery-section,
  .find-us-section { padding: 78px 0; }
  .story-points { grid-template-columns: 1fr; }
  .gallery-grid { display: block; }
  .gallery-grid img { margin-bottom: 14px; height: auto; aspect-ratio: 4 / 3; }
  .gallery-grid .tall { aspect-ratio: 3 / 4; }
}


/* V2 content sections */
.garlic-education {
  margin-top: 54px;
  padding: 44px;
  background: var(--forest);
  color: #fff;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.garlic-education .section-kicker { color: #e7dcc1; }
.garlic-education h3 {
  margin: 6px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}
.garlic-education > p { margin: 0; color: rgba(255,255,255,.84); }

.practices-section,
.faq-section {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 110px 0;
}
.practices-section {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 70px;
}
.practices-intro > p:last-child { color: var(--muted); }
.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #d8d2c4;
}
.practice-item {
  padding: 28px 28px 30px 0;
  border-bottom: 1px solid #d8d2c4;
}
.practice-item:nth-child(odd) { padding-right: 34px; }
.practice-item span,
.location-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .7rem;
  font-weight: 600;
}
.practice-item h3,
.location-details h3,
.market-details h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin: 8px 0;
  line-height: 1.05;
}
.practice-item p,
.location-details p,
.market-details p { color: var(--muted); }
.organic-note {
  grid-column: 2;
  margin-top: -38px;
  color: var(--muted);
  font-size: .78rem;
  font-style: italic;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  background: var(--cream);
}
.location-photo img {
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}
.location-details,
.market-details {
  padding: 48px 36px;
}
.market-details {
  border-left: 1px solid #d8d2c4;
}
.location-details h3,
.market-details h3 { font-size: 2.2rem; }
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--forest-dark);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-bottom: 1px solid var(--forest-dark);
  padding-bottom: 3px;
}

.faq-section { padding-top: 40px; }
.faq-list { border-top: 1px solid #d8d2c4; }
.faq-list details { border-bottom: 1px solid #d8d2c4; }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 44px 26px 0;
  position: relative;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  max-width: 780px;
  color: var(--muted);
  margin: -4px 0 28px;
}

@media (max-width: 1000px) {
  .nav-links { gap: 18px; font-size: .72rem; }
}

@media (max-width: 820px) {
  .garlic-education,
  .practices-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .organic-note { grid-column: 1; margin-top: 0; }
  .location-grid { grid-template-columns: 1fr; }
  .location-photo img { min-height: 0; max-height: 520px; }
  .market-details { border-left: 0; border-top: 1px solid #d8d2c4; }
}

@media (max-width: 520px) {
  .practices-section,
  .faq-section { padding: 78px 0; }
  .practice-grid { grid-template-columns: 1fr; }
  .garlic-education { padding: 30px 24px; }
  .location-details,
  .market-details { padding: 34px 26px; }
}


/* V3 seasonal offerings + contact */
.offerings-section {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 110px 0;
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d8d2c4;
  border-left: 1px solid #d8d2c4;
}
.offering-card {
  padding: 34px 30px;
  min-height: 260px;
  border-right: 1px solid #d8d2c4;
  border-bottom: 1px solid #d8d2c4;
  display: flex;
  flex-direction: column;
}
.offering-season {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .68rem;
  font-weight: 600;
}
.offering-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin: 10px 0 8px;
}
.offering-card p {
  color: var(--muted);
  margin: 0 0 22px;
}
.offering-card strong {
  margin-top: auto;
  color: var(--forest-dark);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.offerings-note {
  max-width: 820px;
  color: var(--muted);
  font-size: .85rem;
  margin: 26px 0 0;
}
.location-meta {
  margin-top: 20px;
  color: var(--charcoal) !important;
}
.contact-section {
  width: 100%;
  background: var(--forest);
  color: #fff;
  padding: 100px 5vw;
}
.contact-inner {
  width: min(820px, 100%);
  margin: auto;
  text-align: center;
}
.contact-inner h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}
.contact-inner > p:not(.section-kicker) {
  max-width: 650px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,.82);
}
.contact-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: .8rem;
}
.footer-contact a { opacity: .8; }
.footer-contact a:hover { opacity: 1; }

@media (max-width: 1050px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 96px 1fr auto; }
  .copyright { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .offerings-section { padding: 78px 0; }
  .offerings-grid { grid-template-columns: 1fr; }
  .offering-card { min-height: 220px; }
  .contact-section { padding: 78px 5vw; }
}
