/* ═══════════════════════════════════════════════════════
   GREEN HILL LAWN CARE — Styles
   Palette: Bright green #2E7D32, Gold #D4A84B, Charcoal #2C2C2C, White
   Typography: DM Serif Display (headings) + Inter (body)
   ═══════════════════════════════════════════════════════ */

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

:root {
  --green: #2E7D32;
  --green-light: #43A047;
  --green-dark: #1B5E20;
  --gold: #D4A84B;
  --gold-light: #E8C676;
  --charcoal: #2C2C2C;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-600: #6C757D;
  --white: #FFFFFF;
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-green { color: var(--green); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  cursor: pointer; transition: all var(--transition); border: 2px solid transparent;
  text-decoration: none;
}
.btn--primary {
  background: var(--green); color: var(--white); border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-dark); border-color: var(--green-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent; color: var(--green); border-color: var(--green);
}
.btn--outline:hover {
  background: var(--green); color: var(--white);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn--full { width: 100%; }
.btn__spinner {
  width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.3);
  border-top-color: var(--white); border-radius: 50%;
  animation: spin 0.6s linear infinite; margin-left: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Section Headers ─── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-title {
  font-family: var(--font-heading); font-size: 2.5rem;
  color: var(--charcoal); margin-bottom: 16px; line-height: 1.2;
}
.section-title--left { text-align: left; }
.section-subtitle { color: var(--gray-600); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════
   SEASONAL BANNER
   ═══════════════════════════════════════════════════════ */
.seasonal-banner {
  background: var(--green); color: var(--white);
  padding: 10px 24px; text-align: center;
  position: relative; z-index: 1001;
  font-size: 0.9rem; font-weight: 500;
}
.seasonal-banner__content { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.seasonal-banner__cta {
  background: var(--gold); color: var(--charcoal); padding: 4px 16px;
  border-radius: 20px; font-weight: 700; font-size: 0.85rem;
  transition: all var(--transition);
}
.seasonal-banner__cta:hover { background: var(--gold-light); color: var(--charcoal); }
.seasonal-banner__close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--white); font-size: 1.3rem;
  cursor: pointer; opacity: 0.8; padding: 4px;
}
.seasonal-banner__close:hover { opacity: 1; }
.seasonal-banner.hidden { display: none; }

/* ═══════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 8px; padding-bottom: 8px;
}
.header__logo img {
  height: 120px; width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
  margin: -20px 0;
}
.header__nav { display: flex; align-items: center; gap: 32px; }
.header__link {
  color: var(--charcoal); font-weight: 500; font-size: 0.95rem;
  position: relative; transition: color var(--transition);
}
.header__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--green); transition: width var(--transition);
}
.header__link:hover { color: var(--green); }
.header__link:hover::after { width: 100%; }
.header__link--cta {
  background: var(--green); color: var(--white) !important;
  padding: 8px 20px; border-radius: var(--radius-sm);
}
.header__link--cta::after { display: none; }
.header__link--cta:hover { background: var(--green-dark); }

.header__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.header__hamburger span {
  width: 24px; height: 2px; background: var(--charcoal);
  transition: all var(--transition);
}
.header__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════════════
   HERO — SPLIT LAYOUT
   ═══════════════════════════════════════════════════════ */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero__title {
  font-family: var(--font-heading); font-size: 3.2rem;
  line-height: 1.15; color: var(--charcoal); margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 1.15rem; color: var(--gray-600);
  margin-bottom: 32px; line-height: 1.7;
}
.hero__ctas { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.hero__trust-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 0.85rem; font-weight: 600; color: var(--gray-600);
  padding-top: 24px; border-top: 1px solid var(--gray-200);
}
.trust-divider { color: var(--gold); }
.hero__image {
  position: relative;
}
.hero__image img {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: 100%; height: 500px; object-fit: cover;
}
.hero__image::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 100%; height: 100%; border: 3px solid var(--gold);
  border-radius: var(--radius); z-index: -1;
}

/* ═══════════════════════════════════════════════════════
   SERVICES — ALTERNATING ROWS
   ═══════════════════════════════════════════════════════ */
.services { padding: 100px 0; background: var(--white); }

.service-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 80px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.service-row.visible { opacity: 1; transform: translateY(0); }
.service-row:last-child { margin-bottom: 0; }

.service-row--reversed .service-row__image { order: 2; }
.service-row--reversed .service-row__content { order: 1; }

.service-row__image img {
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  width: 100%; height: 350px; object-fit: cover;
}
.service-row__tag {
  display: inline-block; background: rgba(46,125,50,0.1);
  color: var(--green); padding: 4px 14px; border-radius: 20px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 12px;
}
.service-row__content h3 {
  font-family: var(--font-heading); font-size: 1.8rem;
  margin-bottom: 16px; color: var(--charcoal);
}
.service-row__content p { color: var(--gray-600); margin-bottom: 16px; }
.service-row__list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.service-row__list li {
  padding-left: 24px; position: relative; color: var(--charcoal); font-weight: 500;
}
.service-row__list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--green); font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   GALLERY — MASONRY
   ═══════════════════════════════════════════════════════ */
.gallery { padding: 100px 0; background: var(--gray-100); }

.gallery__filter {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.gallery__filter-btn {
  background: var(--white); border: 2px solid var(--gray-200);
  padding: 8px 20px; border-radius: 24px; cursor: pointer;
  font-family: var(--font-body); font-weight: 500; font-size: 0.9rem;
  transition: all var(--transition); color: var(--gray-600);
}
.gallery__filter-btn:hover,
.gallery__filter-btn.active {
  background: var(--green); color: var(--white); border-color: var(--green);
}

.gallery__masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery__item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  aspect-ratio: 4 / 3;
  opacity: 0; transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.gallery__item.visible { opacity: 1; transform: scale(1); }
.gallery__item.hidden { display: none; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white); padding: 40px 16px 16px;
  opacity: 0; transition: opacity var(--transition);
  font-weight: 600; font-size: 0.95rem;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }

/* ─── Lightbox ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92); display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox__img {
  max-width: 90%; max-height: 85vh;
  border-radius: var(--radius-sm); object-fit: contain;
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; background: none; border: none;
  color: var(--white); font-size: 2.5rem; cursor: pointer;
  opacity: 0.7; transition: opacity var(--transition); padding: 8px;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { opacity: 1; }
.lightbox__close { top: 20px; right: 24px; font-size: 3rem; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__caption {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); color: var(--white);
  font-size: 1rem; font-weight: 500; text-align: center;
}

/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */
.about { padding: 100px 0; background: var(--white); }
.about__inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.about__image { position: relative; }
.about__image img {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: 100%; height: 500px; object-fit: cover;
}
.about__experience-badge {
  position: absolute; bottom: -30px; right: -20px;
  background: var(--gold); color: var(--charcoal);
  padding: 24px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-md);
}
.about__years {
  display: block; font-family: var(--font-heading);
  font-size: 3rem; line-height: 1;
}
.about__years-label { font-size: 0.85rem; font-weight: 600; line-height: 1.3; }

.about__lead {
  font-size: 1.15rem; color: var(--charcoal);
  font-weight: 500; margin-bottom: 16px;
}
.about__content p { color: var(--gray-600); margin-bottom: 16px; }

.about__features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 32px;
}
.about__feature {
  display: flex; align-items: flex-start; gap: 12px;
}
.about__feature-icon {
  width: 28px; height: 28px; min-width: 28px;
  background: rgba(46,125,50,0.1); color: var(--green);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 0.85rem;
  margin-top: 2px;
}
.about__feature strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.about__feature p { font-size: 0.85rem; color: var(--gray-600); margin: 0; }

/* ═══════════════════════════════════════════════════════
   REVIEWS — CAROUSEL
   ═══════════════════════════════════════════════════════ */
.reviews { padding: 100px 0; background: var(--gray-100); }

.reviews__google-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); padding: 8px 20px; border-radius: 24px;
  box-shadow: var(--shadow-sm); margin-top: 16px;
}
.reviews__rating-text { font-weight: 600; font-size: 0.95rem; color: var(--charcoal); }

.reviews__carousel {
  position: relative; overflow: hidden;
  margin: 0 -12px; padding: 0 12px;
}
.reviews__track {
  display: flex; gap: 24px; transition: transform 0.5s ease;
  padding: 20px 0;
}
.review-card {
  min-width: 350px; max-width: 350px;
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
  flex-shrink: 0; transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card__stars { color: var(--gold); font-size: 1.3rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-card__text {
  font-size: 0.95rem; line-height: 1.7; color: var(--gray-600);
  margin-bottom: 20px; font-style: italic;
}
.review-card__author {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--charcoal);
}
.review-card__nextdoor-badge {
  background: var(--green); color: var(--white);
  padding: 2px 10px; border-radius: 12px; font-size: 0.75rem;
}

.reviews__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gray-200);
  font-size: 1.5rem; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}
.reviews__arrow:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.reviews__arrow--left { left: 0; }
.reviews__arrow--right { right: 0; }
.reviews__cta { text-align: center; margin-top: 40px; }

/* ═══════════════════════════════════════════════════════
   SERVICE AREA
   ═══════════════════════════════════════════════════════ */
.service-area { padding: 100px 0; background: var(--white); }
.service-area__inner {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 60px; align-items: center;
}
.service-area__list {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 24px; margin: 24px 0 32px;
}
.service-area__list li {
  padding-left: 20px; position: relative; font-size: 1.05rem;
}
.service-area__list li::before {
  content: '→'; position: absolute; left: 0; color: var(--green);
}

/* ═══════════════════════════════════════════════════════
   CONTACT / FORM
   ═══════════════════════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gray-100) 0%, #f0f4f0 100%);
}
.contact__inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: start;
}
.contact__details { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.contact__detail { display: flex; align-items: flex-start; gap: 16px; }
.contact__detail-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(46,125,50,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact__detail a {
  display: block; color: var(--charcoal); font-weight: 500;
}
.contact__detail a:hover { color: var(--green); }

/* Form */
.estimate-form {
  background: var(--white); padding: 40px; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block; font-weight: 600; font-size: 0.9rem;
  margin-bottom: 6px; color: var(--charcoal);
}
.required { color: #E53935; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: 1rem; transition: border-color var(--transition);
  background: var(--white); color: var(--charcoal);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green);
}
.form-group input.error, .form-group select.error, .form-group textarea.error {
  border-color: #E53935;
}
.form-error {
  display: none; color: #E53935; font-size: 0.8rem;
  margin-top: 4px; font-weight: 500;
}
.form-group input.error ~ .form-error,
.form-group select.error ~ .form-error {
  display: block;
}

.radio-group { display: flex; gap: 20px; flex-wrap: wrap; padding-top: 6px; align-items: center; }
.radio-label {
  display: flex; align-items: center; gap: 6px; cursor: pointer;
  font-weight: 500; font-size: 0.95rem;
}
.radio-label input[type="radio"] { accent-color: var(--green); }

.checkbox-label {
  display: inline-flex !important; align-items: center; gap: 8px;
  cursor: pointer; font-weight: 400 !important; font-size: 0.9rem !important;
  color: var(--gray-600) !important; line-height: 1.4;
}
.checkbox-label input[type="checkbox"] { accent-color: var(--green); width: 18px; height: 18px; flex-shrink: 0; }

.form-success {
  text-align: center; padding: 48px 32px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  animation: fadeIn 0.5s ease;
}
.form-success__icon {
  width: 60px; height: 60px; background: var(--green);
  color: var(--white); border-radius: 50%; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 8px; }
.form-success p { color: var(--gray-600); }

.form-error-msg {
  background: #FFF3F3; border: 1px solid #E53935; color: #C62828;
  padding: 12px 20px; border-radius: var(--radius-sm);
  margin-top: 16px; font-size: 0.9rem; text-align: center;
}
.form-error-msg a { color: #C62828; font-weight: 700; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
}
.footer__brand img {
  margin-bottom: 16px; height: 60px; width: auto;
  background: rgba(255,255,255,0.95); border-radius: var(--radius-sm);
  padding: 6px 14px;
}
.footer__brand p { font-size: 0.9rem; line-height: 1.6; }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social-link {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8);
  padding: 10px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; transition: all var(--transition);
  width: 40px; height: 40px;
}
.footer__social-link:hover { background: var(--green); color: var(--white); }
.footer__social-link--yelp {
  border-radius: var(--radius-sm); width: auto; padding: 8px 14px;
  font-size: 0.8rem; font-weight: 700;
}

.footer h4 {
  color: var(--white); font-family: var(--font-heading);
  font-size: 1.1rem; margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer__links a:hover { color: var(--green-light); }
.footer__contact a, .footer__contact p { color: rgba(255,255,255,0.7); font-size: 0.9rem; display: block; margin-bottom: 8px; }
.footer__contact a:hover { color: var(--green-light); }
.footer__hours p { font-size: 0.9rem; margin-bottom: 8px; }
.footer__badges {
  font-size: 0.8rem; font-weight: 600; color: var(--gold);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem;
}
.footer__credit a { color: var(--gold); }
.footer__credit a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════
   MOBILE ESTIMATE CTA POPUP
   ═══════════════════════════════════════════════════════ */
.estimate-popup {
  display: none; position: fixed; bottom: 24px; left: 16px; right: 16px;
  z-index: 997; background: var(--green);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 16px 20px; align-items: center; justify-content: center;
  gap: 12px; animation: slideUp 0.5s ease;
}
.estimate-popup__btn {
  color: var(--white); font-weight: 700; font-size: 1rem;
  text-decoration: none; flex: 1; text-align: center;
}
.estimate-popup__btn:hover { color: var(--gold-light); }
.estimate-popup__close {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 1.5rem; cursor: pointer; padding: 0 4px; line-height: 1;
}
.estimate-popup__close:hover { color: var(--white); }
.estimate-popup.dismissed { display: none !important; }
@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__image::before { display: none; }
  .hero__image img { height: 350px; }
  .hero__title { font-size: 2.5rem; }

  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__image img { height: 350px; }

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

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

@media (max-width: 768px) {
  .header__inner { padding-top: 8px; padding-bottom: 8px; position: relative; justify-content: center; }
  .header__logo img { height: 100px; margin: -10px 0; }
  .header__hamburger { position: absolute; right: 24px; }
  .header__nav {
    position: fixed; top: 0; right: -100%; width: 280px;
    height: 100vh; background: var(--white); flex-direction: column;
    padding: 80px 32px 32px; gap: 24px;
    box-shadow: var(--shadow-lg); transition: right var(--transition);
    z-index: 999;
  }
  .header__nav.active { right: 0; }
  .header__hamburger { display: flex; z-index: 1000; }

  /* Reduce section padding on mobile */
  .services, .gallery, .about, .reviews, .service-area, .contact {
    padding: 50px 0;
  }
  .section-header { margin-bottom: 28px; }
  .section-title { font-size: 1.6rem; text-align: center; }
  .section-title--left { text-align: center; }
  .section-subtitle { font-size: 0.9rem; padding: 0 8px; }

  /* Hero */
  .hero { padding: 24px 0; }
  .hero__title { font-size: 1.7rem; text-align: center; }
  .hero__subtitle { font-size: 0.95rem; margin-bottom: 20px; }
  .hero__ctas { flex-direction: column; margin-bottom: 20px; }
  .hero__ctas .btn { width: 100%; text-align: center; }
  .hero__trust-bar { font-size: 0.78rem; gap: 6px; padding-top: 14px; justify-content: center; }
  .hero__image img { height: 260px; }

  /* Services — center text on mobile */
  .service-row { grid-template-columns: 1fr; gap: 16px; margin-bottom: 44px; }
  .service-row--reversed .service-row__image { order: 0; }
  .service-row--reversed .service-row__content { order: 0; }
  .service-row__image img { height: 220px; }
  .service-row__content { text-align: left; }
  .service-row__content h3 { font-size: 1.3rem; }
  .service-row__tag { margin-bottom: 8px; }

  /* Gallery */
  .gallery__masonry { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery__filter { gap: 8px; }
  .gallery__filter-btn { padding: 6px 14px; font-size: 0.8rem; }

  /* About — center on mobile */
  .about__inner { gap: 32px; }
  .about__image img { height: 260px; }
  .about__content { text-align: left; }
  .about__features { grid-template-columns: 1fr; }
  .about__feature { text-align: left; }
  .about__lead { font-size: 1rem; }

  /* Reviews */
  .reviews__google-badge { margin-top: 12px; }
  .review-card { min-width: 270px; max-width: 270px; padding: 20px; }
  .review-card__text { font-size: 0.9rem; }

  /* Service Area */
  .service-area__info { text-align: left; }
  .service-area__info .btn { width: 100%; }

  /* Contact */
  .contact__inner { gap: 36px; }
  .contact__details { gap: 16px; }
  .contact__detail { align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .estimate-form { padding: 20px; }

  .footer { padding: 32px 0 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .footer__brand { grid-column: 1 / -1; text-align: center; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer__brand img { margin: 0 auto 8px; height: 50px; }
  .footer__brand p { font-size: 0.82rem; }
  .footer__social { justify-content: center; margin-top: 10px; }
  .footer h4 { font-size: 0.95rem; margin-bottom: 8px; }
  .footer__links a { font-size: 0.82rem; }
  .footer__contact a, .footer__contact p { font-size: 0.82rem; }
  .footer__hours { grid-column: 1 / -1; text-align: center; padding-top: 4px; border-top: 1px solid rgba(255,255,255,0.1); }
  .footer__hours p { font-size: 0.82rem; }
  .footer__bottom-inner { flex-direction: column; gap: 4px; text-align: center; font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 1.5rem; }
  .hero__image img { height: 220px; }
  .section-title { font-size: 1.4rem; }
  .service-row__content h3 { font-size: 1.2rem; }
  .service-row__image img { height: 180px; }
  .gallery__masonry { grid-template-columns: 1fr; }
  .review-card { min-width: 250px; max-width: 250px; }
  .about__experience-badge { bottom: -16px; right: 0; padding: 14px; }
  .about__years { font-size: 2rem; }
  .about__image img { height: 220px; }
}
