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

:root {
  --burgundy:   #8B2020;
  --burgundy-dark: #5E1F1F;
  --green:      #3B4A2F;
  --green-dark: #2A3620;
  --cream:      #E8D5A3;
  --cream-dark: #EDE6D6;
  --brown:      #3E2A1A;
  --brown-mid:  #6B4226;
  --text:       #1C1409;
  --text-light: #5C4033;
  --gold:       #C8952A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Oswald', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* --- TEXTURE OVERLAY --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

/* --- NAVIGATION --- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2px solid var(--brown-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  overflow: visible;
  box-shadow: 0 2px 12px rgba(62,42,26,0.12);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid var(--cream);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  overflow: hidden;
  background-image: url('assets/logo.png');
  background-size: cover;
  background-position: center;
  transform: translateY(10px);
  position: relative;
  z-index: 2;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-brand-name {
  font-family: 'Alfa Slab One', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

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

.btn-preorder {
  background: var(--burgundy);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 3px;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  transition: background 0.2s !important;
}

.btn-preorder:hover { background: var(--burgundy-dark) !important; color: #fff !important; }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(30,15,5,0.2) 0%, rgba(20,10,3,0.38) 60%, rgba(62,42,26,0.58) 100%),
    /* Farm field gradient stand-in */
    linear-gradient(160deg, #7a9e4e 0%, #c8952a 30%, #8B4513 55%, #3B5323 80%, #2d4a1e 100%);
  background-size: cover, cover;
  background-position: center 70%, center center;
  background-repeat: no-repeat, no-repeat;
  background-image: url('assets/hero.jpg'), linear-gradient(160deg, #7a9e4e 0%, #c8952a 30%, #8B4513 55%, #3B5323 80%, #2d4a1e 100%);
  filter: saturate(0.75) brightness(1.12) contrast(0.9) blur(1.6px);
}

/* Decorative sun rays */
.hero-bg::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(255,210,100,0.22) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 28px 28px 24px;
  background: rgba(245,240,230,0.72);
  border: 1px solid rgba(123,45,45,0.2);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(20,10,3,0.22);
  backdrop-filter: blur(2px);
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 800;
  color: var(--burgundy-dark);
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--burgundy-dark);
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--burgundy-dark);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 42px;
  letter-spacing: 0.01em;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.2s ease both;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.22s ease;
  cursor: pointer;
  border: none;
}

.btn-red {
  background: var(--burgundy);
  color: #fff;
  box-shadow: 0 3px 14px rgba(123,45,45,0.4);
}
.btn-red:hover { background: var(--burgundy-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(123,45,45,0.45); }

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 3px 14px rgba(59,74,47,0.4);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline-green:hover { background: var(--green); color: #fff; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.hero-scroll svg { fill: rgba(255,255,255,0.7); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* --- SECTION SHARED --- */
section { padding: 60px 0; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--brown);
  text-align: center;
  margin-bottom: 14px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--burgundy);
  margin: 12px auto 0;
  border-radius: 2px;
}

.divider {
  border: none;
  border-top: 1px solid rgba(107,66,38,0.2);
  margin: 0 40px;
}

/* --- WHAT WE GROW --- */
.grow-section {
  background: var(--cream);
}

.grow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 50px 0 44px;
}

.grow-card {
  text-align: center;
  transition: transform 0.25s ease;
}

.grow-card:hover { transform: translateY(-5px); }

.grow-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 18px rgba(62,42,26,0.18);
  margin-bottom: 16px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.grow-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grow-card-img.peppers {
    background: linear-gradient(135deg, #7a9e4e 0%, #c8952a 50%, #6b4226 100%);
    background-image: url('assets/peppers.jpg');
    background-size: cover;
    background-position: center;
}

.grow-card-img.flowers {
    background: linear-gradient(135deg, #7a9e4e 0%, #c8952a 50%, #6b4226 100%);
    background-image: url('assets/flowers.jpg');
    background-size: cover;
    background-position: center;
}

.grow-card-img.hotsauce {
    background: linear-gradient(135deg, #7a9e4e 0%, #c8952a 50%, #6b4226 100%);
    background-image: url('assets/hotsauce.jpg');
    background-size: cover;
    background-position: center;
}

.grow-card-img.veg{
    background: linear-gradient(135deg, #7a9e4e 0%, #c8952a 50%, #6b4226 100%);
    background-image: url('assets/veg.jpg');
    background-size: cover;
    background-position: center;
}

.grow-card h3 {
  font-family: 'Alfa Slab One', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 5px;
}

.grow-card p {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
}

.grow-cta {
  text-align: center;
  padding-top: 12px;
}

/* --- WHERE TO FIND US --- */
.find-section {
  background: var(--cream-dark);
  border-top: 1px solid rgba(107,66,38,0.15);
  border-bottom: 1px solid rgba(107,66,38,0.15);
}

.find-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.find-content h2 {
  font-family: 'Alfa Slab One', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.find-content h2::before,
.find-content h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--brown-mid);
  opacity: 0.4;
}

.market-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(107,66,38,0.15);
}

.market-item:last-of-type { border-bottom: none; }

.market-item h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.market-item p {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
}

.market-item p strong { color: var(--burgundy); }

.find-image {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(62,42,26,0.22);
  position: relative;
}

.find-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #7a9e4e 0%, #c8952a 50%, #6b4226 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.find-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- ABOUT --- */
.about-section {
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 50px;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}

.about-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--brown-mid);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(62,42,26,0.18);
  overflow: hidden;
  background-image: url('assets/logo.png');
  background-size: cover;
  background-position: center;
}

.about-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  font-family: 'Alfa Slab One', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 16px;
}

.about-text p {
  font-family: 'Oswald', sans-serif;
  font-size: 1.12rem;
  line-height: 1.72;
  color: var(--text-light);
  margin-bottom: 24px;
}

.about-text p strong { color: var(--text); font-weight: 600; }

/* --- FOOTER --- */
footer {
  background: var(--brown);
  color: rgba(255,255,255,0.85);
  padding: 30px 40px;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
}

.footer-text a {
  color: #F5C97A;
  text-decoration: none;
}

.footer-text a:hover { text-decoration: underline; }

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.footer-brand {
  color: #fff;
}

.footer-copyright {
  font-size: 0.78rem;
  opacity: 0.5;
}

/* --- DECORATIVE BORDER BETWEEN SECTIONS --- */
.section-border {
  height: 6px;
  background: linear-gradient(90deg, var(--brown) 0%, var(--burgundy) 30%, var(--gold) 50%, var(--burgundy) 70%, var(--brown) 100%);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .grow-grid { grid-template-columns: repeat(2, 1fr); }
  .find-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-logo { transform: translateY(14px); }
  .grow-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .section-inner { padding: 0 20px; }
  .hero h1 { font-size: 2.4rem; }
}

/* --- FADE-IN ON SCROLL --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.market-schedule-btn {
  margin-top: 10px;
}
