/* ===== Brand Tokens ===== */
:root {
  --bg:        #0a0a0a;
  --bg-2:      #141414;
  --bg-3:      #1e1e1e;
  --bg-4:      #282828;
  --gold:      #c8852a;
  --gold-lt:   #e09a38;
  --gold-dim:  #8a5c1c;
  --brown:     #3d1008;
  --white:     #ffffff;
  --off-white: #ece4d8;
  --light:     #c8bca8;
  --muted:     #888880;
  --line:      #2e2e2e;
  --line-lt:   #3a3a3a;
  /* Light section tokens */
  --lt-bg:     #ffffff;
  --lt-bg-2:   #f5f5f5;
  --lt-ink:    #111111;
  --lt-muted:  #555555;
  --lt-line:   #e0e0e0;
  --radius:    14px;
  --shadow:    0 8px 32px rgba(0,0,0,.5);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.7);
  --max:       1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--white);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

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

h1, h2, h3 { line-height: 1.12; letter-spacing: -.02em; font-weight: 800; color: var(--white); }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--light); line-height: 1.7; }
img { display: block; image-orientation: from-image; }

.eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn-gold    { background: var(--gold); color: #fff; border-color: var(--gold); box-shadow: 0 6px 20px rgba(200,133,42,.38); }
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.45); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.07); }
.btn-block   { width: 100%; justify-content: center; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10,10,10,.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100px; }
.brand img { height: 88px; width: auto; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; font-weight: 700; font-size: .93rem;
  color: var(--white); border: 2px solid rgba(255,255,255,.35);
  padding: 10px 22px; border-radius: 999px;
  transition: border-color .15s, color .15s;
}
.header-phone:hover { border-color: var(--gold); color: var(--gold); }
.header-phone svg { width: 15px; height: 15px; }
.header-right { display: flex; align-items: center; gap: 16px; }

/* Desktop nav */
.main-nav { display: flex; align-items: center; gap: 32px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold); color: #fff; text-decoration: none;
  font-size: .85rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 999px;
  transition: background .15s, transform .15s;
}
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }
.mobile-call-btn {
  display: none;
  background: var(--gold); color: #fff !important; text-decoration: none !important;
  font-weight: 800; font-size: .9rem; padding: 11px 22px; border-radius: 999px;
  box-shadow: 0 4px 16px rgba(200,133,42,.4);
  white-space: nowrap;
}
.nav-link {
  color: var(--light); text-decoration: none; font-size: .88rem;
  font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  transition: color .15s;
}
.nav-link:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; background: none;
  border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none; flex-direction: column;
  background: rgba(10,10,10,.98); border-top: 1px solid var(--line);
  padding: 0; overflow: hidden; max-height: 0;
  transition: max-height .3s ease, padding .3s ease;
}
.mobile-nav.open { max-height: 400px; padding: 12px 0 20px; }
.mobile-nav-link {
  display: block; padding: 14px 24px; color: var(--light);
  text-decoration: none; font-size: 1rem; font-weight: 600;
  border-bottom: 1px solid var(--line); transition: color .15s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-call { color: var(--gold) !important; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; color: #fff; min-height: 640px; display: flex; align-items: center; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('team-group.jpg');
  background-size: cover; background-position: center 80%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px;
  align-items: center; padding: 64px 0 80px; width: 100%;
}
.hero-inner--full {
  display: flex; flex-direction: column; align-items: flex-end;
  padding: 80px 0 100px;
}
.hero-copy--centered { max-width: 560px; text-align: left; }

/* Split hero: left = empty (crew visible), right = copy + form */
.hero-inner--split {
  display: grid; grid-template-columns: 1fr 480px;
  gap: 0; align-items: center; padding: 48px 0 56px; width: 100%;
}
.hero-spacer { /* empty, crew shows through */ }
.hero-right {
  display: flex; flex-direction: column; gap: 20px;
}
.hero-right .hero-copy h1 { font-size: 2rem; margin-bottom: 10px; }
.hero-right .lede { font-size: .95rem; margin-bottom: 10px; max-width: none; }
.hero-right .trust-pills { margin-top: 8px; }
.hero-right .form-card { padding: 22px 20px; }
.hero-copy h1 { color: #fff; margin-bottom: 18px; }
.lede { color: #d4c8b4; font-size: 1.08rem; margin-bottom: 26px; max-width: 38ch; }
.lede strong { color: #fff; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 7px 18px; margin-top: 22px; list-style: none; }
.trust-pills li { color: var(--gold); font-size: .87rem; font-weight: 600; }

/* ===== Quote bar (below hero) ===== */
.quote-bar {
  background: var(--bg-2); border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.form-card--wide {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: end; gap: 24px;
  background: none; border: none; padding: 0; box-shadow: none; backdrop-filter: none;
}
.form-card--wide .form-card-head { grid-column: 1 / -1; }
.form-card--wide .form-card-head h2 { font-size: 1.4rem; color: var(--white); margin-bottom: 4px; }
.form-inline {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 12px; align-items: end; grid-column: 1 / -1;
}
.form-inline .btn-block { width: auto; white-space: nowrap; margin-bottom: 0; }
.form-card--wide .form-fine { grid-column: 1 / -1; text-align: left; margin-top: 4px; }

/* ===== Form card (original, kept for fallback) ===== */
.form-card {
  background: rgba(20,20,20,.92); border: 1px solid rgba(200,133,42,.3);
  border-radius: var(--radius); padding: 30px 26px;
  box-shadow: 0 32px 80px rgba(0,0,0,.8), 0 0 0 1px rgba(200,133,42,.1);
  backdrop-filter: blur(8px);
}
.form-card h2 { font-size: 1.35rem; color: var(--white); margin-bottom: 4px; }
.form-sub { font-size: .88rem; color: var(--muted); margin-bottom: 16px; }
.field { margin-bottom: 13px; }
.field label {
  display: block; font-size: .72rem; font-weight: 700;
  color: var(--off-white); margin-bottom: 5px;
  letter-spacing: .07em; text-transform: uppercase;
}
.field input, .field select {
  width: 100%; padding: 12px 14px; font-family: inherit; font-size: .97rem;
  border: 1.5px solid var(--line-lt); border-radius: 9px;
  background: var(--bg-3); color: var(--white);
  transition: border-color .15s, background .15s;
}
.field input::placeholder { color: #555; }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); background: var(--bg-4); }
.field select option { background: var(--bg-3); }
.form-fine { font-size: .75rem; text-align: center; margin-top: 10px; color: #555; }
.hidden-field { display: none; }

/* ===== Dividers ===== */
.section-divider { border: none; border-top: 1px solid var(--line); }
.gold-rule { border: none; border-top: 2px solid var(--gold-dim); margin: 0; }

/* ===== Sections ===== */
.section     { padding: 80px 0; scroll-margin-top: 108px; }
.trust-bar, .testimonials-bg, .quote-bar { scroll-margin-top: 108px; }
#feature, #work, #testimonials, #team, #process, #services { scroll-margin-top: 108px; }
.section-alt { background: var(--bg-2); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { font-size: 1.05rem; }

/* ===== Light sections ===== */
.section-light {
  background: var(--lt-bg);
}
.section-light h2,
.section-light h3,
.section-light .section-head h2 { color: var(--lt-ink); }
.section-light p,
.section-light .section-head p  { color: var(--lt-muted); }
.section-light .eyebrow          { color: var(--gold); }

.section-light .svc-card {
  background: var(--lt-bg-2); border-color: var(--lt-line);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.section-light .svc-card:hover   { border-color: var(--gold); }
.section-light .svc-card h3      { color: var(--lt-ink); }
.section-light .svc-card p       { color: var(--lt-muted); }

.section-light .gallery-item     { box-shadow: 0 4px 16px rgba(0,0,0,.12); }

.section-light .step-num         { background: #f0f0f0; border-color: var(--gold); }
.section-light .step h3          { color: var(--lt-ink); }
.section-light .step p           { color: var(--lt-muted); }

.section-light .review-card      { background: var(--lt-bg-2); border-color: var(--lt-line); }
.section-light .review-card:hover{ border-color: var(--gold); }
.section-light .reviewer-info .name { color: var(--lt-ink); }
.section-light .review-body      { color: var(--lt-muted); }

.section-light .town-list li     { background: var(--lt-bg-2); border-color: var(--lt-line); color: var(--lt-ink); }

.section-light .feature-copy h2  { color: var(--lt-ink); }
.section-light .check-list li    { color: var(--lt-muted); }
.section-light .check-list li strong { color: var(--lt-ink); }

/* ===== Trust bar (lighter, no brown) ===== */
.trust-bar { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--off-white); font-size: .87rem; font-weight: 600; }
.trust-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ===== Service cards ===== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 24px; text-align: center;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.svc-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 16px 48px rgba(200,133,42,.12); }
.svc-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(200,133,42,.12); border: 2px solid var(--gold-dim);
  display: grid; place-items: center; margin: 0 auto 18px; font-size: 1.7rem;
}
.svc-icon svg { width: 28px; height: 28px; color: var(--gold); }
.svc-text { text-align: center; }
.svc-card h3 { color: var(--white); margin-bottom: 8px; }

/* ===== Feature 2-col ===== */
.feature-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy h2 { margin-bottom: 14px; }
.check-list { list-style: none; margin: 16px 0 26px; display: grid; gap: 11px; }
.check-list li { position: relative; padding-left: 30px; color: var(--light); font-size: .97rem; }
.check-list li strong { color: var(--white); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; background: var(--gold); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  font-size: .68rem; font-weight: 800;
}

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ===== Lightbox ===== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lb-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: #fff; font-size: 2rem;
  cursor: pointer; line-height: 1; opacity: .7; transition: opacity .15s;
}
.lb-close:hover { opacity: 1; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: none; color: #fff;
  font-size: 3rem; line-height: 1; padding: 12px 18px; cursor: pointer;
  border-radius: 8px; transition: background .15s;
}
.lb-nav:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size: .9rem;
}

/* ===== Testimonials ===== */
.testimonials-bg { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 72px 0; text-align: center; }
.stars { color: #f5c842; font-size: 1.5rem; margin-bottom: 16px; letter-spacing: 3px; }
.review-text { font-size: 1.12rem; font-style: italic; color: var(--off-white); max-width: 640px; margin: 0 auto 18px; line-height: 1.75; }
.reviewer { color: var(--gold); font-weight: 700; font-size: .93rem; }
.reviewer-loc { color: var(--muted); font-size: .82rem; margin-top: 4px; }

/* ===== Steps ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; padding: 12px; }
.step-num {
  display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 16px;
  background: var(--bg-3); color: var(--gold);
  border-radius: 50%; font-weight: 800; font-size: 1.25rem;
  border: 2px solid var(--gold);
}
.step h3 { color: var(--white); margin-bottom: 6px; font-size: 1rem; }

/* ===== Town list ===== */
.town-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 22px; }
.town-list li {
  background: var(--bg-3); border: 1px solid var(--line-lt);
  border-radius: 999px; padding: 8px 18px;
  font-size: .88rem; font-weight: 600; color: var(--off-white);
}

/* ===== Reviews ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
.review-platform { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; justify-content: center; }
.review-platform--link { text-decoration: none; cursor: pointer; }
.review-platform--link:hover .platform-meta { color: var(--gold); }
.platform-logo { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; }
.platform-logo.google { background: var(--bg-3); border: 1px solid var(--line-lt); }
.platform-logo.yelp   { background: #d32323; color: #fff; font-size: .68rem; font-weight: 800; }
.platform-score { font-size: 1.7rem; font-weight: 800; color: var(--white); }
.platform-meta  { font-size: .78rem; color: var(--muted); }
.platform-stars { color: #f5c842; font-size: .88rem; }
.review-card {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s;
}
.review-card:hover { border-color: var(--gold-dim); }
.review-header { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700; font-size: 1rem;
  flex-shrink: 0; overflow: hidden; color: #fff;
}
.reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-info .name { font-weight: 700; font-size: .88rem; color: var(--white); }
.reviewer-info .date { font-size: .73rem; color: var(--muted); }
.review-stars { color: #f5c842; font-size: .9rem; }
.review-body  { font-size: .87rem; color: var(--light); line-height: 1.6; flex: 1; }
.platform-divider { border: none; border-top: 1px solid var(--lt-line); margin: 8px 0 32px; }
.section-light .platform-score { color: var(--lt-ink); }
.section-light .platform-meta  { color: var(--lt-muted); }

/* ===== Team ===== */
.team-group-photo { margin-bottom: 48px; border-radius: 16px; overflow: hidden; }
.team-group-photo img { width: 100%; max-height: 480px; object-fit: cover; object-position: center top; display: block; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.team-card { text-align: center; }
.team-photo {
  width: 180px; height: 180px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(200,133,42,.12), var(--shadow);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-name { font-weight: 800; font-size: 1.05rem; color: var(--white); margin-bottom: 4px; }
.team-role { font-size: .75rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 10px; }
.team-bio  { font-size: .86rem; color: var(--light); line-height: 1.6; }

/* ===== CTA bar ===== */
.cta-bar { background: var(--bg-2); border-top: 1px solid var(--line); padding: 40px 0; }
.cta-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-bar h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-bar p  { color: var(--light); font-size: .95rem; margin-top: 6px; }

/* ===== Footer ===== */
.site-footer { background: #060606; color: var(--muted); padding: 48px 0 22px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.footer-logo  { height: 56px; width: auto; opacity: .88; }
.footer-note  { margin-top: 12px; font-size: .88rem; max-width: 28ch; color: var(--muted); }
.footer-links { display: grid; gap: 8px; align-content: start; }
.footer-links a, .footer-links span { color: var(--muted); text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding-top: 20px; font-size: .78rem; color: #333; }

/* ===== Mobile call bar ===== */
.mobile-call { display: none; }

/* ===== Tablet ===== */
@media (max-width: 960px) {
  .main-nav       { display: none; }
  .hamburger      { display: flex; }
  .mobile-call-btn { display: none; }

textarea {
  width: 100%; padding: 10px 14px; border-radius: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); font-family: inherit; font-size: .95rem;
  resize: vertical; min-height: 80px;
}
textarea::placeholder { color: var(--muted); }
textarea:focus { outline: none; border-color: var(--gold); }
  .header-phone   { display: none; }
  .header-phone--cta {
    display: flex !important;
    background: var(--gold); color: #fff !important;
    border-color: var(--gold); padding: 9px 16px;
    box-shadow: 0 4px 14px rgba(200,133,42,.4);
  }
  .header-phone--cta .ph-text { display: none; }
  .mobile-nav { display: flex; }
  .hero-inner    { grid-template-columns: 1fr; gap: 36px; }
  .feature-inner { grid-template-columns: 1fr; gap: 32px; }
  .cards-grid    { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .team-grid     { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .lede          { max-width: none; }
}

/* ===== Mobile ===== */
@media (max-width: 600px) {
  /* Header */
  .header-inner  { height: 60px; }
  .brand img     { height: 46px; }
  .header-phone  { padding: 8px 14px; font-size: .85rem; }
  .ph-text       { display: none; }

  /* Hero — copy stacks above form, lighter feel */
  .hero          { min-height: auto; }
  .hero-bg       { background-position: center center; }
  .hero-overlay  {
    background: linear-gradient(180deg,
      rgba(0,0,0,.80) 0%,
      rgba(0,0,0,.70) 60%,
      rgba(0,0,0,.85) 100%
    );
  }
  .hero-inner    { padding: 36px 0 48px; gap: 28px; }
  .hero-copy h1  { font-size: 2rem; margin-bottom: 12px; }
  .lede          { font-size: 1rem; margin-bottom: 20px; }
  .hero-cta      { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; font-size: .97rem; padding: 14px 20px; }
  .trust-pills   { gap: 6px 14px; margin-top: 16px; }
  .trust-pills li { font-size: .82rem; }

  /* Hero split → stack on mobile, form fills top */
  .hero           { min-height: unset; align-items: flex-start; }
  .hero-inner--split { grid-template-columns: 1fr; padding: 0; }
  .hero-spacer   { display: none; }
  .hero-right    { width: 100%; }
  .hero-right .form-card { border-radius: 0; border-left: none; border-right: none; border-top: none; }
  .hero-right .hero-copy h1 { font-size: 1.75rem; }
  /* Quote bar / form */
  .form-card--wide { grid-template-columns: 1fr; }
  .form-inline   { grid-template-columns: 1fr; }
  .form-inline .btn-block { width: 100%; }
  .field input, .field select { padding: 13px 12px; font-size: 1rem; }
  .btn-block     { font-size: 1rem; padding: 15px; }

  /* Trust bar — scroll horizontally on very small screens */
  .trust-bar-inner { gap: 14px; justify-content: flex-start; overflow-x: auto; padding: 0 24px; flex-wrap: nowrap; }
  .trust-item    { flex-shrink: 0; white-space: nowrap; font-size: .82rem; }

  /* Sections */
  .section       { padding: 52px 0; }
  .section-head  { margin-bottom: 32px; }
  .section-head h2 { font-size: 1.6rem; }

  /* Service cards — single column */
  .cards-grid    { grid-template-columns: 1fr; gap: 14px; }
  .svc-card      { padding: 22px 18px; display: flex; align-items: flex-start; gap: 16px; }
  .svc-text      { text-align: left; }
  .svc-icon      { width: 52px; height: 52px; font-size: 1.3rem; margin: 0; flex-shrink: 0; }

  /* Feature photo */
  .feature-photo { aspect-ratio: 16/9; }

  /* Gallery — 2 col tight */
  .gallery-grid  { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item  { border-radius: 8px; }

  /* Testimonials */
  .testimonials-bg { padding: 52px 0; }
  .review-text   { font-size: .97rem; }
  .stars         { font-size: 1.2rem; }

  /* Steps — 2 col */
  .steps-grid    { grid-template-columns: 1fr 1fr; gap: 16px; }
  .step          { padding: 4px; }
  .step-num      { width: 44px; height: 44px; font-size: 1rem; margin-bottom: 10px; }

  /* Town list */
  .town-list li  { font-size: .82rem; padding: 7px 14px; }

  /* Reviews */
  .reviews-grid  { grid-template-columns: 1fr; gap: 12px; }
  .review-card   { padding: 16px; }

  /* Team — 2 col with smaller photos */
  .team-grid     { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .team-photo    { width: 110px; height: 110px; margin-bottom: 12px; }
  .team-name     { font-size: .95rem; }
  .team-bio      { font-size: .8rem; }

  /* CTA bar */
  .cta-bar       { padding: 32px 0; }
  .cta-bar-inner { flex-direction: column; text-align: center; gap: 20px; }
  .cta-bar h2    { font-size: 1.4rem; }
  .cta-bar-inner > div:last-child { display: flex; flex-direction: column; gap: 10px; width: 100%; }
  .cta-bar-inner .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-inner  { flex-direction: column; gap: 24px; }
  .footer-logo   { height: 44px; }

  /* Sticky call bar */
  .mobile-call   { display: none; }
  body           { padding-bottom: 64px; }
}
