/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #000000;
  --primary-dark: #000000;
  --accent: #CCCCCC;
  --accent-dark: #999999;
  --text: #000000;
  --text-light: #666666;
  --bg: #FFFFFF;
  --bg-alt: #F8F8F8;
  --bg-dark: #000000;
  --border: #E8E8E8;
  --success: #000000;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
  --max-w: 1200px;
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.3; font-weight: 600; font-family: 'Playfair Display', Georgia, serif; letter-spacing: -0.3px; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin-bottom: 1.2rem; color: var(--text-light); line-height: 1.8; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; overflow: hidden; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #fff; }
.section--dark p { color: #CCCCCC; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 40px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid #000;
  white-space: normal;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}
.btn--primary {
  background: #000;
  color: #fff;
  border-color: #000;
}
.btn--primary:hover { background: #333; border-color: #333; box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--lg { padding: 16px 48px; font-size: 1rem; border-radius: var(--radius); }
.btn--phone { background: #000; border-color: #000; color: #fff; }
.btn--phone:hover { background: #333; border-color: #333; box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ===== PHONE LINK ===== */
.phone-link {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
}
.phone-link:hover { color: var(--accent-dark); }

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  background: transparent;
  color: #666;
  border: 1px solid #D0D0D0;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section--dark .badge { background: transparent; color: #999; border-color: #555; }

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 72px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { font-size: 1.05rem; max-width: 680px; color: #555; }
.section-header.text-center p { margin: 0 auto; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--bg-dark);
  color: #A0A0A0;
  padding: 9px 0;
  font-size: 0.82rem;
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.top-bar-items { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 14px; height: 14px; opacity: 0.8; flex-shrink: 0; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid #F0F0F0;
  box-shadow: none;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo__brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.3px;
}
.logo__sub {
  font-size: 0.65rem;
  color: #888;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header__phone-label {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}
.header__phone-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.header__phone-number:hover { color: var(--primary-dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.85) 65%, rgba(0,0,0,0.90) 100%), url('images/hero-kitchen.jpg') center/cover no-repeat;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,169,97,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; max-width: 720px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  letter-spacing: -0.5px;
}
.hero h1 span { color: #fff; font-weight: 700; }
.hero__sub {
  color: #D0D0D0;
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #C0C0C0;
  font-size: 0.9rem;
  font-weight: 500;
}
.hero__trust-item svg { color: var(--accent); flex-shrink: 0; }
.hero__phone-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.hero__phone-cta-label {
  color: #C0C0C0;
  font-size: 0.88rem;
}
.hero__phone-cta-number {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.hero__phone-cta-number:hover { color: var(--accent); }
.hero__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: #000;
  padding: 60px 0;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: #999;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SERVICE CARD ===== */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: none;
  transition: var(--transition);
  border: 1px solid #F0F0F0;
}
.service-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.service-card__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.service-card__img-placeholder {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.service-card__body { padding: 32px; }
.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(26,26,26,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}
.service-card h3 { margin-bottom: 12px; color: var(--text); }
.service-card p { margin-bottom: 20px; }
.service-card ul { margin-bottom: 24px; }
.service-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: var(--text-light);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}
.service-card ul li:last-child { border-bottom: none; }
.service-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== FEATURED SERVICE ===== */
.featured-service { padding: 80px 0; }
.featured-service__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.featured-service__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.featured-service__img-placeholder {
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border-radius: var(--radius-lg);
}
.feature-list { margin: 24px 0 32px; }
.feature-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.feature-item:last-child { border-bottom: none; }
.feature-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(26,26,26,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.feature-item__text h4 { font-size: 1rem; margin-bottom: 3px; color: var(--text); }
.feature-item__text p { font-size: 0.88rem; margin: 0; }

/* ===== TRUST SIGNALS ===== */
.trust-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: none;
  border: 1px solid #F0F0F0;
  transition: var(--transition);
}
.trust-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.trust-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(26,26,26,0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--primary);
}
.trust-card h3 { font-size: 1.1rem; margin-bottom: 10px; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: none;
  border: 1px solid #F0F0F0;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -4px;
  left: 32px;
  font-size: 4rem;
  color: #000;
  opacity: 0.08;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: #f5b800; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card__text {
  font-size: 0.97rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.testimonial-card__location { font-size: 0.82rem; color: var(--text-light); }

/* ===== PROCESS STEPS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--primary), var(--border));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 18px;
  border: 4px solid var(--bg-alt);
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; }

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question.active { color: var(--primary); }
.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--primary);
  font-weight: 700;
  transition: var(--transition);
}
.faq-question.active .faq-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer__inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: #000;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 20px; }
.cta-banner p { color: #BBB; font-size: 1.05rem; margin-bottom: 40px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-phone-display {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin: 20px auto;
  letter-spacing: -0.5px;
}
.cta-phone-display:hover { color: #fff; }

/* ===== FOOTER ===== */
.footer {
  background: #F8F8F8;
  color: #666;
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid #E8E8E8;
}
.footer__brand { margin-bottom: 20px; }
.footer__brand .logo__brand { color: #000; font-size: 1.3rem; }
.footer__brand .logo__sub { color: #888; }
.footer p { font-size: 0.9rem; line-height: 1.7; color: #555; }
.footer h4 { color: #000; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; font-weight: 700; }
.footer__links li { margin-bottom: 12px; }
.footer__links a { color: #666; font-size: 0.9rem; transition: var(--transition); }
.footer__links a:hover { color: #000; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; font-size: 0.9rem; color: #555; }
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; color: #000; }
.footer__disclaimer {
  padding: 32px 0;
  border-top: 1px solid #E8E8E8;
  margin-top: 32px;
  font-size: 0.75rem;
  color: #777;
  line-height: 1.8;
}
.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #777;
}
.footer__phone-link { color: #000; font-weight: 700; font-size: 1.1rem; }
.footer__phone-link:hover { color: #333; }

/* ===== STICKY MOBILE BAR ===== */
.mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #000;
  border-top: 1px solid #333;
  padding: 12px 16px;
  gap: 10px;
  align-items: center;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}
.mobile-cta-bar__text { flex: 1; }
.mobile-cta-bar__label { color: #888; font-size: 0.7rem; display: block; }
.mobile-cta-bar__number { color: #fff; font-size: 1rem; font-weight: 700; }
.mobile-cta-bar .btn { padding: 12px 20px; font-size: 0.92rem; flex-shrink: 0; }

/* ===== EXIT INTENT POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(4px);
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.popup-overlay.active .popup { transform: translateY(0) scale(1); }
.popup__header {
  background: #000;
  padding: 40px 40px 32px;
  text-align: center;
}
.popup__header .popup__icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}
.popup__header h2 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; font-weight: 700; }
.popup__header p { color: #BBB; font-size: 0.95rem; margin: 0; }
.popup__body {
  padding: 36px 40px 40px;
  text-align: center;
}
.popup__phone {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  display: block;
  margin: 20px 0 12px;
  letter-spacing: -0.3px;
}
.popup__phone:hover { color: #333; }
.popup__or {
  color: var(--text-light);
  font-size: 0.88rem;
  margin: 16px 0;
  position: relative;
}
.popup__or::before, .popup__or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border);
}
.popup__or::before { left: 0; }
.popup__or::after { right: 0; }
.popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.popup__close:hover { background: rgba(255,255,255,0.3); }
.popup__trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.popup__trust-item { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--text-light); font-weight: 600; }
.popup__trust-item svg { color: var(--success); }

/* ===== URGENCY STRIP ===== */
.urgency-strip {
  background: var(--accent);
  padding: 11px 0;
  text-align: center;
  overflow: hidden;
}
.urgency-strip p {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0;
}
.urgency-strip a { color: #fff; text-decoration: underline; }

/* ===== AREA COVERAGE ===== */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.area-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
}
.area-item:hover { border-color: var(--primary); color: var(--primary); background: rgba(26,79,160,0.04); }
.area-item svg { color: var(--accent); flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px 20px; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none !important; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1) !important; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 60px 0 48px; min-height: auto; }
  .hero__phone-cta { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hero__divider { display: none; }
  .header__phone { display: none; }
  /* Navigation */
  .hamburger { display: flex; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: #fff; border-bottom: 1px solid var(--border); gap: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .nav.active { max-height: 500px; }
  .nav a { padding: 14px 16px; border-bottom: 1px solid var(--border); }
  .header__inner { flex-direction: column; align-items: stretch; }
  .header { position: relative; }
  /* Buttons — full width, sensible padding on mobile */
  .btn { width: 100%; padding: 15px 20px; font-size: 1rem; }
  .btn--lg { padding: 16px 20px; font-size: 1.05rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { width: 100%; justify-content: center; }
  /* Header button stays compact */
  .header__cta .btn { width: auto; padding: 12px 18px; font-size: 0.9rem; }
  /* Mobile bar button stays compact */
  .mobile-cta-bar .btn { width: auto; padding: 12px 16px; font-size: 0.88rem; }
  .top-bar .container { justify-content: center; }
  .top-bar-items { gap: 12px; justify-content: center; }
  body { padding-bottom: 78px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__disclaimer { padding: 24px 0; margin-top: 24px; font-size: 0.7rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section-header.text-center p { font-size: 1rem; }
  .cta-phone-display { font-size: 1.8rem; }
  .popup__header { padding: 28px 24px 20px; }
  .popup__body { padding: 24px 24px 28px; }
  .popup__phone { font-size: 1.6rem; }
  .featured-service__img-placeholder { height: 280px; font-size: 4rem; }
  .featured-service__img { height: 280px; }
  .scroll-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 1rem; }
}

@media (min-width: 769px) {
  .mobile-cta-bar { display: none !important; }
  body { padding-bottom: 0; }
}

/* ===== HEADER NAV ===== */
.nav { display: flex; gap: 32px; align-items: center; }
.nav a { color: var(--text); font-weight: 500; font-size: 0.95rem; transition: var(--transition); }
.nav a:hover { color: var(--primary); }
.hamburger { display: none; width: 28px; height: 28px; background: none; border: none; cursor: pointer; position: relative; flex-direction: column; justify-content: space-around; }
.hamburger span { width: 100%; height: 2px; background: var(--text); border-radius: 1px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(10px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-10px); }

/* ===== SCROLL-TO-TOP BUTTON ===== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 8000;
}
.scroll-to-top:hover { background: var(--primary-dark); transform: translateY(-4px); }
.scroll-to-top.show { opacity: 1; visibility: visible; }

/* ===== UTILITIES ===== */
.d-block { display: block; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.bg-gradient-kitchen { background: linear-gradient(135deg, #f5f0e8 0%, #ffe9c8 100%); }
.bg-gradient-bath { background: linear-gradient(135deg, #e8f0f5 0%, #c8e0ff 100%); }
