/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #6B9955;
  --green-mid:    #4D7A35;
  --green-light:  #8BB870;
  --cream:        #0C1509;
  --sand:         #131D0E;
  --gold:         #FBB040;
  --text-dark:    #F0F0EE;
  --text-mid:     #A8B5A0;
  --text-light:   #687A5E;
  --white:        #101908;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-card:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.14);
  --transition:   0.25s ease;
  --section-gap:  100px;
}

html { scroll-behavior: auto; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: #0C1509;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

.section { padding-block: var(--section-gap); }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.75rem;
}

.section-label.light { color: var(--green-light); }

.center { text-align: center; }

.section-intro {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 640px;
  margin-inline: auto;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn-primary,
.btn-secondary,
.btn-nav {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-full { width: 100%; text-align: center; padding-block: 1rem; }

/* ── Header / Nav ─────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding-block: 1.1rem;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(253, 252, 248, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  transition: color var(--transition);
}
.site-header.scrolled .logo { color: #1C3D0F; }
.logo span { color: #F5C518; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}
.site-header.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--white); }
.site-header.scrolled .nav-links a:hover { color: var(--green-mid); }

.btn-nav {
  padding: 0.5rem 1.25rem;
  background: var(--green-mid);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
}
.btn-nav:hover { background: var(--green-dark); transform: translateY(-1px); }
.site-header.scrolled .btn-nav { background: var(--green-mid); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--green-dark); }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(28,61,15,0.82) 0%, rgba(45,92,31,0.62) 60%, rgba(28,61,15,0.92) 100%),
    url('../images/YarboField2.jpg') center/cover no-repeat;
  z-index: 0;
}

/* VIDEO HERO — saved for later
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(28,61,15,0.82) 0%, rgba(45,92,31,0.62) 60%, rgba(28,61,15,0.92) 100%);
  z-index: 1; } */

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 600px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
.hero-trust span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: bounce 1.8s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 0.4; }
}

/* ── About ────────────────────────────────────────────── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 { margin-bottom: 1.25rem; color: var(--green-dark); }
.about-text p { color: var(--text-mid); margin-bottom: 1rem; }
.about-text p:last-child { margin-bottom: 0; }

.about-gardens-note {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--sand);
  border-left: 3px solid var(--green-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.about-gardens-note a {
  color: var(--green-mid);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.about-gardens-note a:hover { color: var(--green-dark); }

.repair-cert {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--sand);
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-top: none;
  border-right: none;
  border-bottom: none;
  font-family: inherit;
  transition: filter 0.15s;
}
.repair-cert:hover { filter: brightness(0.95); }
.repair-cert-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.repair-cert-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.repair-cert-text strong {
  font-size: 0.9rem;
  color: var(--green-dark);
  letter-spacing: 0.01em;
}
.repair-cert-text span {
  font-size: 0.82rem;
  color: var(--text-mid);
}

/* Certificate modal */
.cert-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.cert-modal.is-open { display: flex; }
.cert-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}
.cert-modal-img {
  position: relative;
  max-width: min(820px, 100%);
  max-height: 90vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  object-fit: contain;
}

.about-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--green-dark);
  font-weight: 700;
  line-height: 1.2;
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 0.25rem;
}

.about-divider {
  height: 1px;
  background: var(--sand);
}

/* ── Products ─────────────────────────────────────────── */
.products { background: var(--cream); }
.products h2 { margin-bottom: 0; color: var(--green-dark); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.product-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 66%;
  margin-left: auto;
  margin-right: auto;
}
.product-grid--four {
  grid-template-columns: repeat(5, 1fr);
}

.product-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-light);
}

.product-card--featured {
  border-color: var(--green-mid);
  background: linear-gradient(160deg, #f0faf4 0%, var(--white) 100%);
}

.product-card--new .product-badge {
  background: #F5C518;
  color: #1a1a1a;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--green-mid);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

.product-img {
  width: calc(100% + 3.5rem);
  margin: -2rem -1.75rem 1.25rem;
  height: 190px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  flex-shrink: 0;
}

.product-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.product-card h3 { color: var(--green-dark); margin-bottom: 0.15rem; }
.product-tagline { font-size: 0.85rem; color: var(--green-mid); font-weight: 600; }
.product-desc { font-size: 0.9rem; color: var(--text-mid); flex: 1; }
.product-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid);
  margin-top: 0.5rem;
  transition: color var(--transition);
}
.product-card:hover .product-link { color: var(--green-dark); }

.product-category-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.product-category-label--row2 { margin-top: 2.5rem; }

.products-cta-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.products-cta-note a { color: var(--green-mid); font-weight: 600; border-bottom: 1px solid currentColor; }
.products-cta-note a:hover { color: var(--green-dark); }

/* ── Why Local ────────────────────────────────────────── */
.why-local {
  background: var(--green-dark);
}
.why-local h2 { color: var(--white); margin-bottom: 0; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.benefit-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: background var(--transition);
}
.benefit-item:hover { background: rgba(255,255,255,0.1); }

.benefit-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.benefit-item h3 { color: var(--white); margin-bottom: 0.6rem; }
.benefit-item p { font-size: 0.95rem; color: rgba(255,255,255,0.75); }

/* ── Contact ──────────────────────────────────────────── */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-text h2 { color: var(--green-dark); margin-bottom: 1rem; }
.contact-text > p { color: var(--text-mid); margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; }
.contact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.contact-item a { color: var(--green-mid); font-weight: 500; }
.contact-item a:hover { color: var(--green-dark); }

.contact-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #E0DDD6;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0ABA0; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding-block: 3rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo span { color: var(--gold); }

.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}
.footer-links a {
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.5rem;
  max-width: 560px;
}

/* ── Weather Widget ───────────────────────────────────── */
.weather-widget {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.site-header.scrolled .weather-widget { color: var(--text-mid); }
.weather-loc {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.site-header.scrolled .weather-loc { color: var(--text-light); }
.weather-divider { color: rgba(255,255,255,0.3); }
.site-header.scrolled .weather-divider { color: var(--text-light); }

@media (max-width: 900px) { .weather-widget { display: none; } }

/* ── Dark Mode Toggle ─────────────────────────────────── */
.dark-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  flex-shrink: 0;
}
.dark-toggle:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
}
.site-header.scrolled .dark-toggle {
  background: var(--sand);
  border-color: transparent;
  color: var(--green-dark);
}
.site-header.scrolled .dark-toggle:hover { background: var(--green-light); color: var(--white); }

/* show sun in dark mode, moon in light mode */
.dark-toggle .icon-sun  { display: none; }
.dark-toggle .icon-moon { display: block; }
:root.dark .dark-toggle .icon-sun  { display: block; }
:root.dark .dark-toggle .icon-moon { display: none; }

/* ── Inner Page Hero ──────────────────────────────────── */
.page-hero {
  background: var(--green-dark);
  padding: 7rem 0 2rem;
  text-align: center;
}
.page-hero .section-label { color: var(--green-light); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-inline: auto;
}

/* ── Nav current page ─────────────────────────────────── */
.nav-current {
  color: var(--white) !important;
  font-weight: 600;
}
.site-header.scrolled .nav-current { color: var(--green-dark) !important; }

/* ── Accessories Page ─────────────────────────────────── */
.accessories-section { background: var(--cream); }

.acc-category-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 3rem 0 1.25rem;
}
.acc-category-label:first-of-type { margin-top: 0; }

.acc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.acc-card {
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.acc-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--green-light);
}

.acc-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }

.acc-body { display: flex; flex-direction: column; gap: 0.4rem; }
.acc-body h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }
.acc-body p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.55; }

.acc-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-top: 0.25rem;
  width: fit-content;
}
.acc-badge--stock    { background: #E8F5E9; color: #2E7D32; }
.acc-badge--limited  { background: #FFF8E1; color: #F57F17; }
.acc-badge--order    { background: #EEF2FF; color: #3730A3; }

.acc-contact-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid);
  border-bottom: 1px solid currentColor;
}
.acc-contact-link:hover { color: var(--green-dark); }

.acc-disclaimer {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-top: 3rem;
}
.acc-disclaimer-icon { font-size: 1.2rem; flex-shrink: 0; }
.acc-disclaimer p { font-size: 0.875rem; color: var(--text-mid); }

/* ── Gallery ─────────────────────────────────────────── */
.gallery-section { background: var(--off-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 4/3;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.gallery-item--square { aspect-ratio: 1/1; }
.gallery-item--square video { object-position: center 75%; }

.gallery-cta {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1rem;
  color: var(--text-mid);
}
.gallery-cta a {
  color: var(--green-mid);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.gallery-cta a:hover { color: var(--green-dark); }

/* ── Service Area ─────────────────────────────────────── */
.service-area {
  background: var(--green-dark);
  padding: 4rem 0;
  text-align: center;
}
.service-area .section-label { color: var(--green-light); }
.service-area h2 { color: var(--white); margin-bottom: 0.75rem; }
.service-area p { color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto 2.5rem; }

.county-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.county-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.county-item span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-gap: 72px; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .product-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .acc-grid { grid-template-columns: 1fr 1fr; }

  .about-card {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .about-stat { flex: 1 1 140px; }
  .about-divider { display: none; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    background: #0C1509;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open a { font-size: 1.3rem; color: #F0F0EE; }
  .nav-links.open .btn-nav {
    background: #F5C518;
    color: #0C1509 !important;
  }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .product-grid { grid-template-columns: 1fr; }
  .acc-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary { width: auto; padding-left: 1.75rem; padding-right: 1.75rem; }
  .hero-actions .btn-secondary { text-align: center; }
  .contact-form { padding: 1.75rem; }

  .hero-bg { background-position: 72% center; }
  .hero { align-items: flex-start; }
  .hero-content { padding-top: 150px; padding-bottom: 5rem; }

}
/* ══ SUMMIT DARK — deep forest night, muted forest green, premium ══ */

:root {
  --green-dark:   #6B9955;
  --green-mid:    #4D7A35;
  --green-light:  #8BB870;
  --cream:        #0C1509;
  --sand:         #131D0E;
  --gold:         #FBB040;
  --text-dark:    #F0F0EE;
  --text-mid:     #A8B5A0;
  --text-light:   #687A5E;
  --white:        #101908;
  --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.3);
}

body { background: #0C1509; color: #F0F0EE; }

/* Nav / weather */
.site-header.scrolled .weather-widget { color: #A8B8A8; }
.site-header.scrolled .weather-loc { color: #6B8068; }
.site-header.scrolled .weather-divider { color: #3D5A42; }

.site-header.scrolled {
  background: rgba(13,26,18,0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.5);
}
.site-header.scrolled .logo { color: #FFFFFF; }
.logo span { color: #F5C518; }
.site-header.scrolled .nav-links a { color: #A8B8A8; }
.site-header.scrolled .nav-links a:hover { color: #F0F0EE; }

/* Active nav page — readable on both scrolled and hero states */
.nav-current { color: #F0F0EE !important; }
.site-header.scrolled .nav-current { color: #F0F0EE !important; }

/* Hero — keep dark overlay, shift gradient tint */
.hero-bg {
  background:
    linear-gradient(160deg, rgba(12,21,9,0.88) 0%, rgba(19,29,14,0.7) 60%, rgba(12,21,9,0.95) 100%),
    url('../images/YarboField2.jpg') center/cover no-repeat;
}
.hero-eyebrow { color: #FBB040; }
.hero h1 { color: #F0F0EE; }
.hero-sub { color: rgba(240,240,238,0.75); }
.btn-primary { background: #F5C518; color: #0C1509; font-weight: 700; }
.btn-primary:hover { background: #FACF35; }
.btn-secondary { border-color: rgba(240,240,238,0.4); color: #F0F0EE; }
.btn-secondary:hover { border-color: #6B9955; color: #6B9955; }

/* About */
.about { background: #101908; }
.about-text h2 { color: #F5C518; }
.about-text p { color: #A8B8A8; }
.about-card { background: #131D0E; border: 1px solid #1A2810; }
.stat-number { color: #6B9955; }
.stat-label { color: #6B8068; }
.about-divider { background: #1A2810; }
.repair-cert { background: #131D0E; border-left-color: #F5C518; }
.repair-cert-text strong { color: #F0F0EE; }
.repair-cert-text span { color: #A8B8A8; }

/* Products */
.products { background: #0C1509; }
.products h2 { color: #F0F0EE; }
.product-category-label { color: #6B8068; }
.section-intro { color: #A8B8A8; }
.product-card {
  background: #101908;
  border-color: #1A2810;
}
.product-card:hover { border-color: #4D7A35; box-shadow: 0 8px 40px rgba(0,0,0,0.25); }
.product-card h3 { color: #F0F0EE; }
.product-tagline { color: #6B9955; }
.product-desc { color: #A8B8A8; }
.product-link { color: #6B9955; }
.product-card:hover .product-link { color: #8BB870; }
.product-card--featured {
  background: #0D1E08;
  border-color: #4D7A35;
}
.product-badge { background: #4D7A35; color: #F0F0EE; }
.products-cta-note { color: #A8B8A8; }
.products-cta-note a { color: #A8B8A8 !important; border-bottom-color: #4D7A35 !important; }
.products-cta-note a:hover { color: #F0F0EE !important; }

/* Why Local */
.why-local { background: #080F05; }
.why-local h2 { color: #F0F0EE; }
.section-label.light { color: #6B9955; }
.benefit-item {
  background: rgba(107,153,85,0.05);
  border-color: rgba(107,153,85,0.12);
}
.benefit-item:hover { background: rgba(107,153,85,0.09); }
.benefit-item h3 { color: #F0F0EE; }
.benefit-item p { color: #A8B8A8; }

/* Contact */
.contact { background: #101908; }
.contact-text h2 { color: #6B9955; }
.contact-text > p { color: #A8B8A8; }
.contact-item a { color: #6B9955; }
.contact-item a:hover { color: #8BB870; }
.contact-form { background: #0C1509; border: 1px solid #1A2810; }
.form-group label { color: #F0F0EE; }
.form-group input,
.form-group textarea {
  background: #131D0E;
  border-color: #1A2810;
  color: #F0F0EE;
}
.form-group input:focus,
.form-group textarea:focus { border-color: #4D7A35; box-shadow: 0 0 0 3px rgba(77,122,53,0.2); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #3D5A42; }
.form-note { color: #6B8068; }
.btn-full { background: #F5C518; color: #0C1509; font-weight: 700; }
.btn-full:hover { background: #FACF35; }

/* Accessories (old card layout) */
.page-hero { background: #080F05; }
.page-hero h1 { color: #F0F0EE; }
.accessories-section { background: #0C1509; }
.acc-card { background: #101908; border-color: #1A2810; }
.acc-card:hover { border-color: #4D7A35; }
.acc-body h3 { color: #F0F0EE; }
.acc-body p { color: #A8B5A0; }
.acc-badge--stock   { background: #0D2B12; color: #6B9955; }
.acc-badge--limited { background: #2B2000; color: #FBB040; }
.acc-badge--order   { background: #0D1A2B; color: #93C5FD; }
.acc-disclaimer { background: #131D0E; }
.acc-disclaimer p { color: #A8B5A0; }
.acc-contact-link { color: #6B9955; }
.acc-contact-link:hover { color: #8BB870; }

/* Shop grid (Accessories page) */
.shop-section { background: #0C1509; }
.shop-category-title { color: #6B8068 !important; border-bottom-color: #1A2810 !important; }
.shop-card { background: #101908; border-color: #1A2810; }
.shop-card:hover { border-color: #4D7A35; }
.shop-card-name { color: #F0F0EE !important; }
.shop-card-price { color: #F0F0EE !important; }
.shop-card-btn { background: #2D5C1F !important; color: #F0F0EE !important; }
.shop-card-btn:hover { background: #3A7025 !important; }
.shop-note { background: #131D0E; color: #A8B5A0; }

/* Mobile nav overlay */
.nav-links.open { background: #0C1509 !important; }
.nav-links.open a { color: #F0F0EE !important; }
.nav-links.open .btn-nav { background: #F5C518 !important; color: #0C1509 !important; }

/* Service Area */
.service-area { background: #080F05; }
.service-area h2 { color: #F0F0EE; }
.service-area p { color: #A8B8A8; }
.service-area .section-label { color: #6B9955; }
.county-item { background: rgba(107,153,85,0.05); border-color: rgba(107,153,85,0.12); color: #F0F0EE; }
.county-item span { color: #6B8068; }

/* Gallery */
.gallery-section { background: #0C1509; }
.gallery-item { background: #131D0E; }
.gallery-cta { color: #A8B8A8; }
.gallery-cta a { color: #6B9955; }
.gallery-cta a:hover { color: #8BB870; }

/* Community page */
.owner-card { background: #101908; border-color: #1A2810; }
.owner-card-name { color: #F0F0EE !important; }
.owner-card-model { background: #131D0E !important; color: #6B9955 !important; }
.owner-card-town { color: #6B8068 !important; }
.owner-card-dealer-badge { background: #2D5C1F !important; color: #F5C518 !important; }

.community-cta { background: #101908 !important; border: 1px solid #1A2810; }
.community-cta h3 { color: #F0F0EE !important; }
.community-cta p { color: #A8B8A8 !important; }
.community-cta .btn-primary { background: #F5C518 !important; color: #0C1509 !important; }
.community-cta .btn-primary:hover { background: #FACF35 !important; }

/* Footer */
.site-footer { background: #080F05; }
.footer-logo { color: #F0F0EE; }
.footer-logo span { color: #F5C518; }
.footer-tagline { color: rgba(240,240,238,0.4); }
.footer-links a { color: rgba(240,240,238,0.55); }
.footer-links a:hover { color: #F0F0EE; }
.footer-copy { color: rgba(240,240,238,0.25); }

/* Mobile hero image position — show mower on right */
@media (max-width: 680px) {
  .hero-bg { background-position: 72% center; }
}
