/* ============================================================
   GREENWAY REMOVAL — styles.css
   greenwayremovalservices.com
   Kissimmee · Orlando · Central Florida
   ============================================================ */

/* ---- COLOR SYSTEM ----------------------------------------- */
:root {
  --primary:   #1B5E20;   /* Dark green — dominant brand color    */
  --accent:    #8BC34A;   /* Lime green — supporting accent       */
  --light-bg:  #F5F7F6;   /* Light gray — alternate section bg    */
  --text-dark: #1A1A1A;   /* Near-black body text                 */
  --white:     #FFFFFF;
  --highlight: #F59300;   /* Orange — SPARINGLY: stars, badges only */

  /* Spacing tokens */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4.5rem;
  --space-xxl: 7rem;

  /* Typography */
  --font-heading: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Transitions (transform + opacity only — never transition-all) */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.28s var(--ease-out);

  /* Layered shadows — green-tinted for brand cohesion */
  --shadow-sm:
    0 1px 2px rgba(27, 94, 32, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 2px 4px rgba(27, 94, 32, 0.06),
    0 6px 16px rgba(27, 94, 32, 0.10),
    0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-lg:
    0 4px 8px rgba(27, 94, 32, 0.07),
    0 12px 32px rgba(27, 94, 32, 0.14),
    0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-float:
    0 8px 16px rgba(27, 94, 32, 0.10),
    0 24px 64px rgba(27, 94, 32, 0.16),
    0 4px 8px rgba(0, 0, 0, 0.04);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }
a  { text-decoration: none; color: inherit; }

/* ---- TYPOGRAPHY ------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2rem, 5.5vw, 3.5rem);  font-weight: 800; }
h2 { font-size: clamp(1.65rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

/* ---- LAYOUT ----------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.section--alt {
  background: var(--light-bg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header p {
  color: #5a6472;
  max-width: 540px;
  margin: 0.5rem auto 0;
  font-size: 1.05rem;
}

/* ---- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.85rem;
  border-radius: 9px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    transform 0.18s var(--ease-out),
    opacity 0.18s var(--ease-out);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn:active {
  transform: translateY(1px);
}

/* Primary */
.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: #256B2B;
  border-color: #256B2B;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Secondary */
.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

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

/* Secondary dark (used outside hero) */
.btn--secondary-dark {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.btn--secondary-dark:hover {
  background: #EBF5EB;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(27, 94, 32, 0.10);
  box-shadow: 0 1px 10px rgba(27, 94, 32, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 0.4rem var(--space-md);
  max-width: 1120px;
  margin: 0 auto;
}

.header__logo img {
  height: 110px;
  width: auto;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.header__phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  transition: color 0.2s var(--ease-out);
  display: none; /* shown at tablet+ */
}

.header__phone:hover { color: #256B2B; }

.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 5px;
  background: rgba(139, 195, 74, 0.15);
  color: var(--primary);
  border: 1px solid rgba(139, 195, 74, 0.4);
  display: none; /* shown at tablet+ */
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../Brand Assets/Gemini_Generated_Image_1on63j1on63j1on6.png');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s linear;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(8, 35, 10, 0.88) 0%,
      rgba(8, 35, 10, 0.72) 55%,
      rgba(8, 35, 10, 0.45) 100%
    );
}

/* Subtle grain texture on hero */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) var(--space-md);
  max-width: 720px;
  /* Entrance animation */
  animation: hero-in 0.9s var(--ease-out) both;
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  animation: hero-in 0.9s 0.1s var(--ease-out) both;
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  animation: hero-in 0.9s 0.18s var(--ease-out) both;
}

/* Accent the "Kissimmee & Orlando" span */
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-lg);
  max-width: 500px;
  line-height: 1.65;
  animation: hero-in 0.9s 0.26s var(--ease-out) both;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: hero-in 0.9s 0.34s var(--ease-out) both;
}

/* Trust signal strip at bottom of hero */
.hero__trust {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(27, 94, 32, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(139, 195, 74, 0.2);
}

.hero__trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item:last-child { border-right: none; }

.trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   To add a card: copy one .service-card div and update content
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(27, 94, 32, 0.09);
  border-radius: 14px;
  padding: var(--space-md) var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.25s var(--ease-out),
    transform 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
}

/* Accent left border on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--primary));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease-out);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(139, 195, 74, 0.3);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(139, 195, 74, 0.18), rgba(27, 94, 32, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(139, 195, 74, 0.25);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 0.35rem;
}

.service-card > p {
  font-size: 0.88rem;
  color: #5a6472;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-card ul li {
  font-size: 0.85rem;
  color: var(--text-dark);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.45;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============================================================
   TEAM IN ACTION
   ============================================================ */
.team-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.team-photo {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-md);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 40, 12, 0.45) 0%, transparent 50%);
  pointer-events: none;
}

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.ba-slider {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  cursor: ew-resize;
  background: var(--light-bg);
}

.ba-slider__img {
  position: absolute;
  inset: 0;
}

.ba-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

.ba-slider__img--before {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.ba-slider__img--after {
  z-index: 1;
}

/* Labels */
.ba-label {
  position: absolute;
  bottom: 0.75rem;
  z-index: 3;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  pointer-events: none;
}

.ba-label--before {
  left: 0.75rem;
  background: rgba(192, 57, 43, 0.85);
  color: white;
}

.ba-label--after {
  right: 0.75rem;
  background: rgba(27, 94, 32, 0.85);
  color: white;
}

/* Hidden range input — spans full slider for interaction */
.ba-slider__range {
  position: absolute;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Handle line + icon */
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 5;
  width: 3px;
  background: white;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
  pointer-events: none;
  transition: left 0s;
}

.ba-slider__handle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  padding: 6px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.2),
    0 0 0 3px rgba(255, 255, 255, 0.3);
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem var(--space-sm);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 94, 32, 0.07);
  transition: box-shadow 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}

.why-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-item__check {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(27, 94, 32, 0.25);
}

.why-item__check svg {
  width: 17px;
  height: 17px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item__text h4 {
  color: var(--text-dark);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.why-item__text p {
  font-size: 0.83rem;
  color: #5a6472;
  margin-top: 0.15rem;
  line-height: 1.5;
}

/* ============================================================
   REVIEWS
   To add a review: copy one .review-card div and update content
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(27, 94, 32, 0.09);
  border-radius: 14px;
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

/* Subtle quote mark */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -0.4rem;
  right: 1rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(139, 195, 74, 0.12);
  line-height: 1;
  pointer-events: none;
}

.review-card__stars {
  font-size: 0.95rem;
  color: var(--highlight); /* orange — appropriate for star ratings */
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

.review-card h4 {
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.review-card p {
  font-size: 0.875rem;
  color: #5a6472;
  line-height: 1.65;
  font-style: italic;
}

.review-card__location {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  font-style: normal;
  font-family: var(--font-heading);
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
}

/* ============================================================
   QUOTE FORM
   ============================================================ */
.form-wrapper {
  background: var(--white);
  border-radius: 18px;
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(27, 94, 32, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

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

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-group label .required {
  color: var(--highlight);
  margin-left: 0.15rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.72rem 0.95rem;
  border: 1.5px solid rgba(27, 94, 32, 0.18);
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.10);
}

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

/* Custom select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B5E20' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Validation states */
.form-error {
  font-size: 0.78rem;
  color: #c0392b;
  display: none;
}

.form-group.has-error input,
.form-group.has-error select {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.form-group.has-error .form-error { display: block; }

.form-submit {
  margin-top: var(--space-sm);
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.95rem;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.form-success.is-visible { display: block; }

.form-success__icon {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  margin-bottom: 0.5rem;
}

.form-success p {
  color: #5a6472;
  max-width: 380px;
  margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.82);
  padding: var(--space-xl) 0 var(--space-md);
}

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

.footer__logo img {
  height: 120px;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.2rem;
}

.footer__espanol {
  font-size: 0.78rem;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-top: 0.6rem;
  letter-spacing: 0.04em;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.footer ul li {
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s var(--ease-out);
}

.footer ul li a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-sm);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

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

/* ============================================================
   STICKY MOBILE CALL BUTTON (hidden on desktop)
   ============================================================ */
.sticky-call {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--primary);
  color: var(--white);
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.05rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 -3px 16px rgba(27, 94, 32, 0.28);
  transition:
    background 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out);
  letter-spacing: 0.01em;
}

.sticky-call:hover { background: #256B2B; }

.sticky-call:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -4px;
}

/* ============================================================
   RESPONSIVE — TABLET (≥ 640px)
   ============================================================ */
@media (min-width: 640px) {
  .badge,
  .header__phone { display: inline-block; display: inline-flex; }

  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .team-photos    { grid-template-columns: repeat(2, 1fr); }
  .ba-grid        { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid   { grid-template-columns: repeat(2, 1fr); }
  .form-row--2col { grid-template-columns: repeat(2, 1fr); }
  .footer__grid   { grid-template-columns: repeat(2, 1fr); }

  .form-wrapper { padding: var(--space-lg); }
}

/* ============================================================
   RESPONSIVE — DESKTOP (≥ 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  /* Hide sticky call button on desktop */
  .sticky-call { display: none; }

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

/* Body padding on mobile so content isn't hidden under sticky button */
@media (max-width: 1023px) {
  body { padding-bottom: 62px; }
}

/* ============================================================
   RESPONSIVE — MOBILE HERO OPTIMIZATIONS (< 640px)
   ============================================================ */
@media (max-width: 639px) {
  .hero {
    min-height: auto;
    flex-direction: column;
  }

  /* Stronger overlay on mobile for readability */
  .hero__overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(8, 35, 10, 0.82) 0%,
        rgba(8, 35, 10, 0.75) 60%,
        rgba(8, 35, 10, 0.88) 100%
      );
  }

  .hero__bg {
    background-position: 65% center;
  }

  .hero__content {
    padding: 5.5rem var(--space-sm) var(--space-lg);
  }

  .hero__eyebrow {
    font-size: 0.62rem;
    margin-bottom: 0.65rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.65rem;
    line-height: 1.18;
  }

  .hero__sub {
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
    line-height: 1.55;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 0.6rem;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  /* Trust strip — below hero content on mobile */
  .hero__trust {
    position: relative;
    width: 100%;
    background: rgba(27, 94, 32, 0.92);
  }

  .hero__trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }

  .trust-item {
    font-size: 0.72rem;
    padding: 0.7rem 0.6rem;
    justify-content: center;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 0.35rem;
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .trust-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .trust-item svg {
    width: 14px;
    height: 14px;
  }
}

/* ============================================================
   PRIMARY NAV (added 2026-04-09)
   ============================================================ */
.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 980px) {
  .nav { display: flex; }
}
.nav__item {
  position: relative;
}
.nav__link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: #1A2B0E;
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__link:hover,
.nav__link:focus-visible { color: #4a8a0e; }
.nav__caret {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
}
.nav__item:hover .nav__caret { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: #fff;
  border: 1.5px solid #d4edba;
  border-radius: 14px;
  box-shadow: 0 18px 40px -12px rgba(27, 94, 32, 0.18), 0 4px 12px rgba(27, 94, 32, 0.06);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.22,1,0.36,1), visibility 0.2s;
  z-index: 110;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1A2B0E;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav__dropdown a:hover {
  background: #f0fbe4;
  color: #3d7a0a;
}
.nav__dropdown a strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1px;
}
.nav__dropdown a span {
  display: block;
  font-size: 0.75rem;
  color: #4B5B38;
  font-weight: 400;
}

/* Mobile hamburger */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #f0fbe4;
  border: 1.5px solid #d4edba;
  border-radius: 10px;
  cursor: pointer;
  margin-left: 0.4rem;
}
@media (min-width: 980px) {
  .nav-toggle { display: none; }
}
.nav-toggle svg { width: 22px; height: 22px; stroke: #1A2B0E; }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(26, 43, 14, 0.55);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 88vw);
  background: #fff;
  padding: 1.25rem 1.25rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  box-shadow: -20px 0 60px -20px rgba(0,0,0,0.25);
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-left: auto;
  margin-bottom: 1rem;
  background: #f0fbe4;
  border: 1.5px solid #d4edba;
  border-radius: 50%;
  cursor: pointer;
}
.mobile-nav__group {
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #f0f5e7;
  padding-bottom: 0.75rem;
}
.mobile-nav__group:last-child { border-bottom: none; }
.mobile-nav__heading {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a8a0e;
  margin-bottom: 0.4rem;
  padding: 0 0.5rem;
}
.mobile-nav__panel a {
  display: block;
  padding: 0.7rem 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A2B0E;
  text-decoration: none;
  border-radius: 8px;
}
.mobile-nav__panel a:hover { background: #f0fbe4; color: #3d7a0a; }

/* Footer site nav additions */
.footer__sitemap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1rem;
}
@media (min-width: 640px) {
  .footer__sitemap { grid-template-columns: repeat(3, 1fr); }
}
.footer__sitemap a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}
.footer__sitemap a:hover { color: #b5e07a; }
