/* ============================================================
   HAY & SPRAY — Main Stylesheet
   Mobile-first, responsive design
   ============================================================ */

/* ─── Custom Properties ──────────────────────────────────── */
:root {
  --green-900: #1a3d1a;
  --green-800: #1d4d1d;
  --green-700: #245c24;
  --green-600: #2d6e2d;
  --green-500: #3a8a3a;
  --green-400: #4da64d;
  --green-100: #e8f5e8;

  --gold-700: #b86f14;
  --gold-600: #d4821a;
  --gold-500: #e8941a;
  --gold-400: #f0a830;
  --gold-100: #fdf3e0;

  --dark: #1a1a1a;
  --gray-700: #333333;
  --gray-600: #4a4a4a;
  --gray-500: #666666;
  --gray-300: #aaaaaa;
  --gray-200: #dddddd;
  --gray-100: #f4f4ef;
  --white: #ffffff;

  --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --container-narrow: 800px;
  --radius: 4px;
  --radius-lg: 8px;
  --radius-xl: 16px;

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.18);

  --transition: 0.25s ease;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-white  { color: var(--white); }

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--gray-600);
}

/* ─── Layout Helpers ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

section { padding-block: 4rem; }

.grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.grid-3 {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

.grid-4 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  border: 2px solid var(--green-600);
}
.btn-primary:hover {
  background: var(--green-500);
  border-color: var(--green-500);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--gold-600);
  color: var(--white);
  border: 2px solid var(--gold-600);
}
.btn-accent:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-600);
  border: 2px solid var(--green-600);
}
.btn-outline-green:hover {
  background: var(--green-600);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

/* ─── Header & Navigation ────────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--green-900);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: background var(--transition), box-shadow var(--transition);
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.logo-tagline {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.6rem;
  color: var(--gold-400);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-desktop .nav-cta {
  background: var(--gold-600);
  color: var(--white);
  padding: 0.55rem 1.25rem;
  margin-left: 0.5rem;
  border-radius: var(--radius);
}

.nav-desktop .nav-cta:hover {
  background: var(--gold-500);
}

/* Mobile Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: var(--radius);
  color: var(--white);
  transition: background var(--transition);
  aria-label: "Open menu";
}

.nav-toggle:hover { background: rgba(255,255,255,0.1); }

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--green-800);
  padding: 1rem 0 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0.85rem 1.5rem;
  transition: background var(--transition), color var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-mobile a:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.nav-mobile .nav-mobile-cta {
  margin: 1rem 1.5rem 0;
  text-align: center;
  background: var(--gold-600);
  color: var(--white);
  border-radius: var(--radius);
  border-bottom: none;
}

.nav-mobile .nav-mobile-cta:hover { background: var(--gold-500); }

/* Page offset for fixed header */
body { padding-top: var(--header-h); }

/* ─── Hero – Home ────────────────────────────────────────── */
.hero-home {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-700) 55%, var(--green-600) 100%);
  overflow: hidden;
}

/* Background texture overlay */
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212, 130, 26, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* If a background image is added via inline style, this overlay darkens it */
.hero-home.has-image::before {
  background: linear-gradient(160deg, rgba(26,61,26,0.88) 0%, rgba(29,77,29,0.75) 60%, rgba(36,92,36,0.65) 100%);
}

.hero-home .container {
  position: relative;
  z-index: 1;
  padding-block: 4rem;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.hero-home h1 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 780px;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
}

.hero-tagline span { margin-inline: 0.5rem; opacity: 0.5; }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

/* Decorative wheat/field element */
.hero-deco {
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 45%;
  max-width: 580px;
  opacity: 0.07;
  pointer-events: none;
}

/* ─── Hero – Interior Pages ──────────────────────────────── */
.hero-page {
  position: relative;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding-block: 3.5rem;
  text-align: center;
  overflow: hidden;
}

.hero-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-700), var(--gold-500), var(--gold-400));
}

.hero-page h1 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.hero-page p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumb a { color: var(--gold-400); }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb span { color: rgba(255,255,255,0.5); }
.breadcrumb .current { color: rgba(255,255,255,0.7); }

/* ─── Section Labels ─────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.divider-accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.divider-accent.center { margin-inline: auto; }

/* ─── Service Cards ──────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  height: 220px;
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-500) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.service-card-icon {
  width: 64px;
  height: 64px;
  color: rgba(255,255,255,0.6);
}

.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.service-card-body p {
  color: var(--gray-500);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.5rem;
}

/* ─── Feature Banner ─────────────────────────────────────── */
.banner-spray {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding-block: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-spray::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(212,130,26,0.15) 0%, transparent 60%);
}

.banner-spray .container { position: relative; z-index: 1; }

.banner-spray h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.banner-spray h2 em {
  font-style: normal;
  color: var(--gold-400);
}

.banner-spray p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* ─── Why Choose Us ──────────────────────────────────────── */
.feature-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--green-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
}

.feature-icon svg { width: 26px; height: 26px; }

.feature-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.feature-item p { color: var(--gray-500); font-size: 0.95rem; margin: 0; }

/* ─── Stats Strip ────────────────────────────────────────── */
.stats-strip {
  background: var(--green-600);
  padding-block: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item span {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ─── Service Area ───────────────────────────────────────── */
.area-section { background: var(--gray-100); }

.area-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.area-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.area-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── CTA Strip ──────────────────────────────────────────── */
.cta-strip {
  background: var(--gold-600);
  padding-block: 3.5rem;
  text-align: center;
}

.cta-strip h2 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cta-strip p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

/* ─── Service Detail Sections ────────────────────────────── */
.service-detail {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.service-detail-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 320px;
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-500) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder-icon {
  width: 80px;
  height: 80px;
  color: rgba(255,255,255,0.3);
}

/* ─── Checklist ──────────────────────────────────────────── */
.check-list {
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--green-100);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232d6e2d'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: contain;
  margin-top: 2px;
}

/* ─── Spray Types Grid ───────────────────────────────────── */
.spray-type-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-top: 4px solid var(--green-600);
  transition: box-shadow var(--transition), transform var(--transition);
}

.spray-type-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.spray-type-icon {
  width: 48px;
  height: 48px;
  background: var(--green-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  margin-bottom: 1rem;
}

.spray-type-icon svg { width: 26px; height: 26px; }

.spray-type-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.spray-type-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ─── Contact Section ────────────────────────────────────── */
.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-info-card {
  background: var(--green-900);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
}

.contact-info-card h3 {
  color: var(--white);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
  font-size: 1.3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item:last-child { margin-bottom: 0; }

.contact-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

.contact-item-icon svg { width: 22px; height: 22px; }

.contact-item-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.25rem;
}

.contact-item-value {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.4;
}

.contact-item-value a { color: inherit; }
.contact-item-value a:hover { color: var(--gold-400); }

/* ─── Contact Form ───────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
  color: var(--dark);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-700);
  font-size: 0.97rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

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

.form-group textarea { min-height: 130px; resize: vertical; }

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.form-note {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
  text-align: center;
}

/* Form success state */
.form-success {
  display: none;
  background: var(--green-100);
  border: 1px solid var(--green-400);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  color: var(--green-700);
}

/* ─── Map / Service Area Visual ──────────────────────────── */
.service-area-visual {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
}

/* ─── Hay Types Section ──────────────────────────────────── */
.hay-type-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.hay-type-header {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-500) 100%);
  padding: 1.5rem;
  text-align: center;
}

.hay-type-header h3 {
  color: var(--white);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
}

.hay-type-body {
  padding: 1.5rem;
}

.hay-type-body p { color: var(--gray-500); font-size: 0.93rem; }

/* ─── Accent Box ─────────────────────────────────────────── */
.accent-box {
  background: var(--green-100);
  border-left: 4px solid var(--green-600);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem 2rem;
}

.accent-box p { color: var(--gray-600); margin: 0; }
.accent-box strong { color: var(--green-700); }

/* ─── Footer ─────────────────────────────────────────────── */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}

.footer-top {
  padding-block: 3.5rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

.footer-brand .logo-tagline { color: var(--gold-400); margin-top: 0.25rem; display: block; }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.65;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--gold-400); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold-400);
  margin-top: 2px;
}

.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: var(--gold-400); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-400); }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* ─── Privacy Policy ─────────────────────────────────────── */
.prose {
  max-width: 780px;
  margin-inline: auto;
}

.prose h2 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--green-700);
}

.prose h2:first-child { margin-top: 0; }
.prose p, .prose ul, .prose ol { margin-bottom: 1em; color: var(--gray-600); }
.prose ul { list-style: disc; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.4em; }
.prose a { color: var(--green-600); text-decoration: underline; }

/* ─── Utilities ──────────────────────────────────────────── */
.bg-light { background: var(--gray-100); }
.bg-green { background: var(--green-900); }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.mb-0 { margin-bottom: 0 !important; }

/* ─── Responsive — Tablet (768px+) ──────────────────────── */
@media (min-width: 768px) {
  section { padding-block: 5rem; }

  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }

  .stats-grid { grid-template-columns: repeat(4, 1fr); }

  .feature-list { grid-template-columns: 1fr 1fr; }

  .area-grid { grid-template-columns: repeat(3, 1fr); }

  .form-row { grid-template-columns: 1fr 1fr; }

  .footer-top { grid-template-columns: 2fr 1fr 1fr 1.5fr; }

  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }

  .service-detail { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr 1.6fr; }

  .hero-page { padding-block: 5rem; }

  .spray-type-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Responsive — Desktop (1024px+) ────────────────────── */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-desktop { display: flex; }

  .hero-home .container { padding-block: 6rem; }

  .spray-type-grid { grid-template-columns: repeat(3, 1fr); }

  .service-detail-image { height: 420px; }
}
