/* ==========================================================================
   MOHIS MECHANICAL SERVICES — Walsall
   Brand palette (Clean & Light):
   White           #FFFFFF  (main bg)
   Off White       #F4F4F2  (alt sections / cards)
   Deep Charcoal   #17191B  (text / header / footer)
   Safety Yellow   #F5E500  (brand accent)
   Bright Yellow   #FFE900  (hover)
   Steel Grey      #565D63  (secondary text)
   Light Line      #E2E4E0  (borders)
   Industrial Green#35A853  (success / WhatsApp CTA)
   ========================================================================== */

:root {
  --bg: #FFFFFF;
  --bg-2: #F4F4F2;
  --bg-3: #FAFAF7;
  --yellow: #F5E500;
  --yellow-2: #FFE900;
  --text: #17191B;
  --muted: #565D63;
  --line: #E2E4E0;
  --green: #35A853;
  --radius: 14px;
  --shadow: 0 14px 34px rgba(23, 25, 27, .10);
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-display: "Barlow Condensed", "Barlow", "Arial Narrow", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 112.5%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--yellow); text-decoration: none; }
a:hover { color: var(--yellow-2); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: .01em;
  margin: 0 0 .5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); text-transform: uppercase; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); text-transform: uppercase; }
h3 { font-size: 1.55rem; }
p  { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; border-radius: 4px; }

::selection { background: var(--yellow); color: #17191B; }

.container { max-width: 1300px; margin-inline: auto; padding-inline: 22px; }

.section { padding-block: clamp(60px, 8vw, 112px); }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.section-head { max-width: 780px; margin-bottom: clamp(30px, 4vw, 52px); }
.section-head p { color: var(--muted); font-size: 1.1rem; margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .82rem;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--yellow); }

.lead { font-size: 1.25rem; color: var(--muted); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--yellow);
  color: #17191B;
  font-weight: 700;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--yellow); color: #17191B; }
.btn--primary:hover { background: var(--yellow-2); color: #17191B; }

.btn--ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: #2e9449; color: #fff; }

.btn--lg { padding: 17px 32px; font-size: 1.06rem; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
  font-size: .86rem;
  color: var(--muted);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  flex-wrap: wrap;
  padding-block: 5px;
}
.topbar-group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; margin: 0; }
.topbar-item svg { width: 14px; height: 14px; color: var(--yellow); flex: none; }
.topbar a { color: var(--text); font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--yellow); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-badge {
  width: 46px; height: 46px;
  background: var(--yellow);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
}
.brand-badge svg { width: 26px; height: 26px; color: #17191B; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: .04em;
}
.brand-text small {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-top: 3px;
}
.brand-logo-img { height: 74px; width: auto; }

.nav-list { display: flex; align-items: center; gap: 6px; }
.nav-list a {
  display: block;
  padding: 12px 16px;
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 8px;
  position: relative;
}
.nav-list a:hover { color: var(--yellow); }
.nav-list a[aria-current="page"] { color: var(--yellow); }
.nav-list a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--yellow);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta { padding: 11px 18px; font-size: .95rem; white-space: nowrap; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font: 700 .95rem var(--font-body);
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(13, 15, 17, .82) 0%, rgba(20, 22, 24, .9) 55%, rgba(23, 25, 27, .94) 100%),
    url('../images/hero-bg.jpg') center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: 100%;
  padding-block: clamp(32px, 5vh, 64px);
}
.hero h1 .accent { color: var(--yellow); }
.hero .lead { max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-note { display: flex; align-items: center; gap: 9px; margin: 22px 0 0; color: var(--muted); font-size: .95rem; }
.hero-note svg { width: 17px; height: 17px; color: var(--yellow); flex: none; }

.hero-panel {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-panel-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-3);
}
.hero-rating-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.hero-rating-meta { font-size: .92rem; color: var(--muted); line-height: 1.45; }
.stars { display: inline-flex; gap: 3px; color: var(--yellow); }
.stars svg { width: 17px; height: 17px; fill: currentColor; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-stat {
  padding: 20px 14px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--yellow);
  line-height: 1.1;
}
.hero-stat span { font-size: .8rem; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }

.hero-quote { padding: 20px 24px 24px; border-top: 1px solid var(--line); }
.hero-quote blockquote { margin: 0 0 10px; font-size: 1rem; color: var(--text); }
.hero-quote cite { font-style: normal; color: var(--muted); font-size: .88rem; }

/* ---------- Feature strip ---------- */
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color .2s ease, transform .2s ease;
}
.feature-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(245, 229, 0, .18);
  border: 1px solid rgba(199, 186, 0, .45);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 26px; height: 26px; color: #6B6400; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.feature-card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  color: var(--text);
  transition: border-color .2s ease, transform .2s ease;
}
.svc-card:hover { border-color: var(--yellow); transform: translateY(-4px); color: var(--text); }
.svc-card .feature-icon { margin-bottom: 4px; }
.svc-card h3 { margin: 0; }
.svc-card p { color: var(--muted); font-size: .96rem; margin: 0; }
.svc-more {
  margin-top: auto;
  padding-top: 14px;
  color: var(--text);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.svc-more svg { width: 15px; height: 15px; color: var(--yellow); transition: transform .2s ease; }
.svc-card:hover .svc-more svg { transform: translateX(4px); }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.checklist li { display: flex; gap: 12px; margin-bottom: 13px; align-items: flex-start; }
.checklist svg { width: 21px; height: 21px; color: var(--green); flex: none; margin-top: 3px; }
.checklist b { color: var(--text); }

.stat-row { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(24px, 4vw, 56px); margin-top: 30px; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: var(--text);
  line-height: 1;
}
.stat span { color: var(--muted); font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Reviews ---------- */
.rating-banner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px 10px 14px;
  margin-bottom: 34px;
}
.rating-banner .hero-rating-num { font-size: 2rem; }
.rating-banner .rating-meta { font-size: .9rem; color: var(--muted); line-height: 1.4; }
.rating-banner .stars svg { width: 15px; height: 15px; }

.review-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card .stars { margin-bottom: 2px; }
.review-card blockquote { margin: 0; font-size: .99rem; color: var(--text); flex-grow: 1; }
.review-card figcaption { border-top: 1px solid var(--line); padding-top: 12px; font-size: .86rem; color: var(--muted); }
.review-card figcaption b { display: block; color: var(--text); font-size: .95rem; }

.gbadge { color: var(--muted); font-weight: 600; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; background: var(--bg-2); margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  color: var(--text);
  font: 600 1.06rem/1.4 var(--font-body);
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
}
.faq-q:hover { background: rgba(245, 229, 0, .18); }
.faq-q svg { width: 20px; height: 20px; color: var(--yellow); flex: none; transition: transform .25s ease; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 20px 18px; margin: 0; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--yellow) 0%, #f0dd00 100%);
  color: #17191B;
  border-radius: var(--radius);
  padding: clamp(34px, 5vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #17191B; margin: 0 0 8px; font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.cta-band p { margin: 0; font-weight: 500; color: #33352a; max-width: 46ch; }
.cta-band .btn--ghost { border-color: #17191B; color: #17191B; }
.cta-band .btn--ghost:hover { background: #17191B; color: var(--yellow); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background:
    repeating-linear-gradient(-55deg, rgba(245, 229, 0, .03) 0 2px, transparent 2px 26px),
    radial-gradient(700px 320px at 15% -20%, rgba(245, 229, 0, .06), transparent 60%),
    var(--bg-3);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(48px, 6vw, 80px);
}
.page-hero h1 { margin-bottom: 12px; font-size: clamp(2.4rem, 5vw, 3.6rem); }
.page-hero .lead { max-width: 62ch; margin: 0; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .86rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--text); text-decoration: underline; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--muted); }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 700; }

/* ---------- Services page detail blocks ---------- */
.service-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  padding: 30px clamp(22px, 3vw, 36px);
  scroll-margin-top: 110px;
}
.service-block + .service-block { margin-top: 22px; }
.service-block .feature-icon { margin: 0; width: 60px; height: 60px; }
.service-block h2 { font-size: 1.7rem; margin-bottom: 8px; }
.service-block p { color: var(--muted); margin-bottom: 12px; }
.service-block ul { margin: 0 0 12px; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 8px 22px; }
.service-block ul li { display: flex; gap: 9px; align-items: flex-start; color: var(--muted); font-size: .96rem; }
.service-block ul svg { width: 17px; height: 17px; color: var(--green); flex: none; margin-top: 4px; }
.signs { background: var(--bg-3); border: 1px dashed var(--line); border-radius: 10px; padding: 14px 18px; font-size: .94rem; color: var(--muted); margin: 0; }
.signs b { color: var(--text); }

.process { counter-reset: step; }
.step {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

.area-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .92rem;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Gallery ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work-card {
  margin: 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.work-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.work-media { aspect-ratio: 4 / 3; position: relative; background: var(--bg-3); }
.work-media img { width: 100%; height: 100%; object-fit: cover; }
.work-card.is-placeholder .work-media {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(-45deg, rgba(245, 229, 0, .04) 0 14px, transparent 14px 28px),
    var(--bg-3);
}
.placeholder-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px dashed var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .84rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
}
.placeholder-tag svg { width: 16px; height: 16px; color: var(--yellow); }
.work-card figcaption { padding: 16px 20px 18px; }
.work-card figcaption b { display: block; font-size: 1.02rem; margin-bottom: 3px; }
.work-card figcaption span { color: var(--muted); font-size: .89rem; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 54px); align-items: start; }

.info-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.info-card + .info-card { margin-top: 22px; }
.info-card h2 { font-size: 1.6rem; }
.info-list li { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.info-list li:last-child { border-bottom: 0; }
.info-list .feature-icon { width: 42px; height: 42px; margin: 0; flex: none; border-radius: 10px; }
.info-list .feature-icon svg { width: 20px; height: 20px; }
.info-list b { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 3px; }
.info-list a, .info-list address { color: var(--text); font-style: normal; font-weight: 600; }
.info-list a:hover { color: var(--text); text-decoration: underline; }
.nap-name { font-family: var(--font-display); font-size: 1.3rem; text-transform: uppercase; letter-spacing: .02em; margin: 0 0 2px; }

.hours-table { width: 100%; border-collapse: collapse; font-size: .97rem; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--text); font-weight: 600; }
.hours-table tr:last-child td { border-bottom: 0; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: .92rem; }
.form-field label span { color: var(--yellow); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font: 500 .98rem var(--font-body);
  padding: 13px 15px;
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: #C7BA00;
  box-shadow: 0 0 0 3px rgba(245, 229, 0, .4);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { color: var(--muted); font-size: .86rem; margin: 14px 0 0; }

.map-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; filter: grayscale(.25) contrast(1.02); }

/* ---------- Footer ---------- */
.site-footer { background: #101214; border-top: 1px solid var(--line); margin-top: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(44px, 6vw, 72px);
}
.footer-brand p { color: var(--muted); font-size: .95rem; margin-top: 16px; max-width: 34ch; }
.site-footer h2 {
  font-size: 1.05rem;
  letter-spacing: .14em;
  color: var(--text);
  margin-bottom: 18px;
}
.site-footer h2::after { content: ""; display: block; width: 30px; height: 2px; background: var(--yellow); margin-top: 8px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--yellow); }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 13px; color: var(--muted); font-size: .95rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--yellow); flex: none; margin-top: 4px; }
.footer-contact a { color: var(--text); font-weight: 600; }
.footer-contact a:hover { color: var(--yellow); }
.footer-hours { font-size: .93rem; color: var(--muted); line-height: 2; }
.footer-hours b { color: var(--text); }
.footer-rating { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: .9rem; color: var(--muted); }
.footer-rating .stars svg { width: 14px; height: 14px; }

.footer-map {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
  margin-bottom: clamp(32px, 4vw, 52px);
  filter: grayscale(.25) contrast(1.02);
}

.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-block: 20px;
  font-size: .85rem;
  color: var(--muted);
}
.footer-bottom-inner a { color: var(--muted); }
.footer-bottom-inner a:hover { color: var(--yellow); }

/* ---------- Floating call button (mobile) ---------- */
.call-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 13px 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .45);
}
.call-fab:hover { color: #fff; background: #2e9449; }
.call-fab svg { width: 18px; height: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .work-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .topbar-hide-m { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-inner { min-height: 78px; }
  .brand-logo-img { height: 58px; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 14px 20px 22px;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list a { padding: 13px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-list a[aria-current="page"]::after { display: none; }
  .nav-actions .btn span { display: none; }
  .nav-actions .btn { padding: 11px 13px; }
  .hero-inner, .split, .contact-layout { grid-template-columns: 1fr; }
  .hero-panel { order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .call-fab { display: inline-flex; bottom: 86px; }
}

@media (max-width: 600px) {
  html { font-size: 100%; }
  .nav-inner { min-height: 68px; }
  .brand-logo-img { height: 50px; }
  .svc-grid, .work-grid, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-stat:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(3, auto); gap: 20px; }
  .service-block { grid-template-columns: 1fr; }
  .service-block .feature-icon { width: 50px; height: 50px; }
  .map-wrap iframe { height: 320px; }
  .section { padding-block: 52px; }
}

/* ---------- Hero quick-quote form ---------- */
.quote-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 32px);
}
.quote-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.quote-card-head h2 { font-size: 1.7rem; margin: 0; }
.rating-inline { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: .88rem; white-space: nowrap; }
.rating-inline .stars svg { width: 14px; height: 14px; }
.form-grid--tight { gap: 13px; }
.form-grid--tight .form-field textarea { min-height: 84px; }
.quote-card .btn { width: 100%; margin-top: 4px; }
.quote-card .form-note { font-size: .82rem; margin-top: 12px; }

/* ---------- Proof strip ---------- */
.proof-strip { background: var(--bg-3); border-bottom: 1px solid var(--line); }
.proof-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px clamp(16px, 2.5vw, 30px);
  border-right: 1px solid var(--line);
}
.proof-item:last-child { border-right: 0; }
.proof-item svg { width: 24px; height: 24px; color: var(--yellow); flex: none; margin-top: 2px; }
.proof-item b { display: block; font-size: 1rem; }
.proof-item span { color: var(--muted); font-size: .9rem; }

/* ---------- Gallery placeholder tag ---------- */
.work-card .placeholder-tag { display: none; }
.work-card.is-placeholder .placeholder-tag { display: inline-flex; }

@media (max-width: 880px) {
  .proof-inner { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
}

/* ---------- Photo strip ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.photo-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease;
}
.photo-strip img:hover { transform: scale(1.02); border-color: rgba(245, 229, 0, .45); }

/* ---------- WhatsApp floating button ---------- */
.wa-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 95;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .45);
  transition: transform .2s ease, background .2s ease;
  animation: wa-float 3.5s ease-in-out infinite;
}
.wa-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  opacity: .5;
  z-index: -1;
  animation: wa-pulse 2.2s ease-out infinite;
}
.wa-fab:hover { transform: scale(1.1); background: #2e9449; }
.wa-fab svg { width: 30px; height: 30px; fill: #fff; }

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes wa-float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---------- Clean & Light context fixes ---------- */
/* Topbar + header stay dark so the logo and yellow accents keep their impact */
.topbar { background: #101214; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.topbar-item { color: #C9CED2; }
.topbar a { color: #E9EBEC; }
.topbar a:hover { color: var(--yellow); }

/* Footer stays dark */
.site-footer { color: #AEB4B7; }
.site-footer h2 { color: #F4F4F2; }
.footer-brand p { color: #9AA1A6; }
.footer-links a { color: #AEB4B7; }
.footer-contact li { color: #AEB4B7; }
.footer-contact a { color: #E9EBEC; }
.footer-hours { color: #AEB4B7; }
.footer-hours b { color: #E9EBEC; }
.footer-rating { color: #AEB4B7; }
.footer-bottom { border-top-color: rgba(255, 255, 255, .08); }
.footer-bottom-inner { color: #8F969B; }

/* Home hero sits on a dark photo - keep its text light */
.hero { color: #fff; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--yellow); }
.hero .eyebrow { color: var(--yellow); }
.hero .lead, .hero-note { color: #C9CED2; }
.hero .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .55); }
.hero .btn--ghost:hover { background: #fff; border-color: #fff; color: #17191B; }

/* Subpage heroes are now light - turn inline yellow accent words into
   charcoal text with a brand-yellow highlighter swipe */
.page-hero h1 span[style] {
  color: var(--text) !important;
  background: linear-gradient(180deg, transparent 58%, var(--yellow) 58%);
  padding: 0 .1em;
  border-radius: 5px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ---------- Dark/light mix fixes ---------- */
/* Header links must stay light on the black bar */
.site-header { border-bottom-color: rgba(255, 255, 255, .09); }
.nav-list a { color: #E9EBEC; }
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--yellow); }

/* Hero quick-quote form becomes a dark glass card (dark-on-dark hero) */
.hero .quote-card {
  background: rgba(20, 22, 25, .88);
  border: 1px solid rgba(255, 255, 255, .14);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color-scheme: dark;
}
.hero .quote-card-head h2 { color: #fff; }
.hero .rating-inline { color: #AEB4B7; }
.hero .rating-inline .stars { color: var(--yellow); }
.hero .form-field label { color: #F4F4F2; }
.hero .form-field label span { color: var(--yellow); }
.hero .form-field input,
.hero .form-field select,
.hero .form-field textarea {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
}
.hero .form-field input::placeholder,
.hero .form-field textarea::placeholder { color: #8F969C; }
.hero .form-field input:focus,
.hero .form-field select:focus,
.hero .form-field textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245, 229, 0, .25);
}
.hero .form-note { color: #9AA1A6; }
.az-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:12px;margin-top:8px}
.az-grid a{display:flex;align-items:center;gap:10px;padding:14px 18px;background:var(--bg-3);border:1px solid var(--line);border-radius:12px;font-weight:600;color:var(--text);text-decoration:none;transition:border-color .2s,box-shadow .2s,transform .2s}
.az-grid a span{color:#8F8500;font-weight:700}
.az-grid a:hover{border-color:var(--yellow);box-shadow:var(--shadow);transform:translateY(-2px)}
/* ---- Services nav dropdown ---- */
.has-drop { position: relative; }
.drop-row { display: flex; align-items: center; }
.drop-btn { display: none; }
.drop {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  min-width: 500px; padding: 10px; display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr)); gap: 2px;
  background: #0B0C0E; border: 1px solid #26282B; border-radius: 14px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .45);
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.drop a {
  display: block; padding: 10px 14px; border-radius: 8px;
  color: #E9EBEC; font-weight: 600; font-size: .95rem; border-bottom: none !important;
}
.drop a::after { display: none; }
.drop a:hover { background: #15171A; color: var(--yellow); }
.drop .drop-all {
  grid-column: 1 / -1; margin-top: 6px; padding-top: 12px;
  border-top: 1px solid #26282B; color: var(--yellow) !important;
}
.drop .drop-all:hover { background: transparent; filter: brightness(1.15); }
.has-drop:hover .drop, .has-drop:focus-within .drop {
  opacity: 1; visibility: visible; transform: translate(-50%, 4px);
}
@media (min-width: 881px) {
  .drop-row > a::after {
    content: ""; width: 7px; height: 7px; flex: none;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-3px); margin-left: 7px;
  }
}
@media (max-width: 880px) {
  .drop-row { justify-content: space-between; }
  .drop-row > a { flex: 1; }
  .drop-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; margin-right: 4px; padding: 0;
    background: none; border: none; color: #fff; cursor: pointer;
  }
  .drop-btn svg { width: 20px; height: 20px; transition: transform .2s ease; }
  .has-drop.open .drop-btn svg { transform: rotate(180deg); }
  .has-drop.open .drop-row > a { color: var(--yellow); }
  .drop {
    position: static; transform: none; min-width: 0; padding: 2px 0 8px;
    display: none; grid-template-columns: 1fr; gap: 0;
    background: transparent; border: none; box-shadow: none; opacity: 1; visibility: visible;
  }
  .has-drop.open .drop { display: grid; }
  .drop a { font-size: 1rem; padding: 11px 12px 11px 30px; border-radius: 0; }
  .drop a:hover { background: transparent; }
  .drop .drop-all { margin-top: 4px; padding-top: 11px; }
}
