/* ============================================================
   EDEN LANDSCAPING SERVICE — style.css
   Brand Colors: lime #8fc93a | teal #1a8fa0 | orange #F47920
   Dark navy #0f1520 | White #fff | Light bg #f8f9f4
   Font: DM Sans (400, 500, 600, 700)
   ============================================================ */

/* --- Design Tokens --- */
:root {
  /* Brand */
  --color-lime: #8fc93a;
  --color-lime-dark: #72a22e;
  --color-teal: #1a8fa0;
  --color-teal-dark: #137585;
  --color-orange: #F47920;
  --color-orange-dark: #d8641a;
  --color-navy: #0f1520;
  --color-navy-mid: #1a2540;
  --color-white: #ffffff;
  --color-bg: #f8f9f4;
  --color-surface: #ffffff;
  --color-text: #1a1f14;
  --color-text-muted: #5a6050;
  --color-text-faint: #9aa08e;
  --color-border: #dde3d5;
  --color-divider: #e8ecdf;

  /* Primary accent for links/focus */
  --color-primary: var(--color-teal);
  --color-primary-hover: var(--color-teal-dark);
  --color-cta: var(--color-orange);
  --color-cta-hover: var(--color-orange-dark);

  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15,21,32,0.08);
  --shadow-md: 0 4px 16px rgba(15,21,32,0.1);
  --shadow-lg: 0 12px 40px rgba(15,21,32,0.14);

  /* Transitions */
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --content-narrow: 680px;
  --content-default: 980px;
  --content-wide: 1240px;

  /* Fonts */
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'DM Sans', system-ui, -apple-system, sans-serif;
}

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

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-20);
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul[role='list'], ol[role='list'] { list-style: none; }

input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.15;
  font-family: var(--font-display);
}

p, li, figcaption {
  text-wrap: pretty;
}

button { cursor: pointer; background: none; border: none; }

a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-hover); }

::selection {
  background: rgba(26,143,160,0.2);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 4vw, var(--space-12));
}
.container--narrow { max-width: var(--content-narrow); }
.container--default { max-width: var(--content-default); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition), padding var(--transition);
}

.nav--scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-2);
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 80px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav__links a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--color-teal);
  background: rgba(26,143,160,0.06);
}

.nav__links a.active {
  color: var(--color-teal);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.nav__dropdown-toggle:hover {
  color: var(--color-teal);
  background: rgba(26,143,160,0.06);
}

.nav__dropdown-toggle svg {
  transition: transform var(--transition);
}

.nav__dropdown:hover .nav__dropdown-toggle svg,
.nav__dropdown.open .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 0;
  min-width: 200px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  list-style: none;
  z-index: 200;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
}

.nav__dropdown-menu a:hover {
  color: var(--color-teal);
  background: rgba(26,143,160,0.06);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--color-orange);
  color: var(--color-white) !important;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--color-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(244,121,32,0.35);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  border: none;
  background: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-full);
  transition: transform var(--transition), opacity var(--transition);
}

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

/* Mobile nav */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4);
  border-top: 1px solid var(--color-divider);
  background: var(--color-white);
}

.nav__mobile.open { display: flex; }

.nav__mobile a, .nav__mobile-services-toggle {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition);
}

.nav__mobile a:hover, .nav__mobile-services-toggle:hover {
  background: var(--color-bg);
  color: var(--color-teal);
}

.nav__mobile-services {
  padding-left: var(--space-4);
}

.nav__mobile-services a {
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-4);
}

.nav__mobile-cta {
  margin-top: var(--space-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  background: var(--color-orange);
  color: var(--color-white) !important;
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-align: center;
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-base);
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), 
              transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--orange {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}
.btn--orange:hover {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  box-shadow: 0 6px 24px rgba(244,121,32,0.4);
  color: var(--color-white);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn--teal {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}
.btn--teal:hover {
  background: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
  box-shadow: 0 6px 24px rgba(26,143,160,0.4);
  color: var(--color-white);
}

.btn--outline-teal {
  background: transparent;
  color: var(--color-teal);
  border-color: var(--color-teal);
}
.btn--outline-teal:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

.btn--lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-lg);
}

.btn--sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
}

/* ============================================================
   HERO — Full Viewport
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--page {
  min-height: 50vh;
  padding-block: var(--space-24);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,21,32,0.78) 0%,
    rgba(15,21,32,0.55) 60%,
    rgba(15,21,32,0.40) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(var(--space-16), 8vh, var(--space-24));
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  background: rgba(143,201,58,0.2);
  border: 1px solid rgba(143,201,58,0.4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}

.hero h1 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-5);
  max-width: 18ch;
}

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

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
  margin-bottom: var(--space-8);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

@media (max-width: 640px) {
  .hero h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-navy);
  padding-block: var(--space-4);
  overflow: hidden;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

.trust-bar__item svg {
  color: var(--color-lime);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .trust-bar__inner { gap: var(--space-4); }
  .trust-bar__item { font-size: var(--text-xs); }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding-block: clamp(var(--space-12), 7vw, var(--space-24));
}

.section--light { background: var(--color-bg); }
.section--white { background: var(--color-white); }
.section--dark { background: var(--color-navy); }
.section--navy-mid { background: var(--color-navy-mid); }
.section--teal { background: var(--color-teal); }
.section--lime-subtle { background: linear-gradient(180deg, #f8f9f4 0%, #eef4e2 100%); }

.section__header {
  text-align: center;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-16));
}

.section__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-teal);
  margin-bottom: var(--space-3);
}

.section--dark .section__eyebrow,
.section--teal .section__eyebrow { color: var(--color-lime); }

.section__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section--dark .section__title,
.section--teal .section__title,
.section--navy-mid .section__title { color: var(--color-white); }

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-inline: auto;
  line-height: 1.65;
}

.section--dark .section__subtitle,
.section--teal .section__subtitle,
.section--navy-mid .section__subtitle { color: rgba(255,255,255,0.75); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  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 {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(143,201,58,0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-lime-dark);
}

.service-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.service-card__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-5);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-teal);
  transition: gap var(--transition), color var(--transition);
}

.service-card__link:hover {
  gap: var(--space-3);
  color: var(--color-teal-dark);
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WHY EDEN / VALUE PROPS
   ============================================================ */
.value-props {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8);
}

.value-prop {
  flex: 0 1 calc(33.333% - var(--space-8));
  min-width: 220px;
  max-width: 280px;
  text-align: center;
}

.value-prop__icon {
  width: 64px;
  height: 64px;
  background: rgba(143,201,58,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: var(--color-lime);
}

.value-prop__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.value-prop__text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .value-prop { flex: 0 1 calc(50% - var(--space-8)); }
}
@media (max-width: 600px) {
  .value-prop { flex: 0 1 100%; max-width: 100%; }
}

/* ============================================================
   CITIES STRIP
   ============================================================ */
.cities-strip {
  background: var(--color-white);
  padding-block: var(--space-10);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

.cities-strip__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  text-align: center;
}

.cities-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  list-style: none;
}

.cities-strip__list li {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}

.cities-strip__list li::before {
  content: '📍';
  font-size: 0.85em;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-teal) 0%, #0f6d7d 100%);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(143,201,58,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-section__text {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
}

/* ============================================================
   SERVICES LIST (detail pages)
   ============================================================ */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.service-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.service-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-teal);
}

.service-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(26,143,160,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-teal);
}

.service-item__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.service-item__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .services-list { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING TIERS
   ============================================================ */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.pricing-tier {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  border: 2px solid var(--color-border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

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

.pricing-tier--featured {
  border-color: var(--color-teal);
  box-shadow: var(--shadow-md);
}

.pricing-tier__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-teal);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-tier__name {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.pricing-tier__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.pricing-tier__features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pricing-tier__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pricing-tier__features li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--color-lime);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 900px) {
  .pricing-tiers { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: var(--color-teal);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.faq-question__text {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(26,143,160,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-question__icon {
  transform: rotate(180deg);
  background: var(--color-teal);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer__inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   CITY SECTIONS (service area)
   ============================================================ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.city-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.city-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-lime);
}

.city-card__name {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.city-card__name::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-lime);
  border-radius: 50%;
  flex-shrink: 0;
}

.city-card__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .cities-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  background: rgba(26,143,160,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  flex-shrink: 0;
}

.contact-item__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.contact-item__value {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
}

.contact-item__value a {
  color: var(--color-text);
}
.contact-item__value a:hover { color: var(--color-teal); }

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.about-value {
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
}

.about-value__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(143,201,58,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: var(--color-lime-dark);
}

.about-value__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.about-value__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .about-values { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.75);
  padding-top: clamp(var(--space-12), 6vw, var(--space-20));
  padding-bottom: var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.footer__brand img {
  height: 64px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer__tagline {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-5);
  max-width: 30ch;
  line-height: 1.6;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-2);
}

.footer__contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__contact-item a:hover { color: var(--color-lime); }

.footer__contact-item svg { color: var(--color-lime); flex-shrink: 0; }

.footer__col-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--color-lime); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

.footer__bottom-links {
  display: flex;
  gap: var(--space-4);
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   HERO PAGE VARIANT (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,21,32,0.82) 0%, rgba(15,21,32,0.6) 100%);
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(var(--space-12), 8vh, var(--space-20));
}

.page-hero h1 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  max-width: 22ch;
}

.page-hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-5);
}

.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.page-hero__breadcrumb a:hover { color: var(--color-lime); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.35); }

/* ============================================================
   WHY GROW EDIBLE (benefits)
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.benefit-card {
  text-align: center;
  padding: var(--space-6);
}

.benefit-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-3);
  display: block;
}

.benefit-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.benefit-card__text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BEFORE / AFTER CALLOUT
   ============================================================ */
.before-after {
  background: linear-gradient(135deg, var(--color-navy-mid) 0%, var(--color-navy) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.before-after__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.before-after__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.before-after__list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
}

.before-after__list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--color-lime);
  color: var(--color-navy);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .before-after { grid-template-columns: 1fr; }
}

/* ============================================================
   INTRO / STORY TEXT
   ============================================================ */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.story-block__text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
  max-width: 60ch;
}

.story-block__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-block__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .story-block { grid-template-columns: 1fr; }
  .story-block__image { order: -1; }
}

/* ============================================================
   CONTACT CARD HIGHLIGHT
   ============================================================ */
.highlight-bar {
  background: var(--color-lime-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.highlight-bar__text {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
}

.highlight-bar__sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  margin-top: var(--space-1);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-lime { color: var(--color-lime) !important; }
.text-teal { color: var(--color-teal) !important; }
.text-orange { color: var(--color-orange) !important; }
.text-white { color: var(--color-white) !important; }
.text-muted { color: var(--color-text-muted) !important; }
.text-center { text-align: center; }

.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.max-prose { max-width: 65ch; }

/* ============================================================
   FADE IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Nursery Section ─────────────────────────────────────────────────────── */
.nursery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.nursery-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nursery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}
.nursery-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.85rem;
}
.nursery-card__img img { width: 100%; height: 100%; object-fit: cover; }
.nursery-card__body { padding: 1rem; }
.nursery-card__badge {
  display: inline-block;
  background: #f0fdf4;
  color: #1a3d2b;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 10px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nursery-card__name { font-size: 1.1rem; font-weight: 700; color: #111827; margin: 0 0 2px; }
.nursery-card__meta { font-size: 0.82rem; color: #6b7280; margin-bottom: 0.5rem; }
.nursery-card__desc { font-size: 0.85rem; color: #4b5563; margin-bottom: 1rem; line-height: 1.5; }
.nursery-card__footer { display: flex; align-items: center; justify-content: space-between; }
.nursery-card__price { font-size: 1.35rem; font-weight: 800; color: #1a3d2b; }
.nursery-card__qty { font-size: 0.78rem; color: #9ca3af; }
.nursery-card__btn {
  background: #8fc93a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}
.nursery-card__btn:hover { background: #7ab52e; }
.nursery-card__btn:disabled { background: #d1d5db; cursor: not-allowed; }
.nursery-empty { text-align: center; color: #9ca3af; padding: 3rem 0; font-size: 1rem; }

/* Modal */
.nursery-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: flex-end; justify-content: center;
}
@media (min-width: 640px) {
  .nursery-modal { align-items: center; }
}
.nursery-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
}
.nursery-modal__box {
  position: relative;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 1.5rem;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
}
@media (min-width: 640px) {
  .nursery-modal__box { border-radius: 20px; }
}
.nursery-modal__close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: #6b7280; line-height: 1;
}
.nursery-modal__title { font-size: 1.2rem; font-weight: 700; margin: 0 0 4px; }
.nursery-modal__tree { color: #1a3d2b; font-weight: 600; margin: 0 0 1.25rem; font-size: 0.95rem; }
.nursery-form { display: flex; flex-direction: column; gap: 0.85rem; }
.nursery-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.nursery-form__field { display: flex; flex-direction: column; gap: 4px; }
.nursery-form__field label { font-size: 0.8rem; font-weight: 600; color: #374151; }
.nursery-form__field input,
.nursery-form__field select,
.nursery-form__field textarea {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
}
.nursery-form__field input:focus,
.nursery-form__field select:focus,
.nursery-form__field textarea:focus { border-color: #8fc93a; box-shadow: 0 0 0 3px rgba(143,201,58,0.15); }
.btn--green { background: #1a3d2b; color: #fff; }
.btn--green:hover { background: #2a5c3f; }
.btn--full { width: 100%; justify-content: center; }

/* ─── Nursery Gallery Lightbox ─────────────────────────────────────────── */
.nursery-gallery {
  position: fixed; inset: 0; z-index: 1100;
  display: flex; align-items: flex-end; justify-content: center;
}
@media (min-width: 640px) {
  .nursery-gallery { align-items: center; }
}
.nursery-gallery__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
}
.nursery-gallery__box {
  position: relative;
  background: #fff;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 680px;
  max-height: 92vh;
  overflow-y: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px) {
  .nursery-gallery__box { border-radius: 20px; }
}
.nursery-gallery__header {
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  position: sticky; top: 0;
  background: #fff;
  z-index: 2;
}
.nursery-gallery__close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.6rem;
  cursor: pointer; color: #6b7280; line-height: 1;
  padding: 0.25rem 0.5rem;
}
.nursery-gallery__close:hover { color: #111827; }
.nursery-gallery__title {
  font-size: 1.25rem; font-weight: 800;
  color: #111827; margin: 0 2.5rem 2px 0;
}
.nursery-gallery__meta {
  font-size: 0.82rem; color: #6b7280; margin: 0;
}
.nursery-gallery__desc {
  padding: 0.85rem 1.5rem 0;
  font-size: 0.88rem; color: #4b5563; line-height: 1.55;
}
.nursery-gallery__full-desc {
  display: none;
}
.nursery-gallery__desc.expanded .nursery-gallery__full-desc {
  display: inline;
}
.nursery-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1rem 1.5rem;
}
@media (min-width: 480px) {
  .nursery-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
.nursery-gallery__photo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s, transform 0.15s;
}
.nursery-gallery__photo:hover {
  border-color: #8fc93a;
  transform: scale(1.02);
}
.nursery-gallery__photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.nursery-gallery__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(26,61,43,0.82);
  color: #fff;
  font-size: 0.75rem; font-weight: 700;
  text-align: center;
  padding: 4px 6px;
  letter-spacing: 0.04em;
}
.nursery-gallery__footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: sticky; bottom: 0;
  background: #fff;
}
.nursery-gallery__footer .nursery-card__btn {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border-radius: 10px;
}
.nursery-gallery__empty {
  text-align: center;
  color: #9ca3af;
  font-size: 0.9rem;
  padding: 2rem 1.5rem;
}

/* Photo count badge on tree card */
.nursery-card__photo-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 4px;
}
.nursery-card__photo-count svg {
  width: 13px; height: 13px;
  stroke: #6b7280;
}
