/* =====================================================
   K. Smithurst Building Contractors — shared stylesheet
   Used by services.html, projects.html, about.html, contact.html
   ===================================================== */

:root {
  --red: #E63329;
  --red-dark: #b8261d;
  --navy: #1E2D6B;
  --navy-dark: #141f4d;
  --navy-deep: #0d1638;
  --cream: #f7f4ee;
  --paper: #ffffff;
  --ink: #14161c;
  --ink-soft: #4a4f5a;
  --rule: #e6e1d7;
  --whatsapp: #25D366;
  --shadow-sm: 0 1px 2px rgba(20,22,28,0.06), 0 1px 3px rgba(20,22,28,0.08);
  --shadow-md: 0 4px 12px rgba(20,22,28,0.08), 0 2px 4px rgba(20,22,28,0.06);
  --shadow-lg: 0 20px 40px -12px rgba(20,22,28,0.18), 0 8px 16px -8px rgba(20,22,28,0.08);
  --max: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* --- Display typography --- */
.display {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

/* --- Utility bar --- */
.utility-bar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.utility-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.utility-left { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.utility-item { display: inline-flex; align-items: center; gap: 8px; }
.utility-item svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; }
.utility-cta {
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.utility-cta:hover { color: var(--red); }

/* --- Nav --- */
.navbar {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 56px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}
.call-btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.call-btn svg { width: 16px; height: 16px; }

.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.mobile-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--rule);
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: inline-flex; }
  .call-btn .call-btn-label { display: none; }
  .call-btn { padding: 12px 14px; }
}

/* --- Page banner (sub-pages) --- */
.page-banner {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: brightness(0.85);
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(13,22,56,0.74) 0%, rgba(13,22,56,0.56) 45%, rgba(13,22,56,0.36) 100%);
}
.page-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px;
  width: 100%;
}
.page-banner .eyebrow { color: #ff8a82; }
.page-banner h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 14px 0 18px;
}
.page-banner h1 .accent { color: var(--red); }
.page-banner p {
  font-size: clamp(16px, 1.3vw, 18px);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  line-height: 1.6;
}
.page-banner .crumbs {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 24px;
}
.page-banner .crumbs a:hover { color: var(--red); }
.page-banner .crumbs svg { width: 10px; height: 10px; opacity: 0.6; }

/* --- Buttons (shared) --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; }

/* --- Section base --- */
section { padding: 88px 0; }
.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  color: var(--navy);
  margin: 12px 0 16px;
  letter-spacing: 0.01em;
}
.section-head h2 .accent { color: var(--red); }
.section-head p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 600px;
  line-height: 1.65;
}

/* --- Footer --- */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { background: #fff; padding: 14px 18px; border-radius: 4px; display: inline-block; margin-bottom: 20px; }
.footer-logo img { height: 42px; width: auto; }
.footer-col h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  font-size: 14px;
}
.footer-col a:hover { color: var(--red); }
.footer-col p { line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--red); }
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* --- WhatsApp float --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s;
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 32px; height: 32px; color: #fff; }
@keyframes pulse {
  0%   { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.6); }
  70%  { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* --- Reveal animations --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* --- Service detail blocks (services.html) --- */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
}
.svc-block:last-child { border-bottom: none; }
.svc-block.reverse .svc-text { order: 2; }
.svc-block .svc-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}
.svc-block h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 8px 0 18px;
}
.svc-block h3 .accent { color: var(--red); }
.svc-block .svc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  color: var(--red);
  letter-spacing: 0.2em;
  margin-bottom: 4px;
}
.svc-block p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin-bottom: 18px; }
.svc-block ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 24px;
}
.svc-block li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.svc-block li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}
@media (max-width: 900px) {
  .svc-block { grid-template-columns: 1fr; gap: 28px; padding: 48px 0; }
  .svc-block.reverse .svc-text { order: 0; }
  .svc-block ul { grid-template-columns: 1fr; }
}

/* --- Projects gallery (projects.html) --- */
.gallery-page { background: var(--navy-deep); color: #fff; }
.gallery-page .section-head h2 { color: #fff; }
.gallery-page .section-head p { color: rgba(255,255,255,0.75); }
.gallery-page .eyebrow { color: #ff8a82; }

.proj-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.proj-tab {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.proj-tab:hover { background: rgba(255,255,255,0.12); color: #fff; }
.proj-tab.active { background: var(--red); color: #fff; border-color: var(--red); }

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proj-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #1a2756;
  aspect-ratio: 4 / 3;
}
.proj-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.proj-item:hover img { transform: scale(1.06); }
.proj-item .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 22px 18px;
  background: linear-gradient(0deg, rgba(13,22,56,0.95) 0%, rgba(13,22,56,0) 100%);
}
.proj-item .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.proj-item .title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: #fff;
}
.proj-item .loc {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
@media (max-width: 900px) { .proj-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .proj-grid { grid-template-columns: 1fr; } }

/* --- About / Why us (about.html) --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-intro .lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.about-intro .stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--cream);
  border-radius: 6px;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.about-intro .stat-cell {
  padding: 28px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.about-intro .stat-cell:nth-child(2n) { border-right: none; }
.about-intro .stat-cell:nth-last-child(-n+2) { border-bottom: none; }
.about-intro .stat-cell .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 1;
  color: var(--red);
  letter-spacing: 0.01em;
}
.about-intro .stat-cell .num small { font-size: 28px; vertical-align: super; margin-left: 2px; }
.about-intro .stat-cell .label {
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-top: 6px;
}
@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; gap: 32px; }
}

.why { background: var(--cream); }
.why-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.why-left { position: sticky; top: 120px; }
.why-right { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; }
.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--red);
  line-height: 1;
  padding-top: 4px;
}
.why-item h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.why-item p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }
@media (max-width: 900px) {
  .why-wrap { grid-template-columns: 1fr; gap: 32px; }
  .why-left { position: static; }
}

/* --- Reviews — slider layout below --- */
.review-card {
  background: var(--paper);
  border-radius: 6px;
  padding: 36px;
  border: 1px solid var(--rule);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.review-card .quote-mark {
  position: absolute;
  top: 22px;
  right: 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: var(--red);
  opacity: 0.18;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.review-stars svg { width: 18px; height: 18px; color: #f5a623; }
.review-card blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
}
.review-attr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.review-name { font-weight: 700; color: var(--navy); font-size: 15px; }
.review-loc { font-size: 13px; color: var(--ink-soft); }
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
}
.review-source svg { width: 14px; height: 14px; color: #1877F2; }


/* --- Contact (contact.html) --- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  color: var(--navy);
  line-height: 0.95;
  margin: 12px 0 20px;
  letter-spacing: 0.01em;
}
.contact-info h2 .accent { color: var(--red); }
.contact-info > p { font-size: 16px; color: var(--ink-soft); margin-bottom: 36px; line-height: 1.65; }
.contact-detail-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: #fff;
  border-radius: 4px;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-text .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.contact-detail-text a, .contact-detail-text span {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.contact-detail-text a:hover { color: var(--red); }

.contact-form {
  background: var(--cream);
  padding: 44px;
  border-radius: 6px;
  border: 1px solid var(--rule);
}
.contact-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.contact-form .form-sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 28px; }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,45,107,0.12);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-grid-2 { grid-template-columns: 1fr; } }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  background: var(--red);
  color: #fff;
  padding: 16px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  margin-top: 8px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}
.form-submit:hover { background: var(--red-dark); transform: translateY(-1px); }
.form-submit svg { width: 18px; height: 18px; }
.form-note { font-size: 12px; color: var(--ink-soft); margin-top: 14px; text-align: center; line-height: 1.5; }
.form-result { font-size: 14px; line-height: 1.5; margin: 14px 0 0; padding: 0; transition: padding 0.2s, background 0.2s; }
.form-result.success { padding: 14px 16px; background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.45); color: #186e3a; border-radius: 4px; text-align: center; }
.form-result.error { padding: 14px 16px; background: rgba(230,51,41,0.10); border: 1px solid rgba(230,51,41,0.45); color: var(--red-dark); border-radius: 4px; text-align: center; }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 500px) { .contact-form { padding: 28px; } }

/* --- Coverage map block (contact.html) --- */
.coverage {
  background: var(--cream);
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.coverage h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  color: var(--navy);
  line-height: 0.95;
  margin: 12px 0 20px;
}
.coverage h2 .accent { color: var(--red); }
.coverage .lead { font-size: 16px; color: var(--ink-soft); margin-bottom: 24px; line-height: 1.65; }
.coverage-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  list-style: none;
}
.coverage-areas li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.8;
}
.coverage-areas li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
}
.coverage-map {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--paper);
  border: 1px solid var(--rule);
}
.coverage-map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 900px) { .coverage-grid { grid-template-columns: 1fr; gap: 32px; } }

/* --- Final CTA strip (sub-pages) --- */
.cta-strip {
  background: var(--navy-deep);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.cta-strip h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.cta-strip h2 .accent { color: var(--red); }
.cta-strip p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.cta-strip .actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* --- Trust strip (under banner on services / about) --- */
.trust-strip {
  background: var(--cream);
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 24px;
  border-left: 3px solid var(--red);
}
.trust-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.trust-label { font-size: 14px; font-weight: 500; color: var(--ink-soft); line-height: 1.4; }
@media (max-width: 800px) { .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr; } }

/* --- Process timeline (about.html) --- */
.process { background: var(--paper); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  position: relative;
  padding: 28px 24px 28px 28px;
  background: var(--cream);
  border-radius: 6px;
  border: 1px solid var(--rule);
  border-left: 4px solid var(--red);
}
.process-step .step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 14px;
}
.process-step h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.process-step p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .process-grid { grid-template-columns: 1fr; } }


/* --- FAQ --- */
.faq { background: var(--paper); }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 880px; }
.faq-item {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.15;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  width: 18px; height: 18px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item summary:hover { color: var(--red); }
.faq-item p {
  padding: 0 24px 24px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}

/* --- Reviews slider --- */
.reviews-slider { position: relative; }
.reviews-grid {
  display: grid !important;
  grid-template-columns: none !important;
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - 14px);
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 4px 12px;
}
.reviews-grid::-webkit-scrollbar { display: none; }
.review-card { scroll-snap-align: start; }
.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e6e1d7;
  color: #1E2D6B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(20,22,28,0.06), 0 1px 3px rgba(20,22,28,0.08);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, opacity 0.2s;
}
.slider-btn:hover:not(:disabled) {
  background: #E63329;
  color: #ffffff;
  border-color: #E63329;
  transform: translateY(-1px);
}
.slider-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.slider-btn svg { width: 18px; height: 18px; }
.slider-controls.hidden { display: none; }
@media (max-width: 800px) {
  .reviews-grid { grid-auto-columns: 100%; }
}

/* =====================================================
   MOBILE POLISH — narrow viewport tuning
   ===================================================== */
@media (max-width: 640px) {
  /* Utility bar — collapse to phone only */
  .utility-bar { padding: 7px 0; font-size: 12px; }
  .utility-bar-inner { flex-wrap: nowrap; justify-content: space-between; gap: 10px; padding: 0 16px; }
  .utility-left .utility-item:not(#hours-display) { display: none; }
  #hours-display { display: none !important; }
  .utility-cta { font-size: 12px; gap: 6px; white-space: nowrap; }
  .utility-cta svg { width: 12px; height: 12px; }

  /* Section padding */
  section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: 36px; }
  .section-head p { font-size: 15px; }

  /* Container padding */
  .container { padding: 0 20px; }

  /* Navbar */
  .nav-inner { padding: 12px 20px; }
  .nav-logo img { height: 44px; }
  .call-btn { padding: 10px 12px; }
  .call-btn svg { width: 18px; height: 18px; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-content { padding: 56px 20px 64px; gap: 32px; grid-template-columns: 1fr; }
  .hero h1 { font-size: 48px; line-height: 0.95; margin-bottom: 22px; }
  .hero p.lede { font-size: 15.5px; margin-bottom: 28px; line-height: 1.55; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; }
  .hero-ctas .btn { justify-content: center; width: 100%; padding: 14px 20px; font-size: 14px; }
  .hero-eyebrow { font-size: 10px; padding: 6px 12px; letter-spacing: 0.12em; margin-bottom: 20px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat { padding: 18px 14px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero-stat:nth-child(2n) { border-right: none; }
  .hero-stat:nth-last-child(-n+2) { border-bottom: none; }
  .hero-stat .num { font-size: 34px; }
  .hero-stat .num small { font-size: 18px; }
  .hero-stat .label { font-size: 11px; letter-spacing: 0.1em; margin-top: 4px; }

  /* Page banners (sub-pages) */
  .page-banner { min-height: 220px; }
  .page-banner-inner { padding: 52px 20px; }
  .page-banner h1 { font-size: 44px; line-height: 0.95; margin: 12px 0 14px; }
  .page-banner p { font-size: 14.5px; line-height: 1.5; }
  .page-banner .crumbs { font-size: 11px; margin-top: 18px; gap: 6px; }

  /* Trust strip */
  .trust { padding: 32px 0 !important; }
  .trust-strip { padding: 32px 0 !important; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust-item { padding-left: 16px; gap: 6px; border-left-width: 2px; }
  .trust-item .trust-num, .trust-num { font-size: 32px; }
  .trust-item .trust-label, .trust-label { font-size: 12px; line-height: 1.35; }

  /* Services grid */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 26px 22px; }
  .service-card h3 { font-size: 24px; }
  .service-card p { font-size: 14px; }

  /* Service detail blocks */
  .svc-block { padding: 36px 0; gap: 24px; grid-template-columns: 1fr; }
  .svc-block.reverse .svc-text { order: 0; }
  .svc-block h3 { font-size: 30px; margin: 6px 0 14px; }
  .svc-block p { font-size: 15px; line-height: 1.6; }
  .svc-block ul { grid-template-columns: 1fr; gap: 6px 16px; margin-bottom: 20px; }
  .svc-block li { font-size: 13.5px; padding-left: 18px; }
  .svc-block .btn { width: 100%; justify-content: center; }

  /* Gallery (home + projects) */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 12px; }
  .gallery-item .caption { padding: 16px 16px 14px; }
  .gallery-item .caption .title { font-size: 16px; }
  .gallery-item.tile-feature .caption .title { font-size: 18px; }
  .proj-grid { grid-template-columns: 1fr; gap: 14px; }
  .proj-tabs { gap: 6px; margin-bottom: 22px; }
  .proj-tab { padding: 8px 12px; font-size: 11px; letter-spacing: 0.1em; }
  .proj-item .title { font-size: 17px; }
  .proj-item .caption { padding: 14px 16px 12px; }

  /* Why us */
  .why-wrap { grid-template-columns: 1fr; gap: 24px; }
  .why-left { position: static; }
  .why-item { grid-template-columns: 44px 1fr; gap: 14px; padding: 20px 0; }
  .why-num { font-size: 28px; padding-top: 2px; }
  .why-item h4 { font-size: 20px; margin-bottom: 6px; }
  .why-item p { font-size: 14px; line-height: 1.55; }

  /* Process steps */
  .process-grid { grid-template-columns: 1fr; gap: 12px; }
  .process-step { padding: 20px 18px; }
  .process-step h4 { font-size: 19px; }
  .process-step p { font-size: 13.5px; }

  /* Reviews slider — tighter cards, peek of next */
  .reviews-grid { grid-auto-columns: 86vw !important; gap: 14px; padding: 4px 4px 14px; }
  .review-card { padding: 22px 22px 22px; border-radius: 6px; }
  .review-card blockquote { font-size: 14.5px; line-height: 1.6; margin-bottom: 18px; }
  .review-card .quote-mark { font-size: 56px; top: 12px; right: 18px; }
  .review-stars { gap: 2px; margin-bottom: 14px; }
  .review-stars svg { width: 15px; height: 15px; }
  .review-attr { padding-top: 14px; gap: 8px; flex-wrap: wrap; align-items: flex-start; }
  .review-name { font-size: 14px; }
  .review-loc { font-size: 12px; }
  .review-source { font-size: 11px; }
  .slider-controls { justify-content: center; gap: 12px; margin-top: 18px; }
  .slider-btn { width: 44px; height: 44px; }
  .slider-btn svg { width: 16px; height: 16px; }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr; gap: 28px; }
  .contact-info h2 { font-size: 36px; margin: 10px 0 16px; }
  .contact-info > p { font-size: 15px; margin-bottom: 24px; }
  .contact-detail { padding: 14px 0; gap: 14px; }
  .contact-detail-icon { width: 38px; height: 38px; }
  .contact-detail-icon svg { width: 16px; height: 16px; }
  .contact-detail-text .label { font-size: 10px; }
  .contact-detail-text a, .contact-detail-text span { font-size: 14.5px; }

  /* Contact form */
  .contact-form { padding: 22px; }
  .contact-form h3 { font-size: 26px; }
  .contact-form .form-sub { font-size: 13px; margin-bottom: 22px; }
  .form-row { margin-bottom: 14px; }
  .form-row label { font-size: 11px; margin-bottom: 6px; }
  .form-row input, .form-row textarea, .form-row select { padding: 12px 14px; font-size: 14.5px; }
  .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
  .form-submit { padding: 14px 20px; font-size: 14px; }
  .form-note { font-size: 11.5px; margin-top: 12px; }

  /* Coverage / map */
  .coverage-grid { grid-template-columns: 1fr; gap: 28px; }
  .coverage h2 { font-size: 34px; }
  .coverage-areas { grid-template-columns: 1fr 1fr; font-size: 13px; }

  /* CTA strip */
  .cta-strip { padding: 44px 0; }
  .cta-strip h2 { font-size: 32px; }
  .cta-strip p { font-size: 14.5px; margin-bottom: 24px; }
  .cta-strip .actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-strip .actions .btn { justify-content: center; width: 100%; padding: 14px 20px; font-size: 14px; }

  /* Final CTA (home) */
  .final-cta { padding: 64px 0; }
  .final-cta h2 { font-size: 40px; margin-bottom: 18px; }
  .final-cta p { font-size: 14.5px; margin-bottom: 28px; }
  .final-cta-actions { flex-direction: column; width: 100%; gap: 10px; }
  .final-cta-actions .btn { justify-content: center; width: 100%; padding: 14px 20px; font-size: 14px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-col h5 { font-size: 16px; margin-bottom: 14px; }
  .footer-col a, .footer-col p { font-size: 13.5px; }
  .footer-logo { padding: 10px 14px; }
  .footer-logo img { height: 36px; }
  .footer-bottom { padding: 18px 0; flex-direction: column; align-items: flex-start; gap: 8px; font-size: 12px; }

  /* FAQ */
  .faq { padding: 56px 0 !important; }
  .faq-item summary { padding: 16px 18px; font-size: 17px; }
  .faq-item p { padding: 14px 18px 18px; font-size: 14px; }
  .faq-section { margin-bottom: 32px; }
  .faq-section h3 { font-size: 24px; margin-bottom: 14px; padding-bottom: 8px; }
  .faq-jump { padding: 14px 14px; gap: 6px; margin: 18px 0 4px; }
  .faq-jump a { padding: 6px 10px; font-size: 11px; }

  /* WhatsApp float */
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 28px; height: 28px; }

  /* About intro */
  .about-intro { grid-template-columns: 1fr; gap: 28px; }
  .about-intro .lead { font-size: 16px; }
  .about-intro .stat-cell { padding: 20px 20px; }
  .about-intro .stat-cell .num { font-size: 42px; }
  .about-intro .stat-cell .num small { font-size: 20px; }
  .about-intro .stat-cell .label { font-size: 11px; }
}

/* Narrower phones — extra tightening */
@media (max-width: 380px) {
  .hero h1 { font-size: 42px; }
  .page-banner h1 { font-size: 38px; }
  .section-head h2 { font-size: 32px; }
  .reviews-grid { grid-auto-columns: 90vw !important; }
  .review-card { padding: 20px; }
  .nav-logo img { height: 38px; }
}

/* --- Before/After slider --- */
.ba-section { background: var(--cream, #f7f4ee); padding: 88px 0; }
.ba-section .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.ba-wrap { display: grid; grid-template-columns: 1fr; gap: 28px; max-width: 1100px; margin: 0 auto; }
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1495 / 1052;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgba(20,22,28,0.22), 0 8px 16px -8px rgba(20,22,28,0.10);
  background: #14161c;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y; /* allow vertical page scroll, capture horizontal drag */
  cursor: ew-resize;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.ba-img-after { z-index: 1; }
.ba-mask-before {
  position: absolute;
  inset: 0;
  width: 50%;
  z-index: 2;
  overflow: hidden;
  will-change: width;
}
.ba-mask-before .ba-img {
  width: 100vw; /* will be overridden via JS to slider width */
  max-width: none;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(20,22,28,0.15), 0 8px 24px rgba(0,0,0,0.35);
  transform: translateX(-50%);
  will-change: left;
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red, #E63329);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35), 0 0 0 4px rgba(255,255,255,0.85);
  pointer-events: none;
}
.ba-knob svg { width: 18px; height: 18px; display: block; }
.ba-tag {
  position: absolute;
  top: 18px;
  z-index: 3;
  padding: 6px 12px;
  background: rgba(13, 22, 56, 0.85);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.ba-tag-before { left: 18px; }
.ba-tag-after { right: 18px; }
.ba-caption {
  text-align: center;
  color: var(--ink-soft, #4a4f5a);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 14px;
}
.ba-caption strong { color: var(--navy, #1E2D6B); font-weight: 700; }
.ba-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  color: var(--red, #E63329);
}

@media (max-width: 640px) {
  .ba-section { padding: 48px 0; }
  .ba-section .container { padding: 0 16px; }
  .ba-knob { width: 46px; height: 46px; }
  .ba-knob svg { width: 16px; height: 16px; }
  .ba-tag { font-size: 11px; padding: 4px 10px; top: 12px; }
  .ba-tag-before { left: 12px; }
  .ba-tag-after { right: 12px; }
  .ba-caption { font-size: 13px; }
  .ba-hint { display: none; }
}

/* --- Accreditation strip --- */
.acc-strip {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule, #e6e1d7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 40px;
}
.acc-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft, #4a4f5a);
  white-space: nowrap;
}
.acc-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 40px;
}
.acc-logo {
  display: inline-flex;
  align-items: center;
  height: 56px;
  transition: opacity 0.2s, transform 0.2s;
}
.acc-logo img {
  max-height: 56px;
  width: auto;
  display: block;
  filter: saturate(0.85);
}
.acc-logo:hover img { filter: saturate(1); transform: translateY(-1px); }

@media (max-width: 640px) {
  .acc-strip { margin-top: 24px; padding-top: 22px; gap: 18px 24px; }
  .acc-label { font-size: 10px; letter-spacing: 0.14em; }
  .acc-logos { gap: 18px 24px; }
  .acc-logo, .acc-logo img { max-height: 44px; height: 44px; }
}

/* --- Footer accreditation strip --- */
.footer-acc {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-acc-label {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-acc-logos {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-acc-logo {
  background: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  height: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.footer-acc-logo:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.18); }
.footer-acc-logo img { height: 34px; width: auto; display: block; }

@media (max-width: 640px) {
  .footer-acc { padding: 22px 0; gap: 18px; flex-direction: column; }
  .footer-acc-logos { gap: 10px; }
  .footer-acc-logo { padding: 6px 10px; height: 42px; }
  .footer-acc-logo img { height: 28px; }
}

