/* =========================================================
   RURAL ROOTS CORPORATION — MAIN STYLESHEET
   Design system: modern, responsive, brand-consistent
   ========================================================= */

/* ---------- CSS Custom Properties (Design Tokens) ---------- */
:root {
  /* Brand colors — matched to Rural Roots logo (leafy vibrant green + black + gold accent) */
  --green: #087510;
  --green-deep: #005E14;
  --green-soft: #E8F0EA;
  --green-light: #C8E0CB;
  --gold: #F5B800;
  --gold-warm: #E88A1A;
  --gold-soft: #FFF3D1;
  --earth: #6B4423;
  --earth-soft: #F4EDE1;

  /* Neutrals */
  --ink: #1A2A20;
  --ink-soft: #3B4A3F;
  --muted: #6B7A6E;
  --border: #E5DDD0;
  --border-soft: #F0EBE0;
  --cream: #FAF7F0;
  --off-white: #F8F5EE;
  --white: #FFFFFF;

  /* Utilities */
  --shadow-sm: 0 1px 2px rgba(20, 58, 38, 0.06);
  --shadow: 0 4px 12px rgba(20, 58, 38, 0.08);
  --shadow-md: 0 8px 24px rgba(20, 58, 38, 0.12);
  --shadow-lg: 0 20px 40px rgba(20, 58, 38, 0.16);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --container: 1200px;
  --container-narrow: 900px;

  /* Type */
  --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Transitions */
  --t: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--green); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold-warm); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw + 1rem, 3.75rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem); }
h3 { font-size: clamp(1.35rem, 1.5vw + 0.5rem, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--sans); font-weight: 700; color: var(--muted); }

p { margin-bottom: 1rem; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-warm);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.lead { font-size: 1.15rem; color: var(--ink-soft); line-height: 1.7; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.25rem; }
section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
section.tight { padding: clamp(2rem, 4vw, 3.5rem) 0; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3.5rem); }
.section-header p { color: var(--ink-soft); }

.bg-cream { background: var(--cream); }
.bg-green { background: var(--green-deep); color: var(--white); }
.bg-green h1, .bg-green h2, .bg-green h3, .bg-green h4 { color: var(--white); }
.bg-green p { color: rgba(255, 255, 255, 0.85); }
.bg-green-soft { background: var(--green-soft); }
.bg-gold-soft { background: var(--gold-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--t);
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-deep); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--green-deep); }
.btn-gold:hover { background: var(--gold-warm); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--green); color: var(--green); background: transparent; }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-white { background: var(--white); color: var(--green-deep); }
.btn-white:hover { background: var(--gold); color: var(--green-deep); }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow var(--t);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
  gap: 2rem;
}
.nav-logo { display: block; }
.nav-logo img, .nav-logo svg { height: 64px; width: auto; display: block; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-menu a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}
.nav-menu a:hover { color: var(--green); }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--t);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-deep);
  transition: all var(--t);
  border-radius: 2px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.menu-open .nav-menu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    align-items: flex-start;
  }
  .site-header.menu-open .nav-cta {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--border-soft);
    margin-top: 260px;
    justify-content: center;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 720px;
  z-index: 1;
}
.hero h1 {
  margin-bottom: 1.5rem;
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-warm);
  margin-bottom: 1rem;
  font-weight: 500;
}
.hero-lead {
  font-size: clamp(1.05rem, 1vw + 0.85rem, 1.35rem);
  color: var(--ink-soft);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
  background: var(--green-soft);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* Page hero (smaller than home hero) */
.page-hero {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(245, 184, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p { color: rgba(255, 255, 255, 0.9); max-width: 640px; margin: 1rem auto 0; position: relative; }

/* ---------- Divisions grid (Home) ---------- */
.divisions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.division-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.division-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.division-card-image {
  aspect-ratio: 16 / 10;
  background: var(--green-soft);
  overflow: hidden;
  position: relative;
}
.division-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.division-card:hover .division-card-image img { transform: scale(1.05); }
.division-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.division-card h3 { color: var(--green-deep); margin-bottom: 0.75rem; }
.division-card p { flex: 1; margin-bottom: 1.25rem; }
.division-card .btn { align-self: flex-start; }

/* ---------- Feature blocks (Why Choose) ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.feature {
  text-align: center;
  padding: 1.5rem;
}
.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  background: var(--gold-soft);
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  color: var(--green-deep);
  transition: all var(--t);
}
.feature:hover .feature-icon { background: var(--gold); transform: scale(1.08); }
.feature-icon svg { width: 36px; height: 36px; }
.feature h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }

/* ---------- Solar tier cards ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.tier-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.tier-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--white) 30%);
}
.tier-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green-deep);
  padding: 4px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
}
.tier-label {
  font-size: 0.75rem;
  color: var(--gold-warm);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.tier-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.tier-best-for {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.tier-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.tier-specs li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border);
  color: var(--ink-soft);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.75rem;
}
.tier-specs li:last-child { border-bottom: none; }
.tier-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 16px;
  height: 8px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

/* ---------- Service cards (Customized Services) ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { color: var(--green-deep); }
.service-card ul { list-style: none; padding: 0; margin: 0; }
.service-card ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

/* ---------- Journey steps ---------- */
.journey {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.journey-step {
  text-align: center;
  position: relative;
}
.journey-step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--green);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(31, 95, 63, 0.25);
}
.journey-step h4 { color: var(--green-deep); margin-bottom: 0.5rem; }
.journey-step p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
}
.testimonial-quote { font-style: italic; color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.65; }
.testimonial-quote::before {
  content: '“';
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 0.5;
  display: inline-block;
  vertical-align: -0.35em;
  margin-right: 0.15em;
}
.testimonial-author { font-weight: 700; color: var(--green-deep); font-size: 0.95rem; }
.testimonial-location { color: var(--muted); font-size: 0.85rem; }

/* ---------- Monthly deals ---------- */
.deals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.deal-card {
  background: var(--white);
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--t);
  position: relative;
}
.deal-card:hover { background: var(--gold-soft); transform: translateY(-2px); }
.deal-badge {
  display: inline-block;
  background: var(--gold-warm);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.deal-card h4 { color: var(--green-deep); margin-bottom: 0.5rem; }
.deal-card p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.deal-card em { color: var(--gold-warm); font-style: italic; font-weight: 500; }

/* ---------- Forms ---------- */
.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}
.form-field label .req { color: var(--gold-warm); }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--t), box-shadow var(--t);
  font-size: 1rem;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 95, 63, 0.12);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; }
.form-success {
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--green);
}
.form-error {
  background: #FDE8E8;
  color: #9B2222;
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid #E88A8A;
  margin-bottom: 1rem;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 60%, #2C7A50 100%);
  color: var(--white);
  padding: clamp(3rem, 5vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245, 184, 0, 0.2) 0%, transparent 50%);
}
.cta-banner .container { position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255, 255, 255, 0.9); font-size: 1.15rem; max-width: 600px; margin: 0 auto 2rem; }

/* ---------- Value list (About) ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.value {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}
.value-letter {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.value h4 { color: var(--green-deep); margin-bottom: 0.5rem; }
.value p { font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.9);
  padding: clamp(3rem, 5vw, 4rem) 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img, .footer-brand svg {
  height: 88px;
  width: auto;
  margin-bottom: 1rem;
  background: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.footer-brand p { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; }
.footer-col h5 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: color var(--t);
}
.footer-col a:hover { color: var(--gold); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}
.footer-contact svg { flex-shrink: 0; margin-top: 4px; color: var(--gold); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: all var(--t);
}
.footer-social a:hover { background: var(--gold); color: var(--green-deep); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.6); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--t);
  color: white;
  animation: waPulse 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  color: white;
}
.wa-float svg { width: 32px; height: 32px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-4 { margin-top: 3rem; }
.mb-4 { margin-bottom: 3rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 200px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
}
.divider-icon { color: var(--gold); }

.badge {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-deep);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}
.badge-gold { background: var(--gold-soft); color: var(--gold-warm); }

/* Fade-in on scroll — kept as no-op class so pages never risk hidden content for bots or slow JS.
   Content is always visible; scroll interactions still get the .visible class added for future animation hooks. */
.fade-in { opacity: 1; transform: none; }

/* =========================================================
   HERO SLIDER (home page)
   ========================================================= */
.hero-slider {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--green-soft);
  isolation: isolate;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease, transform 8s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  transition: opacity 1s ease, transform 8s linear;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide::after {
  /* subtle gradient at bottom for depth */
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(20, 58, 38, 0.35), transparent);
  pointer-events: none;
}
.hero-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-slider-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
  padding: 0;
}
.hero-slider-dot:hover { background: rgba(255, 255, 255, 0.7); }
.hero-slider-dot.active {
  background: var(--gold);
  width: 48px;
}
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  border: none;
  transition: all var(--t);
  opacity: 0;
}
.hero-slider:hover .hero-slider-arrow { opacity: 1; }
.hero-slider-arrow:hover { background: var(--gold); transform: translateY(-50%) scale(1.08); }
.hero-slider-arrow.prev { left: 12px; }
.hero-slider-arrow.next { right: 12px; }
.hero-slider-arrow svg { width: 20px; height: 20px; }
@media (max-width: 768px) {
  .hero-slider-arrow { opacity: 1; width: 38px; height: 38px; background: rgba(255,255,255,0.85); }
}

/* =========================================================
   TESTIMONIALS CAROUSEL
   ========================================================= */
.testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 0.5rem 0.25rem 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-track .testimonial {
  flex: 0 0 100%;
  scroll-snap-align: center;
  min-width: 0;
  padding: 2.25rem 2rem;
  border-left: none;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}
.testimonial-track .testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: transparent;
  cursor: pointer;
  transition: all var(--t);
  padding: 0;
}
.testimonial-dot:hover { background: var(--green-soft); }
.testimonial-dot.active {
  background: var(--green);
  transform: scale(1.2);
}
.testimonial-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--green);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--t);
}
.testimonial-arrow:hover { background: var(--green); color: var(--white); border-color: var(--green); transform: scale(1.05); }
.testimonial-arrow svg { width: 18px; height: 18px; }

/* =========================================================
   SIDE DRAWER MOBILE MENU
   ========================================================= */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 42, 32, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 200;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(20, 42, 32, 0.2);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-soft);
}
.drawer-header img { height: 56px; width: auto; display: block; }
.drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  transition: all var(--t);
}
.drawer-close:hover { background: var(--gold); transform: rotate(90deg); }
.drawer-close svg { width: 18px; height: 18px; }
.drawer-nav {
  flex: 1;
  padding: 1rem 0;
  list-style: none;
}
.drawer-nav li {
  border-bottom: 1px solid var(--border-soft);
}
.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  color: var(--ink);
  font-weight: 500;
  font-size: 1.05rem;
  transition: all var(--t);
}
.drawer-nav a:hover,
.drawer-nav a.active {
  background: var(--cream);
  color: var(--green);
  padding-left: 1.75rem;
}
.drawer-nav a.active {
  border-left: 3px solid var(--gold);
  padding-left: calc(1.5rem - 3px);
}
.drawer-nav a::after {
  content: '→';
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--t), transform var(--t);
  transform: translateX(-6px);
}
.drawer-nav a:hover::after { opacity: 1; transform: translateX(0); }
.drawer-cta {
  padding: 1.5rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--cream);
}
.drawer-cta .btn { justify-content: center; width: 100%; }
.drawer-social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border-soft);
  background: var(--cream);
}
.drawer-social a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  transition: all var(--t);
}
.drawer-social a:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.drawer-social svg { width: 16px; height: 16px; }

/* Hide old dropdown menu-open behavior — drawer now handles mobile */
@media (max-width: 900px) {
  .site-header.menu-open .nav-menu,
  .site-header.menu-open .nav-cta {
    display: none;
  }
}

/* Prevent scroll when drawer open */
body.drawer-open { overflow: hidden; }

/* =========================================================
   FOOTER — Ezy Web Pro credit
   ========================================================= */
.footer-credit {
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.15);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-credit a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.footer-credit a:hover { color: var(--gold); }

/* =========================================================
   HERO — FULL-BLEED BACKGROUND SLIDER (home)
   Each slide has its own background image + text overlay
   Smooth cross-fade + slow Ken Burns zoom on active + text slide-up
   ========================================================= */
.hero-fullbleed {
  position: relative;
  width: 100%;
  min-height: min(720px, 85vh);
  overflow: hidden;
  background: var(--green-deep);
  isolation: isolate;
}
@media (max-width: 768px) {
  .hero-fullbleed { min-height: min(640px, 92vh); }
}

.hero-full-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s ease, visibility 0s linear 1s;
  z-index: 1;
}
.hero-full-slide > .container {
  width: 100%;
  flex: 1 1 auto;
}
.hero-full-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 1s ease, visibility 0s;
  z-index: 2;
}

/* Background image behind everything */
.hero-full-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 8s ease-out;
  z-index: -2;
}
.hero-full-slide.active .hero-full-bg {
  transform: scale(1.12); /* slow Ken Burns zoom while visible */
}

/* Dark gradient overlay for text legibility */
.hero-full-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(0, 25, 8, 0.85) 0%,
      rgba(0, 40, 12, 0.65) 40%,
      rgba(0, 60, 20, 0.35) 70%,
      rgba(0, 80, 25, 0.25) 100%
    );
  z-index: -1;
}
@media (max-width: 768px) {
  .hero-full-overlay {
    background: linear-gradient(180deg, rgba(0, 25, 8, 0.55) 0%, rgba(0, 40, 12, 0.85) 100%);
  }
}

/* Text content — slides in from below when active */
.hero-full-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  color: var(--white);
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.hero-full-slide .hero-full-content > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-full-slide.active .hero-full-content > *:nth-child(1) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.hero-full-slide.active .hero-full-content > *:nth-child(2) { transition-delay: 0.50s; opacity: 1; transform: translateY(0); }
.hero-full-slide.active .hero-full-content > *:nth-child(3) { transition-delay: 0.70s; opacity: 1; transform: translateY(0); }
.hero-full-slide.active .hero-full-content > *:nth-child(4) { transition-delay: 0.90s; opacity: 1; transform: translateY(0); }

.hero-full-content .eyebrow {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
}
.hero-full-content h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw + 1rem, 4.25rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 20, 10, 0.4);
  letter-spacing: -0.02em;
}
.hero-full-content .hero-accent {
  color: var(--gold);
  font-style: italic;
}
.hero-full-lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.25rem);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 560px;
  text-shadow: 0 1px 10px rgba(0, 20, 10, 0.3);
}

/* Nav arrows */
.hero-full-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--t);
  opacity: 0.6;
}
.hero-fullbleed:hover .hero-full-arrow { opacity: 1; }
.hero-full-arrow:hover { background: var(--gold); color: var(--green-deep); border-color: var(--gold); transform: translateY(-50%) scale(1.08); }
.hero-full-arrow.prev { left: clamp(0.75rem, 2vw, 1.5rem); }
.hero-full-arrow.next { right: clamp(0.75rem, 2vw, 1.5rem); }
.hero-full-arrow svg { width: 22px; height: 22px; }
@media (max-width: 640px) {
  .hero-full-arrow {
    width: 42px;
    height: 42px;
    opacity: 1;
    top: auto;
    bottom: clamp(3rem, 6vw, 4rem);
    transform: none;
  }
  .hero-full-arrow:hover { transform: scale(1.08); }
  .hero-full-arrow svg { width: 18px; height: 18px; }
}

/* Dots — progress-bar style */
.hero-full-dots {
  position: absolute;
  bottom: clamp(1.25rem, 3vw, 2rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.hero-full-dot {
  width: 60px;
  height: 3px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transition: background 0.3s ease;
}
.hero-full-dot:hover { background: rgba(255, 255, 255, 0.5); }
.hero-full-dot span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
}
.hero-full-dot.active span {
  animation: heroDotFill 5500ms linear forwards;
}
@keyframes heroDotFill {
  from { width: 0; }
  to { width: 100%; }
}
@media (max-width: 640px) {
  .hero-full-dot { width: 44px; }
}

/* Scroll cue at bottom */
.hero-fullbleed::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
  pointer-events: none;
  z-index: 5;
}

/* =========================================================
   DROPDOWN MEGA-MENUS (desktop nav)
   ========================================================= */
.nav-menu li { position: relative; }
.nav-menu a.has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a.has-dropdown::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform var(--t);
  order: 2;
}
.nav-menu li:hover a.has-dropdown::before,
.nav-menu li:focus-within a.has-dropdown::before {
  transform: rotate(-180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(20, 42, 32, 0.15);
  border: 1px solid var(--border-soft);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  list-style: none;
  z-index: 110;
}
.nav-menu li:hover > .nav-dropdown,
.nav-menu li:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
}
/* Invisible bridge so mouse can travel from parent to dropdown without closing */
.nav-menu li:hover > .nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.925rem;
  font-weight: 500;
  transition: all var(--t);
  white-space: nowrap;
}
.nav-dropdown a::after { display: none; } /* remove the underline effect */
.nav-dropdown a:hover {
  background: var(--green-soft);
  color: var(--green-deep);
  padding-left: 1.5rem;
}
.nav-dropdown .dropdown-heading {
  padding: 0.4rem 1.25rem 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-warm);
  margin-top: 0.25rem;
}
.nav-dropdown .dropdown-heading:first-child { margin-top: 0; }
.nav-dropdown hr {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 0.4rem 0;
}
.nav-dropdown .dropdown-cta {
  margin: 0.5rem 1rem 0.25rem;
  padding: 0.55rem 0.75rem !important;
  background: var(--green);
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.nav-dropdown .dropdown-cta:hover {
  background: var(--gold);
  color: var(--green-deep) !important;
  padding-left: 0.75rem !important;
}

/* =========================================================
   MOBILE DRAWER — expandable sub-menus
   ========================================================= */
.drawer-nav-item.has-submenu > .drawer-nav-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--border-soft);
}
.drawer-nav-item.has-submenu > .drawer-nav-row > a {
  flex: 1;
  border-bottom: none;
}
.drawer-nav-item.has-submenu > .drawer-nav-row {
  border-bottom: 1px solid var(--border-soft);
}
.drawer-nav-item.has-submenu {
  border-bottom: none;
}
.drawer-submenu-toggle {
  width: 56px;
  border: none;
  border-left: 1px solid var(--border-soft);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--green-deep);
  transition: all var(--t);
}
.drawer-submenu-toggle:hover { background: var(--cream); }
.drawer-submenu-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.drawer-submenu-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
}
.drawer-submenu.open { max-height: 800px; }
.drawer-submenu li { border-bottom: 1px solid rgba(0,0,0,0.05); }
.drawer-submenu li:last-child { border-bottom: none; }
.drawer-submenu a {
  display: block;
  padding: 0.8rem 1.5rem 0.8rem 2.75rem;
  color: var(--ink-soft);
  font-size: 0.925rem;
  font-weight: 500;
  transition: all var(--t);
  border-bottom: none;
}
.drawer-submenu a:hover {
  background: var(--white);
  color: var(--green-deep);
  padding-left: 3rem;
}
.drawer-submenu a::after { content: ''; }
.drawer-submenu-heading {
  padding: 0.7rem 1.5rem 0.3rem 2.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-warm);
}

/* Anchor jumps offset for sticky header — sections don't land under the nav */
section[id], article[id] { scroll-margin-top: 100px; }
