/* ============================================================
   ProPlumbers Landing Page — styles.css
   Companion stylesheet for index.html
   ============================================================ */

/* ─── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;450;500;600&family=JetBrains+Mono:wght@500&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ─── CSS Custom Properties (Design Tokens) ─────────────────── */
:root {
  /* Brand palette — navy + cream + utility orange */
  --navy:        #0B1B2E;
  --navy-2:      #152A43;
  --cream:       #F1E4CC;
  --cream-2:     #E8D9BC;
  --paper:       #FBF5E9;
  --accent:      #E85A2A;
  --accent-ink:  #0B1B2E;

  /* Ink scale (ink = --navy, used on cream backgrounds) */
  --ink:         #0B1B2E;
  --ink-60:      rgba(11, 27, 46, .62);
  --ink-40:      rgba(11, 27, 46, .38);
  --ink-12:      rgba(11, 27, 46, .12);
  --ink-08:      rgba(11, 27, 46, .08);
  --line:        rgba(11, 27, 46, .14);

  /* On-navy scale (used on dark sections) */
  --on-navy:     #F1E4CC;
  --on-navy-60:  rgba(241, 228, 204, .66);
  --on-navy-30:  rgba(241, 228, 204, .3);
  --on-navy-12:  rgba(241, 228, 204, .14);
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font: 450 16px / 1.5 "Inter", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--ink); color: var(--cream); }

a     { color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
img   { display: block; max-width: 100%; }

/* ─── Typography Scale ───────────────────────────────────────── */
/* Display: large headings (hero, section titles) */
.display {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.94;
}

/* Mono: labels, tags, timestamps, metadata */
.mono {
  font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 11px;
}

/* ─── Layout Helpers ─────────────────────────────────────────── */
.wrap  { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* Horizontal rules */
.rule       { height: 1px; background: var(--line); width: 100%; }
.rule-cream { height: 1px; background: var(--on-navy-12); width: 100%; }

/* Flex utilities */
.stack   { display: flex; flex-direction: column; }
.row     { display: flex; flex-direction: row; }
.between { justify-content: space-between; }
.center  { align-items: center; }
.grow    { flex: 1; }

/* Gap utilities */
.gap-4  { gap: 4px;  }
.gap-6  { gap: 6px;  }
.gap-8  { gap: 8px;  }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-40 { gap: 40px; }
.gap-48 { gap: 48px; }

/* ─── Surface Variants ───────────────────────────────────────── */
/* Dark navy section */
.on-navy { background: var(--navy); color: var(--on-navy); }
.on-navy ::selection { background: var(--cream); color: var(--navy); }

/* Light paper card */
.card      { background: var(--paper); border: 1px solid var(--line); }
.card.dark { background: var(--navy-2); border-color: var(--on-navy-12); color: var(--on-navy); }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform .12s ease, background .15s, color .15s, border-color .15s;
}
.btn:hover           { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn:active          { transform: translateY(1px); }

.btn-ghost           { background: transparent; color: var(--ink); }
.btn-ghost:hover     { background: var(--ink); color: var(--cream); }

.btn-accent          { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-accent:hover    { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.btn .arrow          { display: inline-block; transition: transform .15s ease; }
.btn:hover .arrow    { transform: translateX(3px); }

/* ─── Tags / Pills ───────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-60);
  background: transparent;
}
.tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--accent);
}

/* ─── Section Labels ─────────────────────────────────────────── */
/* Used above every section heading — "Services · 02" */
.sec-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.sec-label::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--ink);
}
.on-navy .sec-label              { color: var(--on-navy-60); }
.on-navy .sec-label::before      { background: var(--on-navy); }

/* ─── Photo Placeholders ─────────────────────────────────────── */
/* Stand-in for real photography, shows a cross-hatched area + label */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, var(--ink-08) 0 1px, transparent 1px 14px),
    var(--cream-2);
  overflow: hidden;
  color: var(--ink-60);
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: white;
}
.ph.dark {
  background:
    repeating-linear-gradient(135deg, rgba(241,228,204,.08) 0 1px, transparent 1px 14px),
    var(--navy-2);
  color: var(--on-navy-60);
}
.ph.dark::after { color: var(--on-navy-60); }
.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Form Elements (Booking Form) ───────────────────────────── */
.field { display: flex; flex-direction: column; gap: 6px; }

.field label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.input, .select, .ta {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-12);
  padding: 10px 0;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
  border-radius: 0;
  width: 100%;
}
.input:focus,
.select:focus,
.ta:focus          { border-bottom-color: var(--ink); }
.input::placeholder,
.ta::placeholder   { color: var(--ink-40); }
.ta {
  resize: none;
  min-height: 64px;
  font-family: inherit;
}

/* Custom select arrow */
.select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: right 6px top 18px, right 0 top 18px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 22px;
}

/* Chip selector (service / urgency / time-slot toggles) */
.check-row { display: flex; flex-wrap: wrap; gap: 6px; }

.chip {
  padding: 8px 12px;
  border: 1px solid var(--ink-12);
  background: transparent;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  border-radius: 0;
  transition: background .12s, color .12s, border-color .12s;
}
.chip:hover          { border-color: var(--ink); }
.chip.on             { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.chip.on.urgent      { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ─── Grid Background ────────────────────────────────────────── */
/* Subtle grid lines used in the hero section */
.grid-bg {
  background-image:
    linear-gradient(to right,  var(--ink-08) 1px, transparent 1px),
    linear-gradient(to bottom, var(--ink-08) 1px, transparent 1px);
  background-size: 88px 88px;
}

/* ─── Trust Marquee ─────────────────────────────────────────── */
@keyframes marq {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.marquee {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marq 40s linear infinite;
}

/* ─── Scroll Reveal ──────────────────────────────────────────── */
.reveal    { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}

.nav-phone-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 99px;
}

/* ─── Hero Section ───────────────────────────────────────────── */
.hero {
  padding: 56px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.hero-headline {
  font-size: clamp(56px, 9vw, 82px);
  margin: 0;
  letter-spacing: -0.035em;
}

.hero-headline .accent { color: var(--accent); }

.hero-lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-60);
  max-width: 480px;
}

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

/* Trust stats row below headline */
.hero-stats {
  margin-top: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-12);
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat-value { font-size: 32px; line-height: 1; }
.hero-stat-label { color: var(--ink-60); }

/* Right column — booking form wrapper */
.hero-form-col { position: relative; }

.hero-form-photo {
  position: absolute;
  inset: -32px -32px 80px 16px;
  z-index: 0;
  aspect-ratio: auto;
}

.hero-form-wrap {
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

.hero-form-footnotes {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding: 0 4px;
  color: var(--ink-60);
}

/* ─── Booking Form Card ──────────────────────────────────────── */
.booking-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.booking-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.booking-step-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 14px;
}

.booking-dot {
  height: 6px;
  border-radius: 0;
  background: var(--ink-12);
  transition: all .25s ease;
}
.booking-dot.active  { width: 22px; background: var(--ink); }
.booking-dot.done    { width: 8px;  background: var(--ink); }
.booking-dot.pending { width: 8px;  background: var(--ink-12); }

.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* ─── Trust / Marquee Bar ────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: var(--cream);
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 64px;
  color: var(--ink-60);
}

.trust-bar-diamond { color: var(--accent); }

/* ─── Services Section ───────────────────────────────────────── */
.services-section { padding: 120px 0 100px; }

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
}

.service-card {
  padding: 32px 28px 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
/* right & bottom borders inside grid */
.service-card:nth-child(3n+1),
.service-card:nth-child(3n+2) { border-right: 1px solid var(--line); }
.service-card:nth-child(-n+3) { border-bottom: 1px solid var(--line); }

.service-num-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-title { font-size: 26px; margin: 0; line-height: 1.05; }
.service-desc  { margin: 0; color: var(--ink-60); font-size: 14px; line-height: 1.55; }

.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-bullet {
  font-size: 13px;
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.service-bullet-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 0;
  transform: translateY(1px);
  flex: 0 0 auto;
}

/* ─── How It Works ───────────────────────────────────────────── */
.how-section { padding: 120px 0; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--on-navy-12);
}

.how-step {
  padding: 40px 28px 36px;
}
.how-step:not(:last-child) { border-right: 1px solid var(--on-navy-12); }

.how-step-num-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.how-step-num  { font-size: 88px; line-height: 1; color: var(--accent); }
.how-step-tag  { color: var(--on-navy-60); }
.how-step-title{ font-size: 28px; margin: 0 0 14px; color: var(--on-navy); }
.how-step-body { margin: 0; color: var(--on-navy-60); font-size: 15px; line-height: 1.6; }

/* ─── Pricing Section ────────────────────────────────────────── */
.pricing-section { padding: 120px 0 100px; background: var(--paper); }

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

.pricing-tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
}

.pricing-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.pricing-item {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.pricing-item:not(:last-child) { border-bottom: 1px solid var(--line); }

.pricing-item-name { font-size: 15px; font-weight: 500; }
.pricing-item-sub  { font-size: 12px; color: var(--ink-60); }
.pricing-item-price{ font-size: 20px; white-space: nowrap; }

.pricing-discount-bar {
  margin-top: 48px;
  padding: 24px 28px;
  border: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.pricing-discount-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
}

/* ─── About / Team Section ───────────────────────────────────── */
.about-section { padding: 120px 0 100px; }

.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

.about-stats { display: flex; gap: 32px; margin-top: 8px; }
.about-stat-value { font-size: clamp(32px, 9vw, 42px); }
.about-stat-accent { color: var(--accent); }
.about-stat-label { color: var(--ink-60); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.team-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials-section { padding: 120px 0 100px; background: var(--paper); }

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

.testimonial-card {
  margin: 0;
  padding: 32px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 340px;
}

.testimonial-stars { display: flex; gap: 4px; }
.testimonial-star-on  { color: var(--accent); font-size: 14px; }
.testimonial-star-off { color: var(--ink-12);  font-size: 14px; }

.testimonial-quote {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  flex: 1;
}

.testimonial-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

/* ─── Service Area Section ───────────────────────────────────── */
.area-section { padding: 120px 0; }

.area-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: stretch;
}

.area-zips { display: flex; flex-wrap: wrap; gap: 6px; }

.area-zip {
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--on-navy-12);
  color: var(--on-navy);
}

.area-map {
  position: relative;
  background: var(--navy-2);
  border: 1px solid var(--on-navy-12);
  min-height: 480px;
  overflow: hidden;
}

.area-map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.area-map-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 10px;
  background: var(--navy);
  border: 1px solid var(--on-navy-12);
  color: var(--on-navy);
}

.area-map-eta {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--on-navy-60);
}

/* ─── FAQ Section ────────────────────────────────────────────── */
.faq-section { padding: 120px 0 100px; }

.faq-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

.faq-sticky {
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink);
}

.faq-item  { border-bottom: 1px solid var(--line); }

.faq-button {
  width: 100%;
  padding: 24px 0;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.faq-question {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.faq-toggle {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  color: var(--ink-60);
  transition: transform .2s ease;
  line-height: 1;
}
.faq-toggle.open { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  transition: max-height .3s ease, padding-bottom .3s ease;
}
.faq-answer p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--ink-60); max-width: 600px; }

/* ─── Footer / End CTA ───────────────────────────────────────── */
.footer { padding-top: 40px; padding-bottom: 40px; }

.footer-cta {  border-bottom: 1px solid var(--on-navy-12); }
.footer-cta-label { margin-bottom: 16px; }

.footer-headline {
  font-size: clamp(56px, 9vw, 80px);
  margin: 0;
  color: var(--on-navy);
  line-height: .92;
}

.footer-headline-accent { color: var(--accent); }
.footer-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

.footer-cols {
  padding: 48px 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.footer-brand-desc { margin: 0; color: var(--on-navy-60); font-size: 13px; max-width: 280px; line-height: 1.6; }

.footer-col-head { color: var(--on-navy-60); margin-bottom: 10px; }

.footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col-links li { font-size: 13px; color: var(--on-navy); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: var(--on-navy-60);
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── Mobile Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-form-photo { display: none; }
  .about-grid,
  .area-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  .nav-phone { display: none; }

  /* Typography */
  .hero-headline { font-size: clamp(40px, 13vw, 72px); }
  .hero-lead     { font-size: 16px; }
  .hero-stats    { gap: 28px; }
  .hero-stat-value { font-size: 24px; }
  .footer-headline { font-size: clamp(36px, 10vw, 80px); }

  /* Nav */
  .nav-links  { display: none; }   /* simplified — add a hamburger menu for production */
  .nav-inner  { gap: 12px; }

  /* Sections */
  .services-grid          { grid-template-columns: 1fr; }
  .service-card:nth-child(n)  { border-right: none; border-bottom: 1px solid var(--line); }
  .service-card:last-child    { border-bottom: none; }

  .how-grid               { grid-template-columns: 1fr; }
  .how-step:not(:last-child) { border-right: none; border-bottom: 1px solid var(--on-navy-12); }

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

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

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

  .about-stat-value { font-size: clamp(22px, 6vw, 32px); }

  .services-section,
  .how-section,
  .pricing-section,
  .about-section,
  .testimonials-section,
  .area-section,
  .faq-section            { padding: 64px 0; }

  .footer                 { padding-top: 64px; }
  .footer-cta             { padding-bottom: 48px; }
  .footer-cols            { grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 32px; }

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

  /* Hero stats */
  .hero-stats { flex-direction: row; }

  /* Booking form */
  .booking-card { padding: 20px; }
}

@media (max-width: 480px) {
  .hero-ctas,
  .footer-cta-actions { flex-direction: column; }

  .pricing-discount-bar { flex-direction: column; align-items: flex-start; }

  .about-stats { flex-wrap: wrap; gap: 20px; }

  .footer-cols { grid-template-columns: 1fr; }

  .hero-eyebrow { flex-direction: column; align-items: flex-start; gap: 8px; }

  .area-map { min-height: 280px; }

  .faq-question { font-size: 16px; }
}
