/* ============================================================
   Tree Removal Pros — Main Stylesheet
   ============================================================ */

:root {
  --green-900: #0f3320;
  --green-800: #1a4a2e;
  --green-700: #1e5c38;
  --green-600: #236b41;
  --green-500: #2d8a52;
  --green-400: #3dab68;
  --green-300: #5ec97f;
  --green-100: #d4f5e0;
  --green-50:  #f0faf4;

  --amber-500: #f59e0b;
  --amber-400: #fbbf24;

  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;

  --white: #ffffff;

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.18);

  --transition: 0.25s ease;
  --max-width: 1160px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

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

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--green-500);
  color: var(--white);
  border-color: var(--green-500);
}
.btn-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,138,82,.35);
}

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

.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }
.btn-full { width: 100%; }

/* ============================================================
   TOP BAR
   ============================================================ */

.topbar {
  background: var(--green-900);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-phone {
  color: var(--green-300);
  font-weight: 700;
  transition: color var(--transition);
}
.topbar-phone:hover { color: var(--white); }

/* ============================================================
   HEADER / NAV
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon { font-size: 28px; line-height: 1; }

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.2;
}

.logo-text strong {
  color: var(--green-600);
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
}

.nav a:hover {
  background: var(--green-50);
  color: var(--green-700);
}

.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}

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

.hero {
  position: relative;
  background-color: var(--green-900);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,30,18,.88) 0%,
    rgba(15,51,32,.78) 50%,
    rgba(10,30,18,.70) 100%);
}

.hero::after {
  content: '🌲🌳🌲🌿🌲🌳🌲';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 80px;
  letter-spacing: -8px;
  opacity: 0.08;
  pointer-events: none;
  filter: grayscale(1);
}

.hero-overlay { position: absolute; inset: 0; pointer-events: none; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--green-300);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  letter-spacing: .5px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: var(--font-sans);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
}

.trust-icon { font-size: 16px; }

/* ============================================================
   STATS BAND
   ============================================================ */

.stats-band {
  background: var(--green-800);
  padding: 40px 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--green-300);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}

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

.section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.light h2,
.section-header.light .section-eyebrow { color: var(--white); }
.section-header.light .section-sub { color: rgba(255,255,255,.75); }

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services { background: var(--gray-50); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
}

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

.service-card.featured {
  border-color: var(--green-500);
  box-shadow: 0 0 0 2px var(--green-500), var(--shadow);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--green-500);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.service-icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-600);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link:hover { color: var(--green-800); }

/* Service card image */
.service-img {
  width: calc(100% + 56px);
  margin: -32px -28px 24px;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* Gallery */
.gallery { background: var(--gray-900); }
.gallery .section-header .section-eyebrow { color: var(--green-400); }
.gallery .section-header h2 { color: var(--white); }
.gallery .section-sub { color: rgba(255,255,255,.65); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(.92);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

/* ============================================================
   ABOUT
   ============================================================ */

.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-block { position: relative; }

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border: 2px solid var(--green-200, #a7f3c4);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 120px;
}

.about-badge-float strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--green-700);
}

.about-badge-float span {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.about-copy .section-eyebrow { text-align: left; display: block; }

.about-copy h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: left;
}

.about-copy p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-list {
  margin: 24px 0 32px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}

.about-list li:last-child { border: none; }
.about-list li span { color: var(--green-500); font-size: 16px; flex-shrink: 0; }

/* ============================================================
   WHY US
   ============================================================ */

.why-us {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials { background: var(--gray-50); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--green-300);
}

.review-card.featured {
  border-color: var(--green-500);
  box-shadow: 0 0 0 2px var(--green-500);
  grid-column: span 1;
}

.review-stars {
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 14px;
  color: var(--gray-900);
}

.reviewer span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ============================================================
   SERVICE AREA
   ============================================================ */

.service-area { background: var(--white); }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.area-chip {
  background: var(--green-50);
  border: 1px solid var(--green-100, #c6f0d5);
  color: var(--green-800);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all var(--transition);
}

.area-chip:hover {
  background: var(--green-100, #c6f0d5);
  border-color: var(--green-400);
}

.area-note {
  text-align: center;
  font-size: 15px;
  color: var(--gray-600);
}

.area-note a {
  color: var(--green-600);
  font-weight: 700;
}

.area-note a:hover { color: var(--green-800); }

/* ============================================================
   FAQ
   ============================================================ */

.faq { background: var(--white); }

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--green-400); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  text-align: left;
  transition: background var(--transition), color var(--transition);
}

.faq-q:hover { background: var(--green-50); color: var(--green-800); }

.faq-item.open .faq-q {
  background: var(--green-50);
  color: var(--green-800);
}

.faq-arrow {
  font-size: 12px;
  color: var(--green-500);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 24px 20px;
  background: var(--green-50);
}

.faq-item.open .faq-a { display: block; }

.faq-a p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  margin: 0;
}

.faq-a a { color: var(--green-600); font-weight: 700; }
.faq-a a:hover { color: var(--green-800); }

/* ============================================================
   CONTACT
   ============================================================ */

.contact { background: var(--gray-50); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-eyebrow { display: block; text-align: left; }

.contact-info h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info > p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-details { margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}

.contact-item:last-child { border: none; }

.contact-icon { font-size: 22px; flex-shrink: 0; }

.contact-item strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray-500);
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: 16px;
  color: var(--gray-800);
  font-weight: 500;
}

.contact-item a { color: var(--green-600); font-weight: 700; }
.contact-item a:hover { color: var(--green-800); }

.contact-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ct-badge {
  background: var(--green-50);
  border: 1px solid var(--green-100, #c6f0d5);
  color: var(--green-800);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
}

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(45,138,82,.12);
}

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

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer { background: var(--green-900); color: rgba(255,255,255,.8); padding: 72px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .logo { margin-bottom: 16px; }

.logo-light .logo-text { color: var(--white); }
.logo-light .logo-text strong { color: var(--green-300); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-phone {
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  color: var(--green-300);
  transition: color var(--transition);
}

.footer-phone:hover { color: var(--white); }

.footer-links h4,
.footer-contact h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}

.footer-links ul li a:hover { color: var(--green-300); }

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.7);
}

.footer-contact a {
  color: var(--green-300);
  font-weight: 600;
}

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

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 4px;
}

/* ============================================================
   STICKY CTA (mobile)
   ============================================================ */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  z-index: 200;
}

.sticky-cta .btn { width: 100%; font-size: 16px; padding: 16px; }

/* ============================================================
   FORM SUCCESS STATE
   ============================================================ */

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon { font-size: 56px; margin-bottom: 16px; }

.form-success h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--green-700);
  margin-bottom: 10px;
}

.form-success p { font-size: 15px; color: var(--gray-600); }

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

@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.tall { grid-row: span 1; height: 220px; }
}

@media (max-width: 640px) {
  .topbar-inner span { display: none; }
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 16px 24px; border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 60px 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-trust { gap: 14px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 0; }

  .sticky-cta { display: block; }
  body { padding-bottom: 70px; }
}
