/* ==========================================================================
   W.M Carpet Cleaning Services — shared stylesheet
   Brand primary: #7F1734 (wine). Section tints derived from #00ACDD (cyan).
   Fonts: Bricolage Grotesque (headings), Figtree (body).
   ========================================================================== */

:root {
  --brand: #7F1734;
  --brand-dark: #661029;
  --brand-darker: #5A0E24;
  --accent: #00ACDD;
  --accent-soft: #7FD5EE;
  --ink: #191225;
  --body: #4A4657;
  --muted: #5A5666;
  --faint: #736E80;
  --blush: #F1FBFE;
  --blush-2: #DFF4FB;
  --line: #E4EEF2;
  --maxw: 1180px;
  --gutter: 24px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  font-family: 'Figtree', system-ui, -apple-system, sans-serif;
  color: var(--body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
img { max-width: 100%; }

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Figtree', sans-serif;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}

a { color: var(--brand); }
a:hover { color: var(--brand-dark); }

.wrap { max-width: var(--maxw); margin: 0 auto; }

/* ---------- Skip link (accessibility) ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: 12px 18px;
  border-radius: 0 0 10px 0; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; color: #fff; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid #E4EEF2;
  box-shadow: 0 1px 0 rgba(25,18,37,0.02), 0 6px 20px -18px rgba(25,18,37,0.3);
  padding: 0 var(--gutter);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0;
  height: 84px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.brand-lockup { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-badge {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: radial-gradient(circle at 50% 28%, #9E2246, #5A0E24);
  box-shadow: 0 4px 13px rgba(127,23,52,0.32); flex-shrink: 0;
}
.brand-badge::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.32);
}
.brand-badge span {
  font-family: Georgia, 'Times New Roman', serif; font-weight: 700;
  font-size: 18px; color: #fff; letter-spacing: 0.04em; line-height: 1;
}
.brand-name {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700;
  font-size: 17px; color: var(--ink); letter-spacing: -0.015em; white-space: nowrap;
}

.desktop-nav { display: flex; align-items: center; gap: clamp(20px,2vw,34px); flex-wrap: nowrap; }
.desktop-nav a.navlink {
  text-decoration: none; color: #3A3646; font-weight: 500; font-size: 16px;
  padding: 6px 0; border-bottom: 2px solid transparent; white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.desktop-nav a.navlink:hover { color: var(--brand); }
.desktop-nav a.navlink.active {
  color: var(--brand); font-weight: 600; border-bottom-color: var(--brand);
}

/* ---- Services dropdown (desktop) ---- */
.has-dropdown { position: relative; display: inline-flex; }
.dropdown-trigger {
  font-family: inherit; background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
  color: #3A3646; font-weight: 500; font-size: 16px; padding: 6px 0;
  border-bottom: 2px solid transparent; white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.dropdown-trigger:hover, .has-dropdown:hover .dropdown-trigger,
.has-dropdown:focus-within .dropdown-trigger { color: var(--brand); }
.dropdown-trigger.active { color: var(--brand); font-weight: 600; border-bottom-color: var(--brand); }
.dropdown-trigger .chev { transition: transform .18s ease; margin-top: 1px; }
.has-dropdown:hover .dropdown-trigger .chev,
.has-dropdown:focus-within .dropdown-trigger .chev,
.has-dropdown.open .dropdown-trigger .chev { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 232px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 8px; z-index: 60;
  box-shadow: 0 18px 44px -18px rgba(25,18,37,0.28), 0 4px 12px -8px rgba(25,18,37,0.16);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
/* bridge the gap so the menu doesn't close when moving the cursor down */
.dropdown-menu::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
/* little pointer */
.dropdown-menu::after {
  content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line);
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-link {
  display: block; text-decoration: none; color: #3A3646; font-weight: 500;
  font-size: 15px; padding: 11px 14px; border-radius: 9px; white-space: nowrap;
  transition: background .13s, color .13s;
}
.dropdown-link:hover { background: var(--blush); color: var(--brand); }
.dropdown-link.active { background: var(--blush-2); color: var(--brand); font-weight: 600; }

.btn-call-header {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff; font-weight: 600; font-size: 15px;
  padding: 11px 18px; border-radius: 10px; text-decoration: none;
  box-shadow: 0 2px 8px rgba(127,23,52,0.28); white-space: nowrap; margin-left: 4px;
  transition: background .15s; flex-shrink: 0;
}
.btn-call-header:hover { background: var(--brand-dark); color: #fff; }

.mobile-controls { display: none; align-items: center; gap: 12px; }
.icon-call {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px; background: var(--brand);
  color: #fff; text-decoration: none; box-shadow: 0 2px 8px rgba(127,23,52,0.28);
  transition: background .15s;
}
.icon-call:hover { background: var(--brand-dark); color: #fff; }
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px; border: 1px solid #DCEAF0;
  background: #fff; cursor: pointer; color: var(--ink);
}
.menu-toggle:hover { border-color: var(--accent); }

.mobile-panel { display: none; border-top: 1px solid #E4EEF2; background: #fff; padding: 10px 24px 18px; }
.mobile-panel.open { display: block; }
.mobile-panel a.mnav {
  display: block; padding: 13px 4px; border-bottom: 1px solid #EAF5F9;
  text-decoration: none; color: #3A3646; font-weight: 500; font-size: 16px;
}
.mobile-panel a.mnav.active { color: var(--brand); font-weight: 700; }
.mobile-panel a.mnav:hover { color: var(--brand); }
.mobile-panel .btn-call-mobile {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px; background: var(--brand); color: #fff; font-weight: 600;
  font-size: 16px; padding: 14px; border-radius: 11px; text-decoration: none;
}
.mobile-panel .btn-call-mobile:hover { background: var(--brand-dark); color: #fff; }

/* sticky mobile call bar */
.sticky-call {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  align-items: center; justify-content: center; gap: 10px;
  background: var(--brand); color: #fff; font-weight: 700; font-size: 16.5px;
  padding: 15px; text-decoration: none; box-shadow: 0 -3px 14px rgba(25,18,37,0.16);
}
.sticky-call:hover { background: var(--brand-dark); color: #fff; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .mobile-controls { display: flex; flex-shrink: 0; }
  .sticky-call { display: flex; }
  .header-inner { padding: 0; height: 72px; gap: 12px; }
  body { padding-bottom: 58px; } /* room for sticky call bar */
  /* Allow the full "W.M Carpet Cleaning Services" name to wrap so the
     hamburger and call button always stay on screen. */
  .brand-lockup { min-width: 0; }
  .brand-name {
    white-space: normal; font-size: 15px; line-height: 1.12;
    max-width: 190px;
  }
}
@media (max-width: 360px) {
  .brand-name { font-size: 14px; max-width: 150px; }
}

/* ==========================================================================
   BUTTONS (shared)
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  font-weight: 700; font-size: 16.5px; padding: 15px 24px; border-radius: 12px;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 8px 22px -8px rgba(127,23,52,0.65);
}
.btn-primary:hover { background: var(--brand-dark); color: #fff; box-shadow: 0 10px 26px -8px rgba(127,23,52,0.75); }
.btn-outline {
  background: #fff; color: var(--brand); font-weight: 600;
  border: 1.5px solid #CFE7EF;
}
.btn-outline:hover { border-color: var(--accent); color: var(--brand-dark); }
.btn-on-dark-solid { background: #fff; color: var(--brand-darker); font-weight: 700; }
.btn-on-dark-solid:hover { background: #EEDDE2; color: var(--brand-darker); }
.btn-on-dark-ghost {
  background: rgba(255,255,255,0.12); color: #fff; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-on-dark-ghost:hover { background: rgba(255,255,255,0.22); color: #fff; border-color: rgba(255,255,255,0.6); }

/* ==========================================================================
   SECTION HELPERS
   ========================================================================== */
.section { padding: clamp(56px,7vw,88px) 24px; }
.section-sm { padding: clamp(48px,6vw,76px) 24px; }
.bg-blush { background: var(--blush); }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand);
}
.lead { font-size: clamp(16px,1.6vw,18.5px); line-height: 1.6; color: var(--body); }

.hero {
  background: linear-gradient(180deg, var(--blush) 0%, #FFFFFF 82%);
  padding: clamp(48px,6vw,80px) 24px clamp(52px,6vw,84px);
}
.hero-grid {
  max-width: var(--maxw); margin: 0 auto; display: grid;
  grid-template-columns: minmax(auto, 560px) minmax(auto, 460px);
  justify-content: center;
  gap: clamp(36px,5vw,68px); align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: minmax(auto, 560px); }
}
.pill {
  display: inline-flex; align-items: center; gap: 8px; background: var(--blush-2);
  color: var(--brand); font-size: 13px; font-weight: 600; padding: 7px 14px;
  border-radius: 100px; margin-bottom: 22px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); display: inline-block; }
.hero h1 {
  font-size: clamp(34px,5vw,52px); line-height: 1.05; color: var(--ink);
  margin: 0 0 22px; letter-spacing: -0.02em;
}
.hero p { font-size: clamp(16px,1.6vw,18.5px); line-height: 1.62; color: var(--body); margin: 0 0 18px; max-width: 540px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 6px; }

.hero-media { position: relative; width: 100%; max-width: 460px; margin-inline: auto; }
.hero-media .frame {
  position: relative;
  aspect-ratio: 4/5; max-height: 560px; width: 100%;
  border-radius: 22px; overflow: hidden; background: #E4F1F6;
  box-shadow: 0 34px 66px -34px rgba(127,23,52,0.45), 0 8px 24px -16px rgba(25,18,37,0.25);
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.floating-card {
  position: absolute; left: -8px; bottom: 26px; z-index: 2; background: #fff; border-radius: 15px;
  padding: 15px 18px; box-shadow: 0 18px 38px -16px rgba(25,18,37,0.38);
  display: flex; align-items: center; gap: 12px;
}
.floating-card .ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 11px; background: var(--blush-2); color: var(--brand);
}
.floating-card strong { display: block; color: var(--ink); font-size: 16px; font-family: 'Bricolage Grotesque', sans-serif; }
.floating-card .sub { font-size: 13px; color: var(--faint); }

/* Trust strip */
.trust-strip { border-top: 1px solid #E7EEF1; border-bottom: 1px solid #E7EEF1; background: #fff; }
.trust-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 26px 24px; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 20px 28px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .ic { color: var(--brand); flex-shrink: 0; }
.trust-item span.tx { font-size: 14.5px; color: #3A3646; }
.trust-item strong { color: var(--ink); }

.section-head { max-width: 620px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(27px,3.4vw,38px); color: var(--ink); margin: 12px 0 14px; line-height: 1.1; }

/* Service cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 20px; }
.svc-card {
  text-decoration: none; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 26px; display: block;
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.svc-card:hover { box-shadow: 0 18px 40px -22px rgba(127,23,52,0.45); transform: translateY(-3px); border-color: #D3E9F0; }
.svc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px; background: var(--blush-2);
  color: var(--brand); margin-bottom: 16px;
}
.svc-card h3 { font-size: 19px; color: var(--ink); margin: 0 0 8px; }
.svc-card p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0 0 12px; }
.svc-more { color: var(--brand); font-weight: 600; font-size: 14px; }

/* Info cards (why) */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 22px; }
.info-card { background: #fff; border-radius: 16px; padding: 28px; }
.info-card h3 { font-size: 19px; color: var(--ink); margin: 0 0 10px; }
.info-card p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }
.gallery .tile { aspect-ratio: 1/1; border-radius: 14px; overflow: hidden; background: #E4F1F6; }
.gallery .tile img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Before / after showcase */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 22px; }
.ba-pair { background: #fff; border: 1px solid #EEE6EA; border-radius: 16px; overflow: hidden; box-shadow: 0 6px 24px rgba(25,18,37,.06); }
.ba-pair .shots { display: grid; grid-template-columns: 1fr 1fr; }
.ba-pair .shot { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #E4F1F6; }
.ba-pair.wide .shot { aspect-ratio: 4/3; }
.ba-pair .shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-pair .shot .lbl { position: absolute; top: 10px; left: 10px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; color: #fff; }
.ba-pair .shot.before .lbl { background: #191225; }
.ba-pair .shot.after .lbl { background: #7F1734; }
.ba-pair .cap { padding: 12px 16px; font-size: 14px; color: #4A4453; font-weight: 600; }

/* Areas grid */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 14px; }
.area-link, .area-static {
  text-decoration: none; background: #fff; border: 1px solid var(--line);
  border-radius: 13px; padding: 16px 18px; display: flex; align-items: center;
  justify-content: space-between; gap: 10px; transition: border-color .15s, box-shadow .15s;
}
.area-link:hover { border-color: var(--accent); box-shadow: 0 8px 20px -14px rgba(127,23,52,0.4); }
.area-link .nm { color: var(--ink); font-weight: 600; font-size: 15px; }
.area-static .nm { color: #3A3646; font-weight: 600; font-size: 15px; }
.tag { font-size: 12px; font-weight: 700; color: var(--brand); background: var(--blush-2); padding: 3px 9px; border-radius: 100px; }
.tag-muted { color: #67626F; background: #EBF3F6; }

/* Numbered steps */
.steps { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 16px; }
.steps li { display: flex; gap: 13px; align-items: flex-start; }
.steps .n {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--blush-2);
  color: var(--brand); display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.steps li span.tx { font-size: 15.5px; line-height: 1.55; color: var(--body); }
.steps strong { color: var(--ink); }

/* Split (quote) */
.split {
  max-width: var(--maxw); margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: clamp(30px,4vw,56px); align-items: center;
}
.split.align-start { align-items: start; }
.split h2 { font-size: clamp(27px,3.4vw,38px); color: var(--ink); margin: 12px 0 18px; line-height: 1.1; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--brand), var(--brand-darker)); padding: clamp(48px,6vw,72px) 24px; }
.cta-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.cta-band h2 { font-size: clamp(26px,3.4vw,36px); color: #fff; margin: 0 0 14px; line-height: 1.12; }
.cta-band p { font-size: 17px; line-height: 1.6; color: #E6D3D9; margin: 0 0 28px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }

/* Breadcrumb */
.breadcrumb { background: var(--blush); }
.breadcrumb .inner { max-width: var(--maxw); margin: 0 auto; padding: 12px 24px; font-size: 13px; color: #8CA6B0; }
.breadcrumb a { color: #8CA6B0; text-decoration: none; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { opacity: .5; margin: 0 4px; }
.breadcrumb .current { color: var(--brand); font-weight: 600; }

/* Prose blocks */
.prose { max-width: 820px; margin: 0 auto; }
.prose.narrow { max-width: 760px; }
.prose h2 { font-size: clamp(24px,3vw,32px); color: var(--ink); margin: 0 0 16px; line-height: 1.1; }
.prose h2 + p { margin-top: 0; }
.prose p { font-size: 17px; line-height: 1.7; color: #3F3B4B; margin: 0 0 16px; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--brand); font-weight: 600; text-decoration: none; }
.prose a:hover { text-decoration: underline; }

/* Check list card */
.checklist-card { background: #fff; border-radius: 16px; padding: 28px; }
.checklist-card h3 { font-size: 18px; color: var(--ink); margin: 0 0 18px; }
.checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; }
.checklist .ic { color: var(--brand); flex-shrink: 0; margin-top: 1px; }
.checklist span.tx { font-size: 15px; line-height: 1.5; color: #3A3646; }
.checklist strong { color: var(--ink); }

/* Placeholder callouts (dev) */
.placeholder {
  border: 1.5px dashed #AEDCEB; background: #F1FBFE; border-radius: 16px; padding: 26px;
  display: flex; flex-direction: column; justify-content: center;
}
.placeholder .badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #7F1734; margin-bottom: 8px;
}
.placeholder h3 { font-size: 18px; color: var(--ink); margin: 0 0 8px; }
.placeholder p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.placeholder-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details { background: #fff; border: 1px solid #E4EEF2; border-radius: 13px; padding: 4px 20px; }
.faq summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-size: 16.5px;
  font-weight: 600; color: var(--ink); position: relative; padding-right: 28px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--brand); font-weight: 400; line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0 0 16px; }

/* Contact cards */
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  text-decoration: none; background: #fff; border: 1px solid #E4EEF2; border-radius: 16px;
  padding: 22px; display: flex; align-items: center; gap: 16px; transition: border-color .15s;
}
.contact-card:hover { border-color: var(--accent); }
.contact-card.primary { background: var(--brand); border: none; box-shadow: 0 12px 30px -16px rgba(127,23,52,0.6); }
.contact-card.primary:hover { background: var(--brand-dark); }
.contact-card .ic {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 13px; background: var(--blush-2);
  color: var(--brand); display: inline-flex; align-items: center; justify-content: center;
}
.contact-card.primary .ic { background: rgba(255,255,255,0.16); color: #fff; }
.contact-card .k { display: block; color: var(--faint); font-size: 13px; font-weight: 600; }
.contact-card.primary .k { color: #E6D3D9; }
.contact-card .v { display: block; color: var(--ink); font-size: 16px; font-weight: 600; word-break: break-word; }
.contact-card.primary .v { color: #fff; font-size: 24px; font-weight: 700; font-family: 'Bricolage Grotesque', sans-serif; letter-spacing: -0.01em; }
.contact-card .s { display: block; font-size: 13px; color: var(--faint); margin-top: 2px; }
.contact-card.primary .s { color: #BFE3F1; }

.map-frame { border-radius: 18px; overflow: hidden; border: 1px solid #E4EEF2; box-shadow: 0 14px 40px -24px rgba(127,23,52,0.4); }
.map-frame iframe { border: 0; display: block; width: 100%; height: 380px; }
.areas-map-layout { display: grid; grid-template-columns: 1fr 420px; gap: 32px; align-items: start; max-width: var(--maxw); margin: 0 auto; }
.areas-map-layout > .map-frame { margin-top: 0; }
@media (max-width: 900px) { .areas-map-layout { grid-template-columns: 1fr; } }

/* ==========================================================================
   QUOTE FORM
   ========================================================================== */
.quote-form {
  font-family: 'Figtree', system-ui, sans-serif; background: #fff;
  border: 1px solid #E4EEF2; border-radius: 18px; padding: 26px;
  box-shadow: 0 14px 40px -20px rgba(127,23,52,0.35);
}
.quote-form h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; color: var(--ink); margin: 0 0 6px; }
.quote-form .sub { font-size: 14px; color: var(--faint); margin: 0 0 20px; line-height: 1.5; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: #3A3646; margin-top: 14px; }
.field:first-child, .field-row .field { margin-top: 0; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; padding: 11px 13px; border: 1px solid #D6E9F0;
  border-radius: 10px; background: #FCFBFE; color: var(--ink); outline: none;
  transition: border-color .15s, background .15s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); background: #fff; }
.field textarea { resize: vertical; }
.field .opt { font-weight: 400; color: #706C78; }
.form-submit {
  width: 100%; margin-top: 20px; background: var(--brand); color: #fff; font-family: inherit;
  font-weight: 700; font-size: 16px; padding: 15px; border: none; border-radius: 12px;
  cursor: pointer; box-shadow: 0 6px 18px -6px rgba(127,23,52,0.6); transition: background .15s;
}
.form-submit:hover { background: var(--brand-dark); }
.form-note { font-size: 12.5px; color: #706C78; margin: 12px 0 0; text-align: center; line-height: 1.5; }
.form-note a { color: var(--brand); font-weight: 600; text-decoration: none; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { font-family: 'Figtree', system-ui, sans-serif; background: #241119; color: #B4ADC6; padding: 60px 24px 30px; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 40px 32px; }
.footer-brand { max-width: 320px; }
.footer-lockup { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-lockup .brand-badge span { font-size: 17px; }
.footer-lockup .nm { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 16px; color: #fff; line-height: 1.15; }
.footer-brand p { font-size: 16px; line-height: 1.6; color: #A79FBD; margin: 0 0 18px; }
.badge-insured {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(0,172,221,0.14);
  border: 1px solid rgba(0,172,221,0.4); color: #8FE0F5; font-size: 13px; font-weight: 600;
  padding: 7px 12px; border-radius: 8px; margin-bottom: 18px;
}
.footer-social a { display: inline-flex; align-items: center; gap: 8px; color: #C9BEE4; text-decoration: none; font-size: 15.5px; font-weight: 500; }
.footer-social a:hover { color: #fff; }
.footer-col h2 { font-family: 'Figtree', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #9386B3; margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: #C4BCD8; text-decoration: none; font-size: 16px; }
.footer-col a:hover { color: #fff; }
.areas-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.areas-cols a { font-size: 15.5px; }
.areas-cols .soon { color: #9286AE; font-size: 15.5px; }
.footer-contact address { font-style: normal; font-size: 15.5px; line-height: 1.7; color: #B4ADC6; }
.footer-contact .biz { color: #fff; font-weight: 600; margin-bottom: 6px; }
.footer-contact .appt { display: inline-block; margin-top: 6px; color: #9386B3; font-size: 14px; }
.footer-contact .lines { margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.footer-contact .phone { color: #fff; text-decoration: none; font-weight: 600; font-size: 17.5px; }
.footer-contact .phone:hover { color: var(--accent); }
.footer-contact .email { color: #C4BCD8; text-decoration: none; font-size: 15px; word-break: break-word; }
.footer-contact .email:hover { color: #fff; }
.footer-contact .hours { display: inline-flex; align-items: center; gap: 7px; color: #9B90B6; font-size: 15px; margin-top: 2px; }
.footer-bottom {
  max-width: var(--maxw); margin: 36px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-wrap: wrap;
  gap: 10px 24px; align-items: center; justify-content: space-between;
}
.footer-bottom span { font-size: 14.5px; color: #9286AE; }
.footer-bottom .credit { flex-basis: 100%; }
.footer-bottom .credit a { color: #C9BEE4; text-decoration: none; }
.footer-bottom .credit a:hover { color: #fff; text-decoration: underline; }

/* ==========================================================================
   UTILITY / RESPONSIVE
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   MOBILE-ONLY: centre all hero content (placed last to win source order)
   ========================================================================== */
@media (max-width: 768px) {
  .hero-grid { text-align: center; }
  .hero-grid > div:first-child { display: flex; flex-direction: column; align-items: center; }
  .hero .pill { align-self: center; }
  .hero h1, .hero p { margin-left: auto; margin-right: auto; }
  .hero .btn-row { justify-content: center; }
  .hero-media { display: flex; flex-direction: column; align-items: center; }
  .hero-media .frame { width: 100%; max-width: 460px; }
  .floating-card {
    position: static; margin: -30px 0 0; inset: auto;
    width: max-content; max-width: 92%;
  }
}

/* Contact form: honeypot, status, turnstile spacing */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.quote-form .cf-turnstile { margin: 4px 0 14px; }
.form-status { margin: 12px 0 0; font-size: 14px; font-weight: 600; border-radius: 10px; padding: 10px 14px; }
.form-status.ok { background: #E7F6EF; color: #14795A; }
.form-status.err { background: #FBEAEE; color: #7F1734; }
.form-submit[disabled] { opacity: .6; cursor: default; }

/* Before/after lightbox */
.ba-pair .shot { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; background: rgba(15,10,20,.9); padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 96vw; max-height: 86vh; width: auto; height: auto; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox .lb-cap { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; color: #fff; font-size: 15px; font-weight: 600; padding: 0 24px; }
.lightbox .lb-tag { position: absolute; top: 16px; left: 16px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; color: #fff; background: #7F1734; }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; background: rgba(255,255,255,.14); color: #fff; border: 0; cursor: pointer; border-radius: 999px; display: flex; align-items: center; justify-content: center; transition: background .15s; -webkit-tap-highlight-color: transparent; }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,.28); }
.lightbox .lb-close { top: 16px; right: 16px; width: 44px; height: 44px; font-size: 22px; line-height: 1; }
.lightbox .lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 26px; }
.lightbox .lb-prev { left: 16px; }
.lightbox .lb-next { right: 16px; }
@media (max-width: 600px) {
  .lightbox { padding: 12px; }
  .lightbox img { max-width: 100vw; max-height: 78vh; }
  .lightbox .lb-nav { top: auto; bottom: 20px; transform: none; width: 46px; height: 46px; background: rgba(255,255,255,.2); }
  .lightbox .lb-prev { left: 20px; }
  .lightbox .lb-next { right: 20px; }
  .lightbox .lb-close { width: 42px; height: 42px; }
  .lightbox .lb-cap { bottom: 78px; font-size: 14px; }
}

/* ==========================================================================
   COOKIE NOTICE
   ========================================================================== */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1200;
  max-width: 560px; margin: 0 auto;
  background: #241119; color: #EDE7F1;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 20px 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.4);
  font-size: 14.5px; line-height: 1.55;
  transform: translateY(140%); opacity: 0;
  transition: transform .45s cubic-bezier(.16,1,.3,1), opacity .35s ease;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner p { margin: 0 0 14px; color: #CFC6DA; }
.cookie-banner a { color: #E6A9BD; text-decoration: underline; }
.cookie-banner a:hover { color: #fff; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button {
  font-family: inherit; font-size: 14.5px; font-weight: 600;
  border-radius: 10px; padding: 11px 20px; cursor: pointer; border: none;
  flex: 1 1 auto; min-width: 120px;
}
.cookie-accept { background: var(--accent); color: #04222C; }
.cookie-accept:hover { background: #33bde6; }
.cookie-dismiss {
  background: transparent; color: #CFC6DA;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
.cookie-dismiss:hover { background: rgba(255,255,255,0.06); color: #fff; }

@media (max-width: 480px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 18px; border-radius: 14px; }
  .cookie-actions button { flex: 1 1 100%; }
}

.footer-bottom .policy-links { flex-basis: 100%; }
.footer-bottom .policy-links a { color: #9B90B6; text-decoration: none; }
.footer-bottom .policy-links a:hover { color: #fff; text-decoration: underline; }
