/* ============================================================
   SPROUT LAWN & LANDSCAPE — Design System
   main.css — shared across every page
   Colors: Dark green #2c4a2e + Pink accent #d4327f
   Fonts: Cormorant Garamond (display) + Outfit (body)
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Brand Colors */
  --green-deep: #2c4a2e;
  --green-dark: #1e3520;
  --green-rich: #3a5e3c;
  --green-light: #e8f0e8;
  --green-mist: #f4f8f4;
  --pink: #d4327f;
  --pink-light: #e84a9a;
  --pink-dark: #b82a6b;
  --pink-glow: rgba(212, 50, 127, 0.12);

  /* Neutrals */
  --white: #ffffff;
  --cream: #faf9f7;
  --cream-dark: #edeae5;
  --ink: #1a1a1a;
  --ink-light: #3d3d3d;
  --ink-muted: #6b6b6b;
  --ink-faint: #9a9a9a;
  --border: #e0ddd8;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container: 1200px;
  --container-narrow: 900px;
  --container-wide: 1400px;
  --nav-height: 80px;
  --radius: 6px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.15);

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.3s;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  margin-bottom: 1rem;
  color: var(--ink-light);
}

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.75rem;
  display: block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 640px;
  margin-bottom: var(--space-lg);
}

.section-subtitle.centered { margin-inline: auto; }

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

.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

.section {
  padding: var(--space-xl) 0;
}

.section--cream { background: var(--cream); }
.section--green { background: var(--green-deep); }
.section--green-dark { background: var(--green-dark); }
.section--pink-glow { background: var(--pink-glow); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  line-height: 1.2;
}

.btn--pink {
  background: var(--pink);
  color: var(--white);
}
.btn--pink:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 50, 127, 0.3);
}

.btn--white {
  background: var(--white);
  color: var(--green-deep);
}
.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

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

.btn--green {
  background: var(--green-deep);
  color: var(--white);
}
.btn--green:hover {
  background: var(--green-rich);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 74, 46, 0.3);
}

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

.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.82rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

/* -- Top bar (above main nav) -- */
.top-bar {
  background: var(--green-dark);
  padding: 0.4rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__links {
  display: flex;
  gap: 1.5rem;
}

.top-bar__links a {
  color: rgba(255,255,255,0.7);
  transition: color var(--duration);
}

.top-bar__links a:hover { color: var(--white); }

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar__phone {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.top-bar__social {
  display: flex;
  gap: 0.75rem;
}

.top-bar__social a {
  color: rgba(255,255,255,0.6);
  transition: color var(--duration);
}

.top-bar__social a:hover { color: var(--pink-light); }

/* -- Main nav -- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--green-deep);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--duration);
}

.nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

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

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all var(--duration);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav__link svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  transition: transform var(--duration);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 0.75rem;
  min-width: 260px;
  max-height: 70vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease);
  z-index: 100;
}
.nav__dropdown--mega {
  min-width: 680px;
  left: 0;
  transform: translateX(-10%) translateY(8px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem 1.5rem;
  padding: 1.25rem 1.5rem;
  max-height: none;
  overflow-y: visible;
}
.nav__item:hover .nav__dropdown--mega,
.nav__item.open .nav__dropdown--mega {
  transform: translateX(-10%) translateY(0);
}
.mega__heading {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.75rem 0.25rem;
  margin-top: 0.25rem;
}
.mega__heading:first-child { margin-top: 0; }

.nav__item:hover .nav__dropdown,
.nav__item.open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__item:hover .nav__link svg {
  transform: rotate(180deg);
}

.nav__dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  color: var(--ink-light);
  border-radius: var(--radius);
  transition: all 0.15s;
}

.nav__dropdown a:hover {
  background: var(--green-mist);
  color: var(--green-deep);
}

.nav__cta {
  margin-left: 0.75rem;
}

.nav__phone {
  display: none;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */

/* -- Homepage hero (video background) -- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(120vw, 178vh);
  height: max(120vh, 56.25vw);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 53, 32, 0.88) 0%,
    rgba(44, 74, 46, 0.75) 50%,
    rgba(30, 53, 32, 0.85) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: var(--space-2xl) 0;
}

.hero__veteran-badge {
  margin-bottom: var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.5rem 1.5rem 0.5rem 0.5rem;
}

.hero__veteran-badge img {
  height: 82px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.hero__veteran-badge span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
}

.hero__badge img {
  height: 36px;
  width: auto;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero h1 .accent {
  color: var(--pink-light);
  text-shadow: 0 0 40px rgba(232, 74, 154, 0.3);
}

.hero__desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-lg);
  max-width: 560px;
  line-height: 1.8;
}

/* -- Interior page hero (image background) -- */
.hero--interior {
  min-height: 400px;
  padding: var(--space-2xl) 0 var(--space-xl);
}

.hero--interior .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero--interior .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero--interior .hero__overlay {
  background: linear-gradient(
    to bottom,
    rgba(30, 53, 32, 0.85) 0%,
    rgba(30, 53, 32, 0.7) 100%
  );
}

.hero--interior .hero__content {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

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

.hero--interior .hero__breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.hero--interior .hero__breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color var(--duration);
}

.hero--interior .hero__breadcrumb a:hover {
  color: var(--pink-light);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md) 0;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.trust-bar__icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-bar__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-deep);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-bar__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.trust-bar__sub {
  font-size: 0.72rem;
  color: var(--ink-muted);
}

/* ============================================================
   SERVICE CARDS GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
}

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

.service-card__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__body {
  padding: var(--space-md);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--duration);
}

.service-card__link:hover {
  gap: 0.7rem;
  color: var(--pink-dark);
}

/* ============================================================
   CONTENT SECTIONS (service pages, about, etc.)
   ============================================================ */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl) 0;
}

.content-row.reversed { direction: rtl; }
.content-row.reversed > * { direction: ltr; }

.content-row__text h2 {
  margin-bottom: var(--space-sm);
}

.content-row__text p {
  margin-bottom: var(--space-sm);
}

.content-row__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.content-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   FAQ ACCORDION (schema-ready)
   ============================================================ */
.faq { padding: var(--space-xl) 0; }

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

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-md) 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--duration);
}

.faq__question:hover { color: var(--green-deep); }

.faq__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--ink-muted);
  fill: none;
  stroke-width: 2;
  transition: transform var(--duration) var(--ease);
}

.faq__item.open .faq__question svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq__item.open .faq__answer {
  max-height: 600px;
}

.faq__answer p {
  padding-bottom: var(--space-md);
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.8;
}

/* ============================================================
   QUOTE FORM SECTION
   ============================================================ */
.quote-section {
  background: var(--green-deep);
  padding: var(--space-xl) 0;
}

.quote-section h2 {
  color: var(--white);
}

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

.quote-section p {
  color: rgba(255,255,255,0.7);
}

.quote-form-embed {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.quote-form-embed iframe {
  width: 100%;
  min-height: 600px;
  border: none;
}

/* ============================================================
   AREAS SERVED GRID
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-deep);
  transition: all var(--duration) var(--ease);
}

.area-card:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   COMMERCIAL CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
}

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,53,32,0.9), rgba(44,74,46,0.8));
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.cta-banner h2 { color: var(--white); margin-bottom: var(--space-sm); }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: var(--space-lg); }

/* ============================================================
   EMAIL SIGNUP BAR
   ============================================================ */
.signup-bar {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-lg) 0;
}

.signup-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.signup-bar__text h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.signup-bar__text p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 0;
}

.signup-bar__form {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.signup-bar__input {
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  min-width: 280px;
  transition: border-color var(--duration);
}

.signup-bar__input:focus {
  outline: none;
  border-color: var(--green-deep);
}

.signup-bar__input::placeholder {
  color: var(--ink-faint);
}

@media (max-width: 768px) {
  .signup-bar__inner {
    flex-direction: column;
    text-align: center;
  }

  .signup-bar__form {
    flex-direction: column;
    width: 100%;
  }

  .signup-bar__input {
    min-width: 0;
    width: 100%;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  color: rgba(255,255,255,0.7);
  padding-top: 0;
  position: relative;
  margin-top: -40px;
  background: linear-gradient(to bottom, transparent 40px, var(--green-dark) 40px);
}

.footer__grass {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

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

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer__links a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--duration);
}

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

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer__bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--duration);
}

.footer__bottom a:hover { color: var(--pink-light); }

/* ============================================================
   SIDE TAB — "GET AN ESTIMATE"
   ============================================================ */
.side-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.side-tab a {
  display: block;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 0.6rem;
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: -2px 2px 10px rgba(212, 50, 127, 0.3);
  transition: all var(--duration) var(--ease);
}

.side-tab a:hover {
  background: var(--pink-light);
  padding-right: 0.9rem;
  box-shadow: -4px 2px 20px rgba(212, 50, 127, 0.4);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.56s; }
.stagger.visible > *:nth-child(9) { transition-delay: 0.64s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BLOG STYLES
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-md);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.blog-card__img {
  height: 220px;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: var(--space-md);
}

.blog-card__date {
  font-size: 0.78rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* Blog post single */
.post-content {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding: var(--space-xl) 1.25rem;
}

.post-content h2 { margin: var(--space-lg) 0 var(--space-sm); }
.post-content h3 { margin: var(--space-md) 0 var(--space-sm); }

.post-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.post-content img {
  border-radius: var(--radius-lg);
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
}

.post-content ul, .post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.post-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  list-style: disc;
  color: var(--ink-light);
}

.post-content ol li { list-style: decimal; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__phone { display: block; }

  .nav__menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green-deep);
    padding: var(--space-md) 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
  }

  .nav__menu.open .nav__item {
    width: 100%;
  }

  .nav__menu.open .nav__link {
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }

  .nav__dropdown {
    position: static !important;
    transform: none !important;
    left: auto !important;
    background: rgba(255,255,255,0.05);
    box-shadow: none;
    border-radius: var(--radius);
    padding: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease), padding 0.3s var(--ease);
    width: 100%;
    min-width: 0;
  }

  .nav__item.open .nav__dropdown {
    max-height: 2000px;
    padding: 0.5rem 0;
    transform: none !important;
  }

  .nav__dropdown--mega {
    display: block;
    min-width: 0;
    padding: 0;
    gap: 0;
  }

  .mega__heading {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    padding: 0.75rem 1rem 0.15rem;
    margin-top: 0.5rem;
  }

  .mega__heading:first-child { margin-top: 0; }

  .nav__dropdown a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    padding: 0.55rem 1rem;
    display: block;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
  }

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

  .content-row {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .content-row.reversed { direction: ltr; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .hero { min-height: calc(100vh - 80px); min-height: calc(100svh - 80px); }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
  }

  .container {
    padding-inline: 1.5rem;
  }

  .top-bar { display: none; }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    word-wrap: break-word;
  }

  .hero__desc {
    font-size: 1rem;
  }

  .hero__veteran-badge {
    padding: 0.4rem 1rem 0.4rem 0.4rem;
    gap: 0.6rem;
  }

  .hero__veteran-badge img {
    height: 55px;
  }

  .hero__veteran-badge span {
    font-size: 0.78rem;
  }

  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer {
    margin-top: -15px;
    background: linear-gradient(to bottom, transparent 15px, var(--green-dark) 15px);
  }

  .footer__grass {
    margin-bottom: var(--space-md);
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero { min-height: calc(100vh - 80px); min-height: calc(100svh - 80px); }
  .hero--interior { min-height: 300px; }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
    text-align: center;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .side-tab a {
    font-size: 0.65rem;
    padding: 0.6rem 0.35rem;
    letter-spacing: 0.06em;
  }
}

/* Small mobile */
@media (max-width: 380px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .nav, .top-bar, .side-tab, .footer { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  body { color: #000; background: #fff; }
}

/* ============================================
   NAV SIZING UPDATE
   ============================================ */

/* Bigger logo */
.nav__logo img {
  height: 54px;
}

/* Bigger nav links */
.nav__link {
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
}

/* Slightly bigger dropdown links */
.nav__dropdown a {
  font-size: 0.9rem;
  padding: 0.55rem 0.85rem;
}

/* Testimonial scroll - hide scrollbar but keep scroll */
.testimonial-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonial-scroll::-webkit-scrollbar {
  display: none;
}
