@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Raleway:wght@300;400;500;600&display=swap');

/* ===== VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E2C47A;
  --gold-dark: #9A7A2E;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --off-white: #F5F0E8;
  --text-light: #D4C9B0;
  --text-muted: #8A8070;
  --border: rgba(201,168,76,0.25);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--black);
  color: var(--off-white);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: none;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 2px;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.25rem;
  text-align: center;
  border-bottom: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.75) 100%
  );
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  animation: fadeUp 1.2s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-logo {
  width: 200px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.4));
}
.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 0.875rem 2rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent;
  color: #fff;
  padding: 0.875rem 2rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTIONS ===== */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.5rem 0;
}

/* ===== PRODUCT CARDS (Home) ===== */
.products-section { background: var(--dark2); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.product-card.featured {
  border-color: var(--gold);
  grid-column: span 2;
}
.product-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-card-img { transform: scale(1.03); }
.product-card-body { padding: 1.5rem; }
.product-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.product-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.product-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.product-card-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.product-card-link:hover { gap: 0.75rem; }
.featured-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.trust-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== HAY INVENTORY ===== */
.hay-hero {
  height: 50vh;
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 3rem 2rem;
  overflow: hidden;
}
.hay-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
}
.hay-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
}
.hay-hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hay-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.inventory-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.last-updated {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.live-dot {
  width: 8px; height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76,175,80,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(76,175,80,0); }
}
.min-order-badge {
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

/* Inventory Section */
.inventory-section { padding: 4rem 2rem; }
.product-category { margin-bottom: 4rem; }
.category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #fff;
}
.category-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.cuttings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* Inventory Card */
.inv-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.inv-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.inv-card-header {
  padding: 1.25rem 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.inv-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
}
.inv-card-cutting {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
}
.inv-availability {
  text-align: right;
}
.inv-bales {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
}
.inv-bales-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.inv-card-pricing {
  padding: 1rem 1.25rem;
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid var(--border);
}
.inv-price-item {}
.inv-price-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
}
.inv-price-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.inv-price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Badge Expand Button */
.badge-expand-btn {
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s;
}
.badge-expand-btn:hover { background: rgba(201,168,76,0.05); }
.badge-expand-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.badge-n {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.badge-expand-text {
  text-align: left;
}
.badge-expand-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.badge-expand-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}
.badge-chevron {
  color: var(--gold);
  transition: transform 0.3s;
  font-size: 1.2rem;
}
.badge-expand-btn.open .badge-chevron { transform: rotate(180deg); }

/* Expanded Content */
.inv-expanded {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}
.inv-expanded.open { display: block; }
.expanded-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.expanded-photos img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.expanded-photos img:first-child:last-child {
  grid-column: span 2;
}
.test-results {
  padding: 1.25rem;
}
.test-results-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.test-results-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.test-item {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.625rem;
  text-align: center;
  position: relative;
  cursor: help;
}
.test-item:hover .tooltip { display: block; }
.test-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}
.test-name {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--off-white);
  font-size: 0.7rem;
  padding: 0.5rem 0.75rem;
  border-radius: 3px;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
  line-height: 1.4;
  text-align: left;
  min-width: 180px;
}
.tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--border);
}
.test-date {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.pickup-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.reserve-btn {
  display: block;
  width: calc(100% - 2.5rem);
  margin: 0.75rem 1.25rem 1.25rem;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 0.75rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.reserve-btn:hover {
  background: var(--gold-light);
  color: var(--black);
}

/* Straw section */
.simple-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  max-width: 600px;
}
.simple-card img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Notify Bar */
.notify-bar {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.notify-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.notify-text p { font-size: 0.85rem; color: var(--text-muted); }
.notify-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.notify-form input {
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--off-white);
  padding: 0.625rem 1rem;
  border-radius: 2px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
  min-width: 220px;
}
.notify-form input:focus { border-color: var(--gold); }
.notify-form input::placeholder { color: var(--text-muted); }
.notify-form button {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.625rem 1.25rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.notify-form button:hover { background: var(--gold-light); }

/* ===== OUR STORY ===== */
.story-hero {
  height: 50vh;
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 3rem 2rem;
  overflow: hidden;
}
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 0.4rem;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.timeline-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 500px;
}
.story-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.story-photos img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 3px;
  transition: transform 0.4s;
}
.story-photos img:hover { transform: scale(1.02); }
.story-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-text p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.story-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 3px;
}
.crops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.crop-item {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.crop-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.crop-item-body { padding: 1rem; }
.crop-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.crop-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}
.contact-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail-icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  width: 20px;
  text-align: center;
}
.contact-detail-text {}
.contact-detail-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.contact-detail-value {
  font-size: 0.9rem;
  color: var(--text-light);
}
.form-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}
.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.form-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--off-white);
  padding: 0.75rem 1rem;
  border-radius: 2px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  padding: 0.875rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}
.success-msg {
  display: none;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
  color: #81C784;
  padding: 1rem;
  border-radius: 3px;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand img { height: 60px; width: auto; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .product-card.featured { grid-column: span 1; }
  .story-two-col { grid-template-columns: 1fr; }
  .story-photos { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 1.25rem; }
  section { padding: 3.5rem 1.25rem; }
  .story-photos { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .simple-card { flex-direction: column; }
  .simple-card img { width: 100%; height: 180px; }
  .trust-bar-inner { gap: 1.25rem; }
}
@media (max-width: 480px) {
  .cuttings-grid { grid-template-columns: 1fr; }
  .crops-grid { grid-template-columns: 1fr 1fr; }
  .notify-form { flex-direction: column; }
  .notify-form input { min-width: unset; width: 100%; }
}
