/* ============================================================
   RS Appliance Repair — Styles
   Brand: black/charcoal + red accent (#e21f26)
   ============================================================ */

:root {
  --red: #e21f26;
  --red-dark: #c01a20;
  --black: #0d0d0d;
  --charcoal: #1a1a1a;
  --gray-900: #222;
  --gray-700: #4a4a4a;
  --gray-500: #7a7a7a;
  --gray-300: #d4d4d4;
  --gray-100: #f3f3f3;
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
  --radius: 10px;
  --radius-lg: 14px;
  --container: 1200px;
}

/* ----------- Reset ----------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--gray-900);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: 'Oswald', 'Inter', sans-serif; letter-spacing: 0.5px; }

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

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--black);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #1f1f1f;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.brand-logo {
  height: 68px;
  width: 68px;
  border-radius: 50%;
  object-fit: cover;
}
.primary-nav { flex: 1; }
.nav-list {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-link {
  color: #fff;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.nav-link:hover { color: var(--red); }
.nav-link.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 32px;
  padding: 6px 4px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
}
.phone-icon svg { width: 18px; height: 18px; color: #fff; }
.phone-text { display: flex; flex-direction: column; line-height: 1.1; }
.phone-text strong { font-size: 15px; font-weight: 700; }
.phone-text small { font-size: 10px; color: var(--gray-300); letter-spacing: 1px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background-color: #000;
  color: #fff;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
/* Appliance image — constrained to 1200px (nav width), centred,
   aspect ratio preserved. Sits at z-index 1. */
.hero::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 1200px);
  background-image: url('images/hero-appliances.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}
/* Gradient overlay — sits above the image (z-index 2) so text
   area stays dark regardless of viewport width. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #000                    0%,
    rgba(0,0,0,0.97)       18%,
    rgba(0,0,0,0.85)       32%,
    rgba(0,0,0,0.55)       48%,
    rgba(0,0,0,0.15)       62%,
    transparent            75%
  );
  pointer-events: none;
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 440px;
}
.hero-title {
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-title .line-white { color: #fff; display: block; }
.hero-title .line-red { color: var(--red); display: block; }
.hero-title .line-red::before {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--red);
  margin: 14px 0 12px;
}
.hero-sub {
  max-width: 480px;
  color: #d6d6d6;
  font-size: 16px;
  margin: 0 0 30px;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 26px;
  margin: 0 0 30px;
}
.hero-features li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
}
.feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: grid;
  place-items: center;
  color: var(--red);
}
.feat-icon svg { width: 20px; height: 20px; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Image is now a CSS background on .hero — the HTML column is hidden. */
.hero-visual { display: none; }

/* Text stays on the left, width capped so appliances show through on the right.
   z-index: 1 lifts it above the ::before gradient overlay. */
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 54%;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-ghost:hover { background: #fff; color: var(--black); }
.btn-sm { padding: 11px 20px; font-size: 12px; }
.btn-block { width: 100%; }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.eyebrow {
  text-align: center;
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2.5px;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.eyebrow-red { color: var(--red); text-align: left; }
.section-title {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin: 0 auto 40px;
  max-width: 880px;
  line-height: 1.15;
}
.section-lead {
  text-align: center;
  max-width: 720px;
  margin: -20px auto 40px;
  color: var(--gray-700);
}

/* ============================================================
   SERVICES
   ============================================================ */
/* Both Services and About Us share the same fixed background image.
   background-attachment: fixed locks the texture to the viewport so
   it never moves — content scrolls over a perfectly stable canvas.
   Using the same image + position on both sections makes them read
   as one continuous surface as you scroll between them. */
.services {
  background-color: var(--black);
  background-image: url('images/Scratches background no logo.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 80px 0;
}
/* Section header — white text on dark bg, accent word in red */
.services .eyebrow { color: var(--red); }
.services .section-title { color: #fff; }
.title-accent { color: var(--red); }

/* 5-column grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Card shell */
.service-card {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
}

/* Image area — fixed height, image fills it */
.service-card-img {
  width: 100%;
  height: 190px;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Text area — extra bottom padding reserves room for the pinned accent line */
.service-card-body {
  padding: 20px 20px 44px;
  flex: 1;
  position: relative;
}
.service-card-body h3 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin: 0 0 10px;
}
.service-card-body p {
  color: #aaaaaa;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* Red accent line — always pinned to bottom-left of the card body,
   independent of how much text is in the card */
.card-accent {
  display: block;
  position: absolute;
  bottom: 16px;
  left: 20px;
  width: 36px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

/* ============================================================
   ABOUT BAND
   ============================================================ */
.about-band {
  background-color: var(--black);
  background-image: url('images/Scratches background no logo.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
  padding: 70px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.about-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.about-text {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text h2 {
  font-size: 26px;
  margin: 4px 0 14px;
  letter-spacing: 1px;
}
.about-text p {
  color: #c9c9c9;
  font-size: 14.5px;
  margin: 0 0 22px;
}
.about-text .btn { align-self: flex-start; }

.why-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}
.why-card h3 {
  color: var(--red);
  font-size: 22px;
  letter-spacing: 1.5px;
  margin: 0 0 22px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #2a2a2a;
  font-size: 14.5px;
  color: #e8e8e8;
}
.why-list li:last-child { border-bottom: 0; }
.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(226, 31, 38, 0.15);
  color: var(--red);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

.same-day-card {
  background: #fff;
  color: var(--gray-900);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sd-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(226, 31, 38, 0.1);
  color: var(--red);
  display: grid;
  place-items: center;
}
.sd-icon svg { width: 44px; height: 44px; }
.same-day-card h3 {
  font-size: 22px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.same-day-card p {
  color: var(--gray-700);
  font-size: 14.5px;
  margin: 0 0 22px;
}

/* ============================================================
   PROMO BAND — Same Day Service
   The <img class="promo-bg-img"> drives the section height so the
   full photo (including the RS logo at the bottom) is always visible.
   Content and overlay are absolutely stacked on top.
   ============================================================ */
.promo-band {
  background: #000;      /* black shows on sides beyond 1200px */
  color: #fff;
}

/* Centred 1200px wrapper — image, overlay and content all live here */
.promo-band-inner {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

/* The image — full width of the inner wrapper, natural height, no cropping */
.promo-bg-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Diagonal fade: opaque black on the top-left (text area) →
   transparent towards the technician on the right */
.promo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,  rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.80) 28%, rgba(0,0,0,0.35) 52%, transparent 72%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 35%);
  pointer-events: none;
  z-index: 1;
}

/* Content layer — centred vertically over the image */
.promo-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

/* Copy block — constrained to left half */
.promo-copy {
  max-width: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Headline */
.promo-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 20px;
}
.promo-white {
  display: block;
  font-size: clamp(36px, 4.5vw, 62px);
  color: #fff;
  letter-spacing: 1px;
}
.promo-red {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(36px, 4.5vw, 62px);
  color: var(--red);
  letter-spacing: 1px;
}
.promo-red svg {
  width: clamp(28px, 3.5vw, 44px);
  height: clamp(28px, 3.5vw, 44px);
  flex-shrink: 0;
}

/* Sub-text */
.promo-sub {
  color: #d6d6d6;
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 28px;
}

/* CTA button */
.promo-btn { margin-bottom: 18px; }

/* Phone row */
.promo-phone-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.18s;
}
.promo-phone-row:hover { color: var(--red); }
.promo-phone-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.promo-phone-icon svg { width: 16px; height: 16px; color: #fff; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  padding: 80px 0;
  background-color: var(--black);
  background-image: url('images/Scratches background no logo.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
/* White text on dark background */
.service-areas .section-title,
.service-areas .section-lead { color: #fff; }
.service-areas .section-lead { color: #aaaaaa; }
.reviews .section-title { color: #fff; }
.reviews .reviews-cta { color: #777; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.area-col {
  background: #161616;
  border-radius: var(--radius);
  padding: 26px 24px;
  border-top: 4px solid var(--red);
}
.area-col h4 {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: #fff;
}
.area-col ul li {
  padding: 8px 0;
  border-bottom: 1px solid #2a2a2a;
  font-size: 14.5px;
  color: #aaaaaa;
}
.area-col ul li:last-child { border-bottom: 0; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: 80px 0;
  background-color: var(--black);
  background-image: url('images/Scratches background no logo.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 24px;
}
.review-card {
  background: #161616;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid #2a2a2a;
  border-left: 4px solid var(--red);
}
.stars {
  color: var(--red);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review-body {
  color: #cccccc;
  font-size: 15px;
  margin: 0 0 14px;
  font-style: italic;
  line-height: 1.6;
}
.review-author {
  color: #888888;
  font-size: 13.5px;
  font-weight: 600;
  margin: 0;
}
.reviews-cta {
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
  margin: 8px 0 0;
}

/* ============================================================
   CONTACT — same img-driven + 1200px wrapper as promo band
   ============================================================ */
.contact {
  background: #000;
  color: #fff;
}

/* 1200px centred wrapper — image drives the height */
.contact-inner {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

/* Full photo — natural aspect ratio, no cropping */
.contact-bg-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Top-left diagonal fade — dark over text, transparent on technician side */
.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,  rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.80) 28%, rgba(0,0,0,0.35) 52%, transparent 72%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 35%);
  pointer-events: none;
  z-index: 1;
}

/* Content layer centred vertically over the image */
.contact-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

/* Text block constrained to left portion */
.contact-copy {
  max-width: 50%;
}
.contact-copy .eyebrow { text-align: left; margin-bottom: 8px; color: var(--red); }
.contact-copy .section-title { text-align: left; margin-left: 0; color: #fff; }
.contact-copy .section-lead { text-align: left; margin-left: 0; color: #c9c9c9; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 8px 0 28px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(226, 31, 38, 0.15);
  color: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ci svg { width: 20px; height: 20px; }
.contact-list div { display: flex; flex-direction: column; line-height: 1.5; }
.contact-list strong {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-list a, .contact-list span { color: #d6d6d6; font-size: 15px; }
.contact-list a:hover { color: var(--red); }
.contact-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050505;
  color: #c9c9c9;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 14px; color: #a8a8a8; margin: 0; line-height: 1.6; }
.footer-col h5 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col ul li,
.footer-contact li {
  padding: 6px 0;
  font-size: 14px;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #707070;
}
.footer-bottom p { margin: 0; }

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

/* --- Tablet (≤1024px) ---
   Hero stays as a background image but text widens and gradient
   shifts right to keep everything readable. */
@media (max-width: 1024px) {
  /* Hero */
  .hero { padding: 50px 0 70px; }
  .hero-inner { min-height: 380px; }
  .hero-copy { max-width: 68%; }
  .hero::before {
    background: linear-gradient(
      90deg,
      #000                    0%,
      rgba(0,0,0,0.97)       25%,
      rgba(0,0,0,0.88)       42%,
      rgba(0,0,0,0.55)       58%,
      rgba(0,0,0,0.15)       74%,
      transparent            88%
    );
  }

  /* Services: 3-col on tablet (5 cards → 3+2) */
  .service-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }

  /* About band */
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-card { grid-column: span 2; grid-template-columns: 1fr 1fr; }

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

  /* Footer */
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  /* Promo band — widen copy on tablet */
  .promo-copy { max-width: 65%; }

  /* Contact */
  .contact-copy { max-width: 65%; }
}

/* --- Mobile (≤768px) ---
   Text widens further; gradient covers most of the hero so
   text is always readable regardless of the narrow viewport. */
@media (max-width: 768px) {
  /* Header */
  .header-inner { height: 64px; gap: 10px; }
  .brand-logo { height: 50px; width: 50px; }
  .phone-text strong { font-size: 13px; }
  .phone-text small { display: none; }

  /* Hamburger nav */
  .nav-toggle { display: flex; order: 3; }
  .primary-nav { position: static; flex: 0 0 auto; }
  .nav-list {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--black);
    padding: 16px 24px 20px;
    gap: 10px;
    border-top: 1px solid #1f1f1f;
    transform: translateY(-110%);
    transition: transform 0.25s ease;
    z-index: 99;
  }
  .nav-list.open { transform: translateY(0); }

  /* Hero — text nearly full width, image becomes atmospheric bg */
  .hero { padding: 40px 0 56px; }
  .hero-inner { min-height: 320px; }
  .hero-copy { max-width: 88%; }
  .hero::before {
    background: linear-gradient(
      90deg,
      #000                    0%,
      rgba(0,0,0,0.97)       35%,
      rgba(0,0,0,0.9)        55%,
      rgba(0,0,0,0.65)       75%,
      rgba(0,0,0,0.35)       90%,
      rgba(0,0,0,0.2)       100%
    );
  }
  .hero-title { font-size: clamp(28px, 7.5vw, 44px); }
  .hero-sub { font-size: 15px; margin-bottom: 22px; }
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    margin-bottom: 24px;
  }
  .hero-features li { font-size: 11px; gap: 6px; }
  .feat-icon { width: 34px; height: 34px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Services: 2-col on mobile */
  .services { padding: 56px 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-card-img { height: 160px; }

  /* About band */
  .about-band { padding: 50px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-card { grid-template-columns: 1fr; grid-column: span 1; }
  .about-photo { min-height: 220px; max-height: 260px; }

  /* Promo band — near full width on mobile */
  .promo-copy { max-width: 92%; }

  /* Service areas */
  .service-areas { padding: 56px 0; }
  .areas-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Reviews */
  .reviews { padding: 56px 0; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Contact */
  .contact-copy { max-width: 90%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding: 44px 0 0; }
}

/* --- Small phones (≤480px) ---
   Full-width text; heavy semi-transparent overlay so the
   image stays as a dark texture without competing with text. */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Header: hide phone number label, keep tap-to-call icon */
  .phone-text { display: none; }
  .phone-icon { width: 40px; height: 40px; }

  /* Hero */
  .hero { padding: 36px 0 50px; }
  .hero-inner { min-height: 0; }
  .hero-copy { max-width: 100%; }
  .hero::before {
    /* Full dark overlay — image shows as subtle texture behind text */
    background: rgba(0, 0, 0, 0.82);
  }
  .hero-title { font-size: clamp(26px, 8.5vw, 36px); }
  .hero-features { gap: 14px 10px; }
  .feat-icon { width: 30px; height: 30px; }
  .hero-features li { font-size: 10px; }

  /* Section titles */
  .section-title { font-size: clamp(24px, 7vw, 34px); margin-bottom: 28px; }

  /* Services: 1-col on tiny phones */
  .service-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 200px; }

  /* Reviews */
  .review-card { padding: 22px 18px; }

  /* Buttons */
  .btn { padding: 13px 20px; font-size: 13px; }
}
