/* ──────────────────────────────────────────────────────────────────────────
   Supreme Plumbing & Heating Solutions — monochrome design language
   Pure black + white, with subtle greys. Bold sans wordmark, clean Inter body.
   Modern, premium, no-nonsense tradesman feel.
   ────────────────────────────────────────────────────────────────────────── */

:root {
  /* Monochrome palette */
  --navy:        #111111;   /* primary ink / button bg */
  --navy-deep:   #000000;
  --navy-mid:    #2A2A2A;
  --yellow:      #FFFFFF;   /* "accent" = pure white in this theme */
  --yellow-deep: #E5E5E5;
  --yellow-soft: #F5F5F5;
  --yellow-wash: #FAFAFA;

  --cream:       #FFFFFF;
  --paper:       #FFFFFF;
  --bg:          #F4F4F4;
  --ink:         #111111;
  --ink-soft:    #4A4A4A;
  --ink-faint:   #8A8A8A;
  --line:        #E2E2E2;
  --line-soft:   #EFEFEF;

  --shadow-soft: 0 8px 24px rgba(0, 0, 0, .08);
  --shadow-mid:  0 18px 36px rgba(0, 0, 0, .14);

  --font-display: 'Montserrat', 'Inter', 'Helvetica Neue', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', system-ui, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .15s; }
a:hover { color: var(--navy-mid); }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -.01em;
  line-height: 1.1;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; }
h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; letter-spacing: 0; line-height: 1.3; color: var(--navy-deep); }
h4 { font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--navy); font-weight: 700; }
p { margin: 0 0 1em; }
strong { color: var(--navy-deep); font-weight: 700; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 26px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 11.5px; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 30px; height: 3px; background: var(--yellow); border-radius: 2px;
}

.lede {
  font-size: 1.18rem; color: var(--ink-soft);
  max-width: 62ch; line-height: 1.6; font-weight: 400;
}

/* Top utility bar */
.utility-bar {
  background: var(--navy-deep); color: rgba(255,255,255,.85);
  font-size: 13px; border-bottom: 2px solid var(--yellow);
}
.utility-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 26px; gap: 18px; flex-wrap: wrap;
}
.utility-left, .utility-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.util-item { color: rgba(255,255,255,.9); font-weight: 500; }
.util-sep { color: rgba(255,255,255,.35); }
.util-phone { color: #fff; font-weight: 700; }
.util-phone:hover, .util-email:hover { color: var(--yellow); }
.util-social {
  border: 1px solid rgba(255,255,255,.25); padding: 2px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper); border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 0 var(--yellow);
}
.nav-wrap {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 14px 26px; gap: 18px;
  max-width: 1280px; margin: 0 auto;
}
.brand { grid-column: 1; justify-self: start; display: flex; align-items: center; gap: 14px; }
.brand-mark { height: 76px; width: auto; max-width: 320px; object-fit: contain; }
.brand-title-link { grid-column: 2; justify-self: center; text-decoration: none; }
.brand-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 900; letter-spacing: .04em;
  color: var(--navy-deep); line-height: 1; text-transform: uppercase;
  white-space: nowrap;
}
.site-nav { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 4px; }
.site-nav a {
  position: relative; padding: 12px 16px;
  color: var(--ink); font-weight: 600; font-size: 14px; letter-spacing: .02em;
}
.site-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left;
  transition: transform .18s ease;
}
.site-nav a:not(.btn):hover::after, .site-nav a:not(.btn).active::after { transform: scaleX(1); }
.site-nav a.active { color: var(--navy); }
.nav-cta { margin-left: 10px; }
.nav-toggle {
  grid-column: 3; justify-self: end;
  display: none; background: transparent; border: 0; cursor: pointer; padding: 8px;
  width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 3px; background: var(--navy-deep); border-radius: 2px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border: 0; cursor: pointer;
  font-family: var(--font-body);
  font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; line-height: 1; border-radius: 4px;
  transition: transform .12s, background .15s, color .15s, box-shadow .15s, border-color .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--navy-deep); box-shadow: 0 4px 0 var(--yellow-deep); }
.btn-primary:hover { background: var(--yellow-soft); box-shadow: 0 6px 0 var(--yellow-deep); color: var(--navy-deep); }
.btn-secondary { background: var(--navy); color: #fff; box-shadow: 0 4px 0 var(--navy-deep); }
.btn-secondary:hover { background: var(--navy-mid); color: #fff; box-shadow: 0 6px 0 var(--navy-deep); }
.btn-ghost { background: transparent; color: var(--navy-deep); border: 2px solid var(--navy-deep); }
.btn-ghost:hover { background: var(--navy-deep); color: #fff; }
.btn-light { background: #fff; color: var(--navy-deep); box-shadow: 0 4px 0 rgba(0,0,0,.1); }
.btn-danger { background: #c2412e; color: #fff; }
.btn-lg { padding: 18px 34px; font-size: 14px; }
.btn-sm { padding: 9px 14px; font-size: 11px; }

/* Site-nav primary button keeps white text against navy */
.site-nav a.btn-primary { color: var(--navy-deep) !important; }

/* Flash */
.flash-wrap { max-width: 1180px; margin: 16px auto 0; padding: 0 26px; }
.flash { padding: 14px 18px; margin-bottom: 10px; font-size: 14px; border-left: 4px solid; border-radius: 4px; }
.flash-success { background: #eef7ee; color: #234d23; border-color: #4f8a4f; }
.flash-error   { background: #fbeded; color: #7d2222; border-color: #b33; }

/* HERO */
.hero {
  position: relative; isolation: isolate;
  padding: 120px 0 130px; overflow: hidden;
  background: #000;
  color: #fff;
}
.hero-video, .hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: .55;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.85) 100%),
    radial-gradient(60% 80% at 50% 50%, transparent 0, rgba(0,0,0,.4) 100%);
}
.hero-inner { z-index: 2 !important; }
.hero-inner { position: relative; z-index: 1; max-width: 820px; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .accent { color: var(--yellow); }
.hero .lede { color: rgba(255,255,255,.85); font-size: 1.25rem; max-width: 60ch; }
.hero .eyebrow { color: var(--yellow); }
.hero .eyebrow::before { background: var(--yellow); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 26px; }
.hero-stars {
  display: inline-flex; gap: 4px; font-size: 1.2rem;
  color: var(--yellow); letter-spacing: 2px; margin-top: 4px;
}
.trust { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 13px; color: rgba(255,255,255,.78); font-weight: 500; }
.trust li { display: flex; align-items: center; gap: 8px; }
.trust li::before { content: "✓"; color: var(--yellow); font-weight: 900; }

/* Sections */
.section { padding: 90px 0; position: relative; }
.section-bg    { background: var(--bg); }
.section-paper { background: var(--paper); }
.section-dark { background: #0b0b0b; color: rgba(255,255,255,.88); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: rgba(255,255,255,.65); }
.section-dark .eyebrow::before { background: rgba(255,255,255,.65); }

/* Gallery */
.gallery-section { padding: 80px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4 / 5;
  background: #111;
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  width: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease, filter .35s ease;
  filter: saturate(.95);
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.5); }
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1.1); }
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 11; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
  opacity: 0;
  transition: opacity .2s ease;
  cursor: zoom-out;
}
.lightbox[data-open] { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, .22); }

.section-navy { background: var(--navy-deep); color: rgba(255,255,255,.88); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }
.section-navy .eyebrow { color: var(--yellow); }
.section-navy .eyebrow::before { background: var(--yellow); }
.section-navy .lede { color: rgba(255,255,255,.78); }
.section-navy strong { color: #fff; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head .eyebrow { justify-content: center; }
.section-head .lede { margin: 14px auto 0; }
.section-cta { margin-top: 40px; text-align: center; }

.two-col { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.body-text p { color: var(--ink-soft); font-size: 1.04rem; line-height: 1.75; }

/* Trust feature cards */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: var(--paper); padding: 30px 28px; border-radius: 8px;
  border: 1px solid var(--line); border-top: 4px solid var(--yellow);
  transition: transform .18s, box-shadow .18s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.feature-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--navy-deep); margin: 0 0 8px; letter-spacing: 0; }
.feature-card p { color: var(--ink-soft); margin: 0; font-size: .98rem; }
.feature-icon {
  font-size: 1.4rem; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; background: var(--yellow); color: var(--navy-deep);
  border-radius: 10px; margin-bottom: 14px;
  font-weight: 900;
}
.feature-icon svg { width: 32px; height: 32px; display: block; }

/* CTA band */
.cta-band { background: var(--navy-deep); color: #fff; padding: 80px 0; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .4;
  background: radial-gradient(50% 80% at 100% 50%, rgba(255,198,40,.18) 0, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; }
.cta-inner .eyebrow { color: var(--yellow); }
.cta-inner .eyebrow::before { background: var(--yellow); }
.cta-inner h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.82); max-width: 50ch; font-size: 1.1rem; }
.cta-side { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-phone {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--yellow); font-weight: 900; letter-spacing: .02em;
}
.cta-phone:hover { color: #fff; }

/* Page head */
.page-head {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff; padding: 70px 0 60px; text-align: center;
  border-bottom: 4px solid var(--yellow);
}
.page-head h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 14px; }
.page-head .eyebrow { color: var(--yellow); justify-content: center; }
.page-head .eyebrow::before { background: var(--yellow); }
.page-head .lede { color: rgba(255,255,255,.82); margin: 0 auto; max-width: 62ch; }

/* Forms */
.form { display: flex; flex-direction: column; gap: 16px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 700; color: var(--navy-deep); letter-spacing: .08em; text-transform: uppercase; }
.form input, .form textarea, .form select {
  font: inherit; color: var(--ink); padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: 4px; background: var(--paper);
  transition: border-color .15s, box-shadow .15s;
  font-size: 16px; font-weight: 400; letter-spacing: 0; text-transform: none;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px var(--yellow-wash);
}
.form textarea { resize: vertical; min-height: 130px; }
.form .btn { align-self: flex-start; margin-top: 6px; }
.form-help { font-size: 13px; color: var(--ink-soft); margin: 0; font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-narrow { max-width: 620px; }

.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: start; }
.contact-aside {
  background: var(--navy-deep); color: #fff;
  border-radius: 8px; padding: 30px 28px;
  border-top: 4px solid var(--yellow);
}
.contact-aside h3 { font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 12px; color: #fff; letter-spacing: 0; }
.contact-aside p { margin: 0 0 12px; font-size: .96rem; color: rgba(255,255,255,.82); }
.contact-aside p strong { color: #fff; }
.contact-aside a { color: var(--yellow); font-weight: 700; }

/* Legal */
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-wrap h2 { font-size: 1.45rem; margin-top: 36px; }
.legal-wrap p, .legal-wrap li { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; }
.legal-wrap ul { padding-left: 1.2em; }
.legal-wrap a { color: var(--navy); text-decoration: underline; }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 60px 0 24px; position: relative; }
.site-footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--yellow); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-family: var(--font-display); font-size: 1.6rem; color: #fff; font-weight: 900; margin-bottom: 8px; letter-spacing: .02em; }
.footer-tag { color: var(--yellow); font-size: .92rem; margin-bottom: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.footer-coverage { font-size: 13.5px; color: rgba(255,255,255,.62); margin-bottom: 14px; line-height: 1.6; max-width: 34ch; }
.footer-col h4 { color: var(--yellow); font-family: var(--font-body); font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; margin: 0 0 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.7); margin-bottom: 10px; font-size: 14px; }
.footer-col a:hover { color: var(--yellow); }
.footer-big { font-family: var(--font-display); font-size: 1.5rem; color: #fff !important; font-weight: 800; }
.footer-big:hover { color: var(--yellow) !important; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px;
  font-size: 12.5px; color: rgba(255,255,255,.5);
}
.footer-built a { color: rgba(255,255,255,.65); }
.footer-built a:hover { color: var(--yellow); }

/* Mobile sticky bar */
.mobile-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--navy-deep); border-top: 3px solid var(--yellow);
  box-shadow: 0 -8px 24px rgba(0,0,0,.25);
}
.mobile-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 12px; color: #fff;
  font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
}
.mb-call { background: transparent; border-right: 1px solid rgba(255,255,255,.12); }
.mb-quote { background: var(--yellow); color: var(--navy-deep); }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 18px; left: 18px; right: 18px;
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--yellow);
  padding: 16px 20px; box-shadow: var(--shadow-mid); z-index: 80;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  max-width: 540px; margin: 0 auto; border-radius: 6px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: 14px; color: var(--ink-soft); flex: 1; min-width: 240px; }

/* Empty / placeholder */
.empty-state { text-align: center; padding: 60px 24px; background: var(--paper); border: 1px dashed var(--line); border-radius: 6px; }
.empty-state h3 { margin-bottom: 8px; color: var(--navy-deep); font-family: var(--font-display); font-size: 1.3rem; }
.empty-state p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 22px; }

/* Responsive */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-top .footer-col:last-child { grid-column: span 3; border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; }
}
@media (max-width: 900px) {
  .hero { padding: 60px 0 80px; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .cta-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .cta-inner .eyebrow { justify-content: center; }
  .cta-side { align-items: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .footer-brand-col { grid-column: span 2; }
  .footer-top .footer-col:last-child { grid-column: span 2; }
  .utility-bar { display: none; }
  /* Mobile nav: hamburger + overlay panel kicks in here so the inline
     "Get a quote" button doesn't get squashed on large phones / small tablets. */
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: fixed; top: 92px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 14px 18px 22px; gap: 0;
    box-shadow: var(--shadow-soft);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 12px; border-bottom: 1px solid var(--line-soft); }
  .site-nav a:not(.btn)::after { display: none; }
  .nav-cta {
    display: flex !important;
    width: 100% !important;
    margin: 12px 0 0;
    padding: 14px 16px;
    justify-content: center;
    text-align: center;
    border-bottom: 0 !important;
  }
}
@media (max-width: 680px) {
  body { padding-bottom: 62px; }
  .wrap { padding: 0 18px; }
  .nav-wrap { padding: 12px 18px; }
  .brand-mark { height: 56px; max-width: 180px; }
  .brand-title { font-size: 1rem; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 30px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1; min-width: 0; }
  .mobile-bar { display: flex; }
  .cookie-banner { bottom: 78px; }
}

/* ── Final mobile tightening (≤680 + ≤420) ───────────────────────── */
@media (max-width: 680px) {
  .nav-wrap { padding: 10px 14px; gap: 8px; }
  .brand-mark { height: 50px; max-width: 130px; }
  .brand-title { display: none; } /* logo already contains the wordmark */
  .hero { padding: 50px 0 70px; }
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.6rem); margin-bottom: 16px; }
  .hero .lede { font-size: 1.05rem; }
  .hero-cta { gap: 10px; margin: 22px 0 18px; }
  .hero-cta .btn { width: 100%; }
  .trust { font-size: 12px; gap: 8px 14px; }
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 26px; }
  .feature-card { padding: 22px 20px; }
  .feature-card h3 { font-size: 1.15rem; }
  .cta-band { padding: 56px 0; }
  .cta-phone { font-size: 1.6rem; }
  .contact-aside { padding: 22px 20px; }
  .page-head { padding: 50px 0 40px; }
  /* Form inputs: 16px so iOS doesn't zoom on focus */
  .form input, .form textarea, .form select { font-size: 16px; }
}

@media (max-width: 420px) {
  .wrap { padding: 0 14px; }
  .nav-wrap { padding: 8px 12px; }
  .brand-mark { height: 44px; max-width: 110px; }
  .brand-title { display: none; } /* logo + hamburger on tiny screens */
  .nav-toggle { width: 40px; height: 40px; }
  .hero h1 { font-size: clamp(1.7rem, 8.5vw, 2.2rem); }
  .feature-icon { width: 48px; height: 48px; font-size: 1.2rem; }
  .feature-icon svg { width: 28px; height: 28px; }
  .footer-brand { font-size: 1.3rem; }
  .footer-big { font-size: 1.25rem; }
  .mobile-bar a { font-size: 12px; padding: 14px 10px; }
}

/* Prevent any media from overflowing horizontally on phones */
html, body { overflow-x: hidden; }

/* Right-side nav cluster */
.nav-right { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 10px; }
/* The mobile-only CTA next to the hamburger — turned off in favour of the
   sticky bottom mobile-bar (Call + Get a quote) which is always visible.
   Kept in the markup for future use. */
.nav-cta-mobile { display: none !important; }
