/* ============================================================
   Website UI Kit — local component styles
   Pulls tokens from ../../colors_and_type.css
   ============================================================ */

/* ---------- Layout primitives ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.site-root { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* ---------- Section spacing & tints ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-tint { background: var(--ink-100); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head .eyebrow { margin-bottom: 12px; display: inline-block; }
.section-head .sec-h, .sec-h { margin: 0 0 12px; }
.section-head .lead { margin: 0; }

/* ---------- Reusable buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  border: 0;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition:
    background var(--dur-hover) var(--ease-out),
    color var(--dur-hover) var(--ease-out),
    transform var(--dur-hover) var(--ease-out),
    box-shadow var(--dur-hover) var(--ease-out);
}
.btn:active { transform: scale(0.98); }
.btn-lg  { font-size: 17px; padding: 16px 28px; }
.btn-primary   { background: var(--brand); color: var(--paper); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-hover); color: var(--paper); text-decoration: none; }
.btn-secondary { background: transparent; color: var(--fg-1); border: 1px solid var(--border-strong); }
.btn-secondary:hover { background: var(--ink-200); color: var(--fg-1); text-decoration: none; }
.btn-ghost     { background: transparent; color: var(--brand); }
.btn-ghost:hover { background: var(--brand-soft); text-decoration: none; }
.btn-on-blue   { background: var(--paper); color: var(--brand); }
.btn-on-blue:hover { background: var(--ink-100); text-decoration: none; }
.btn-ghost-on-blue { background: transparent; color: var(--paper); border: 1px solid rgba(255,255,255,0.4); }
.btn-ghost-on-blue:hover { background: rgba(255,255,255,0.12); color: var(--paper); text-decoration: none; }

/* ---------- Header (black, taller, big logo) ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink-1000);
  border-bottom: 1px solid var(--border-dark);
  height: var(--nav-h);
  color: var(--fg-on-dark-1);
}
.nav-inner { display: flex; align-items: center; height: 100%; gap: 32px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 108px; width: auto; display: block; }

.nav-links { display: flex; gap: 28px; margin-left: 12px; }
.nav-link {
  color: var(--fg-on-dark-2);
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  padding: 6px 2px;
  transition: color var(--dur-hover);
  position: relative;
}
.nav-link:hover { color: var(--paper); text-decoration: none; }
.nav-link.active { color: var(--paper); font-weight: 600; }
.nav-link.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px; background: var(--accent);
  border-radius: 2px;
}

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  color: var(--fg-on-dark-2); font-size: 14px; font-weight: 500; text-decoration: none;
}
.nav-phone:hover { color: var(--paper); text-decoration: none; }

/* ---------- Hero ---------- */
.hero { padding: 80px 0 96px; background: var(--paper); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.hero-copy .eyebrow { margin-bottom: 16px; display: inline-block; }
.hero-h { margin: 0 0 20px; font-size: clamp(48px, 5.5vw, 80px); }
.hero-copy .lead { margin: 0 0 28px; max-width: 540px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.hero-bullets li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--fg-2); }
.hero-bullets svg { color: var(--green-500); }

.hero-photo { position: relative; }
.hero-img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}
.photo-placeholder {
  width: 100%; aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(45deg, var(--ink-100), var(--ink-100) 10px, var(--ink-200) 10px, var(--ink-200) 20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: var(--ink-500);
  border: 2px dashed var(--ink-300);
}
.photo-tall { aspect-ratio: 4 / 5; }
.ph-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--paper); display: flex; align-items: center; justify-content: center; color: var(--brand); box-shadow: var(--shadow-sm); }
.ph-label { font-size: 13px; color: var(--ink-500); font-weight: 500; text-align: center; padding: 0 24px; }

.hero-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--paper); border-radius: var(--radius-pill); padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-md);
  font-size: 14px; color: var(--fg-1);
}
.hero-badge svg { color: var(--yellow-600); fill: var(--yellow-500); }
.hero-badge-google {
  text-decoration: none;
  color: var(--fg-1);
  transition: transform var(--dur-hover), box-shadow var(--dur-hover);
}
.hero-badge-google:hover {
  text-decoration: none;
  color: var(--fg-1);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.hero-badge-google svg { color: inherit; fill: none; }
.hero-badge-google strong { color: var(--fg-1); margin-right: 2px; }

/* ---------- Hero Google trust badge (large, in-copy column) ---------- */
.hero-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px 14px 16px;
  margin: 4px 0 24px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--fg-1);
  transition: box-shadow var(--dur-hover), transform var(--dur-hover);
  max-width: 100%;
}
.hero-google-badge:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--fg-1);
}
.hero-google-badge-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.hero-google-badge-text {
  display: flex; flex-direction: column; gap: 2px;
}
.hero-google-badge-stars {
  display: inline-flex; align-items: center; gap: 2px;
  margin-bottom: 2px;
}
.hero-google-badge-text strong {
  font-size: 16px; font-weight: 700; color: var(--fg-1); line-height: 1.2;
}
.hero-google-badge-sub {
  font-size: 13px; color: var(--brand); font-weight: 600;
}

/* ---------- Services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow var(--dur-hover) var(--ease-out), transform var(--dur-hover) var(--ease-out);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--blue-50); color: var(--brand); display: flex; align-items: center; justify-content: center; }
.service-card h3 { margin: 4px 0 0; font-size: 20px; font-family: var(--font-body); font-weight: 600; }
.service-card p { margin: 0; font-size: 15px; color: var(--fg-2); }
.link-cta { background: none; border: 0; padding: 0; color: var(--brand); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; cursor: pointer; margin-top: 8px; }
.link-cta:hover { color: var(--brand-hover); }

/* ---------- Service area block ---------- */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.city-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chip {
  display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--paper); color: var(--fg-1);
  border: 1px solid var(--border);
}
.chip-sm { font-size: 12px; padding: 4px 10px; }
.map-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-placeholder {
  width: 100%; aspect-ratio: 4 / 3;
  background: var(--ink-100);
  background-image:
    linear-gradient(var(--ink-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink-200) 1px, transparent 1px);
  background-size: 40px 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: var(--brand);
}
.map-large { width: 100%; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.review-card blockquote { margin: 0; font-size: 16px; color: var(--fg-1); line-height: 1.5; }
.review-card figcaption { display: flex; flex-direction: column; gap: 2px; }
.stars { display: inline-flex; gap: 2px; }

/* Google badge on review cards */
.review-meta-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.review-google {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--fg-2);
  background: var(--ink-100);
  padding: 4px 10px 4px 6px;
  border-radius: var(--radius-pill);
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--brand); color: var(--paper); padding: 72px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-800); color: rgba(255,255,255,0.75); padding: 64px 0 24px; }
.site-footer .muted { color: rgba(255,255,255,0.55); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr; gap: 48px; margin-bottom: 48px; }
.foot-wordmark {
  font-family: var(--font-display);
  font-weight: 800; font-size: 22px; line-height: 1.1;
  color: var(--paper); letter-spacing: var(--ls-tight);
  display: block;
}
.foot-wordmark span { color: var(--brand); }
.foot-h { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--paper); margin: 0 0 16px; }
.foot-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.foot-list a { color: rgba(255,255,255,0.85); text-decoration: none; }
.foot-list a:hover { color: var(--paper); text-decoration: underline; }
.foot-legal { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); }

/* Facebook button in footer brand block */
.foot-facebook {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,0.92);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: background var(--dur-hover), color var(--dur-hover);
}
.foot-facebook:hover { background: #1877F2; color: var(--paper); border-color: #1877F2; text-decoration: none; }
.foot-facebook-icon {
  width: 28px; height: 28px;
  background: #1877F2;
  color: var(--paper);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Footer accordion (only opens as accordion on mobile) */
.foot-col summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  cursor: default;
  pointer-events: none;
}
.foot-col summary::-webkit-details-marker { display: none; }
.foot-col .foot-chev { display: none; color: rgba(255,255,255,0.7); transition: transform var(--dur-state) var(--ease-out); }
.foot-col[open] .foot-chev { transform: rotate(180deg); }
.foot-col .foot-h { margin: 0 0 16px; }

/* ---------- Page headers (non-home) ---------- */
.page-head { padding: 80px 0 32px; background: var(--paper); border-bottom: 1px solid var(--border); }
.page-head-tight { padding: 64px 0 24px; }
.page-head .eyebrow { display: inline-block; margin-bottom: 12px; }
.page-head h1 { margin: 0 0 16px; font-size: clamp(40px, 5vw, 64px); }
.page-head .lead { margin: 0; max-width: 640px; }

/* ---------- Services accordion ---------- */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion details {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.accordion details[open] { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }
.accordion summary {
  list-style: none;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 18px;
  color: var(--fg-1);
}
.accordion summary::-webkit-details-marker { display: none; }
.acc-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--blue-50); color: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.acc-title { flex: 1; }
.acc-chev { color: var(--fg-3); transition: transform var(--dur-state) var(--ease-out); }
.accordion details[open] .acc-chev { transform: rotate(180deg); color: var(--brand); }
.acc-body { padding: 0 20px 20px 72px; color: var(--fg-2); }
.acc-body p { margin: 0 0 12px; }
.acc-body ul { list-style: none; padding: 0; margin: 0 0 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.acc-body li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--fg-1); }
.acc-body li svg { color: var(--green-500); flex-shrink: 0; }

/* ---------- ZIP groups ---------- */
.zip-groups { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.zip-group strong { display: block; font-family: var(--font-body); font-size: 14px; color: var(--fg-1); margin-bottom: 8px; }
.zip-row { display: flex; flex-wrap: wrap; gap: 6px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.about-grid p { font-size: 17px; color: var(--fg-1); }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.trust-item { display: flex; align-items: flex-start; gap: 12px; }
.trust-item > svg { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.trust-item strong { font-size: 14px; }

/* ---------- Booking form ---------- */
.booking-form { display: flex; flex-direction: column; gap: 20px; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--fg-1); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 16px; color: var(--fg-1);
  background: var(--paper); border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); padding: 12px 14px; outline: none;
  transition: border-color var(--dur-hover), box-shadow var(--dur-hover);
}
.field textarea { resize: vertical; min-height: 100px; font-family: var(--font-body); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,153,233,0.2); }
.hint { font-size: 12px; color: var(--fg-3); }

.radio-row { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-chip { display: inline-flex; align-items: center; padding: 8px 14px; border-radius: var(--radius-pill); border: 1px solid var(--border-strong); background: var(--paper); cursor: pointer; font-size: 14px; font-weight: 500; transition: all var(--dur-hover); }
.radio-chip input { position: absolute; opacity: 0; pointer-events: none; }
.radio-chip:hover { border-color: var(--brand); color: var(--brand); }
.radio-chip.selected { background: var(--brand); border-color: var(--brand); color: var(--paper); }

.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.form-footnote { margin: 8px 0 0; max-width: none; }

/* ---------- Confirmation ---------- */
.confirm-wrap { padding: 80px 0; min-height: 60vh; display: flex; align-items: center; background: var(--bg-alt); }
.confirm-card { background: var(--paper); border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-md); padding: 48px; text-align: center; }
.confirm-check { width: 72px; height: 72px; border-radius: 50%; background: var(--green-500); color: var(--paper); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.confirm-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; padding: 20px; background: var(--ink-100); border-radius: var(--radius-md); }
.confirm-meta > div { display: flex; flex-direction: column; gap: 4px; }
.confirm-meta strong { font-family: var(--font-mono); font-size: 16px; color: var(--fg-1); }
.confirm-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ============================================================
   ADDITIONS — full website expansion (13-page SEO build)
   ============================================================ */

/* ---------- Nav dropdown (Services mega-menu) ---------- */
.nav-dropdown { position: relative; display: inline-flex; }
.nav-dd-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; cursor: pointer;
  color: inherit; font: inherit;
  padding: 6px 2px;
  font-size: 15px; font-weight: 500;
}
.nav-dd-trigger:hover { color: var(--paper); }
.nav-dd-menu {
  position: absolute; top: calc(100% + 8px); left: -16px;
  background: var(--paper);
  color: var(--fg-1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px;
  min-width: 520px;
  z-index: 60;
  animation: dd-in 180ms var(--ease-out);
}
@keyframes dd-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.nav-dd-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px;
  background: none; border: 0; text-align: left; cursor: pointer;
  border-radius: 8px;
  color: var(--fg-1);
  transition: background var(--dur-hover);
}
.nav-dd-item:hover { background: var(--ink-100); }
.nav-dd-item strong { display: block; font-size: 14px; font-weight: 600; line-height: 1.3; }
.nav-dd-item .muted { display: block; margin-top: 2px; line-height: 1.3; }
.nav-dd-item-head { grid-column: 1 / -1; border-bottom: 1px solid var(--border); border-radius: 8px 8px 0 0; }
.nav-dd-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--blue-50); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ---------- Page-head photo two-column variant ---------- */
.page-head-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
  align-items: center;
}
.page-head-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ---------- Embedded Google Map (Service Areas page) ---------- */
.service-map {
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--paper);
  border: 1px solid var(--border);
}
.service-map iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  display: block;
}
.service-map-legend {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--fg-1);
  background: var(--paper);
  border-top: 1px solid var(--border);
  line-height: 1.4;
}
.service-map-legend strong { color: var(--brand); margin-right: 6px; }

/* ---------- Service detail page body ---------- */
.svc-body { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.svc-col h2 { font-size: 28px; margin-bottom: 16px; }
.svc-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--nav-h) + 20px); }

.info-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.info-card h3 { margin: 0 0 8px; font-size: 18px; }
.info-card p { font-size: 15px; color: var(--fg-2); margin: 0 0 16px; }
.info-card-areas { background: var(--ink-100); }
.info-card-dark { background: var(--ink-900); color: var(--paper); border: 0; }
.info-card-dark p, .info-card-dark .small { color: rgba(255,255,255,0.78); }

/* ---------- Check list ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.svc-aside .check-list, .info-card .check-list { grid-template-columns: 1fr; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; color: var(--fg-1); }
.check-list li svg { color: var(--green-500); flex-shrink: 0; margin-top: 3px; }
.check-list-dark li { color: rgba(255,255,255,0.92); }
.check-list-dark li svg { color: var(--accent); }

/* ---------- FAQ list ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  list-style: none; cursor: pointer;
  padding: 18px 20px;
  font-weight: 600; font-size: 17px; color: var(--fg-1);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev { color: var(--fg-3); transition: transform var(--dur-state) var(--ease-out); }
.faq-item[open] .faq-chev { transform: rotate(180deg); color: var(--brand); }
.faq-body { padding: 0 20px 18px; color: var(--fg-2); }
.faq-body p { margin: 0; font-size: 15px; line-height: 1.6; }
.faq-group { margin-bottom: 40px; }
.faq-group-title { font-size: 22px; margin: 0 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }

/* ---------- Related services grid ---------- */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  cursor: pointer; text-align: left;
  transition: box-shadow var(--dur-hover), transform var(--dur-hover);
}
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.related-card strong { display: block; font-size: 15px; color: var(--fg-1); }
.related-card .muted { display: block; font-size: 13px; line-height: 1.3; margin-top: 2px; }
.related-arrow { margin-left: auto; color: var(--brand); }

/* ---------- Services hub grid (overview page) ---------- */
.services-hub-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-hub-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  cursor: pointer; text-align: left;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow var(--dur-hover), transform var(--dur-hover);
  font: inherit;
}
.service-hub-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-hub-card h3 { margin: 4px 0 0; font-size: 20px; font-family: var(--font-body); font-weight: 700; }
.service-hub-card p { margin: 0; font-size: 15px; color: var(--fg-2); line-height: 1.5; }
.service-hub-card .link-cta { margin-top: auto; }

/* ---------- Service area page (regions) ---------- */
.region-grid {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 48px; align-items: center;
}
.region-copy h2 { font-size: 32px; margin: 4px 0 16px; }
.region-cities {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.region-city-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-weight: 600; font-size: 16px;
}
.region-city-pill svg { color: var(--brand); }
.section-tint .region-city-pill { background: var(--paper); }

/* ---------- Reviews page ---------- */
.reviews-grid-wide { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) { .reviews-grid-wide { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.blog-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--dur-hover), transform var(--dur-hover);
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--paper); color: var(--brand);
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.blog-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-body h3 { margin: 0; font-size: 18px; font-family: var(--font-body); font-weight: 700; line-height: 1.3; }
.blog-body p { margin: 0; font-size: 14px; color: var(--fg-2); flex: 1; }
.blog-body .kw { font-family: var(--font-mono); font-size: 12px; color: var(--brand); }

/* Blog post overlay */
.post-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: flex-start; justify-content: center;
  overflow-y: auto;
  padding: 40px 16px;
  animation: fade-in 200ms var(--ease-out);
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.post-sheet {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  max-width: 720px; width: 100%;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.post-sheet h1 { font-size: 36px; margin: 12px 0 16px; }
.post-sheet h2 { font-size: 20px; margin: 28px 0 12px; }
.post-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--ink-100); border: 0; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--fg-1);
}
.post-close:hover { background: var(--ink-200); }
.post-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--ink-100); border-radius: var(--radius-md);
  padding: 16px; margin: 16px 0 8px;
}
.post-meta > div { display: flex; flex-direction: column; gap: 2px; }
.post-meta strong { font-family: var(--font-mono); font-size: 14px; color: var(--fg-1); }
.post-outline { padding-left: 20px; margin: 0; }
.post-outline li { margin-bottom: 8px; font-size: 15px; color: var(--fg-1); }
.post-sheet code { background: var(--ink-100); padding: 2px 6px; border-radius: 4px; }

.post-meta-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.post-meta-top .blog-cat { box-shadow: none; border: 1px solid var(--border); }
.post-intro { margin: 12px 0 24px; color: var(--fg-1); }
.post-hero { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-md); margin: 0 0 28px; display: block; }
.post-section { margin: 32px 0; }
.post-section h2 { font-size: 24px; margin: 0 0 14px; }
.post-section p { font-size: 17px; line-height: 1.65; color: var(--fg-1); margin: 0 0 14px; max-width: 65ch; }
.post-bullets { padding-left: 22px; margin: 0 0 14px; }
.post-bullets li { font-size: 17px; line-height: 1.55; color: var(--fg-1); margin-bottom: 8px; }
.post-faq .faq-list { margin-top: 12px; }
.post-cta {
  margin: 40px 0 24px;
  padding: 28px;
  background: var(--ink-100);
  border-radius: var(--radius-md);
}
.post-cta h3 { margin: 0 0 8px; font-size: 22px; }
.post-cta p { margin: 0 0 18px; font-size: 16px; color: var(--fg-2); max-width: 60ch; }
.post-related { margin: 20px 0 8px; }
.post-related .link-cta { font-size: 14px; }
.post-tags { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.post-tags code { font-size: 12px; background: var(--ink-100); padding: 2px 6px; border-radius: 4px; color: var(--fg-1); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.contact-aside { display: flex; flex-direction: column; gap: 16px; position: sticky; top: calc(var(--nav-h) + 20px); }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-method-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-decoration: none;
  color: var(--fg-1);
  cursor: pointer; text-align: left;
  font: inherit;
  transition: box-shadow var(--dur-hover), transform var(--dur-hover);
}
.contact-method-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; color: var(--fg-1); }
.contact-method-card > div:nth-child(2) { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.contact-method-card strong { font-size: 17px; font-weight: 700; }
.contact-method-card .contact-method-value {
  font-family: var(--font-body); color: var(--brand);
  font-weight: 600; font-size: 15px;
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 4px;
}

/* ---------- Booking page (Jobber embed) ---------- */
.booking-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.booking-embed-wrap {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  min-height: 600px;
}
.jobber-embed { min-height: 500px; }
.jobber-embed iframe { width: 100% !important; border: 0; display: block; }
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.contact-list li > svg { color: var(--brand); flex-shrink: 0; margin-top: 4px; }
.contact-list strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.contact-list a { color: var(--fg-1); font-weight: 500; }

.file-drop {
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  cursor: pointer;
  background: var(--ink-50);
  color: var(--fg-2);
  transition: border-color var(--dur-hover), background var(--dur-hover);
}
.file-drop:hover { border-color: var(--brand); background: var(--blue-50); color: var(--brand); }

/* ---------- Footer additions ---------- */
.footer-grid-wide { grid-template-columns: 1.2fr 1fr 1fr 1.3fr 1.3fr; }

/* Mobile sticky call bar */
.mobile-call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--brand); color: var(--paper);
  padding: 14px 16px;
  align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 16px;
  text-decoration: none;
  z-index: 80;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}
.mobile-call-bar:hover { color: var(--paper); text-decoration: none; }

/* Mobile sticky action bar — two icon buttons (Call + Text) */
.mobile-action-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: var(--ink-1000);
  border-top: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  padding: 6px 8px;
  gap: 6px;
}
.mobile-action {
  flex: 1;
  display: inline-flex; flex-direction: row; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-height: 44px;
  transition: filter var(--dur-hover);
}
.mobile-action:hover { text-decoration: none; filter: brightness(1.08); }
.mobile-action-call { background: var(--brand); color: var(--paper); }
.mobile-action-call:hover { color: var(--paper); }
.mobile-action-text { background: var(--accent); color: var(--ink-1000); }
.mobile-action-text:hover { color: var(--ink-1000); }

/* ---------- BeforeAfter (was inherited but not styled in original) ---------- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.ba-card { margin: 0; background: var(--paper); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.ba-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.ba-card figcaption { padding: 16px 20px; display: flex; flex-direction: column; gap: 4px; }
.ba-cta { display: flex; justify-content: center; margin-top: 8px; }

/* ---------- ServiceArea map photo ---------- */
.map-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }

/* ---------- Reusable headings on page-head ---------- */
.page-head h1 { font-size: clamp(36px, 4.5vw, 56px); }
.page-head { padding-bottom: 48px; }

/* ---------- Mobile menu ---------- */
.nav-hamburger {
  display: none;
  background: transparent;
  border: 0;
  color: var(--paper);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }

.mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--ink-1000);
  color: var(--paper);
  z-index: 90;
  overflow: hidden;
  animation: drawer-in 220ms var(--ease-out);
}
@keyframes drawer-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.mobile-drawer-scroll {
  height: 100%;
  overflow-y: auto;
  padding: 24px 24px 96px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.m-link {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 8px;
  color: var(--paper);
  font-size: 18px; font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.m-link:hover { color: var(--paper); text-decoration: none; background: rgba(255,255,255,0.04); }
.m-link svg { color: var(--accent); }
.m-link.m-sub {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding-left: 24px;
}
.m-section-label {
  margin: 18px 0 4px;
  font-size: 12px; font-weight: 700; letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: var(--accent);
}
.m-cta-block {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.m-cta-block .btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--paper);
  border-color: rgba(255,255,255,0.18);
}
.m-cta-block .btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: var(--paper);
}

/* ---------- Responsive (existing + new) ---------- */
@media (max-width: 1100px) {
  .footer-grid-wide { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 920px) {
  .hero-grid, .area-grid, .about-grid, .svc-body, .region-grid, .page-head-grid, .contact-grid, .booking-grid {
    grid-template-columns: 1fr; gap: 32px;
  }
  .services-grid, .reviews-grid, .reviews-grid-wide, .services-hub-grid, .related-grid, .blog-grid, .ba-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid, .footer-grid-wide { grid-template-columns: 1fr 1fr; gap: 32px 24px; margin-bottom: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links, .nav-phone, .nav-book { display: none; }
  .nav-hamburger { display: inline-flex; align-items: center; justify-content: center; }
  .brand-logo { height: 72px; }
  :root { --nav-h: 96px; }
  .section { padding: 64px 0; }
  .check-list { grid-template-columns: 1fr; }
  .acc-body ul { grid-template-columns: 1fr; }
  .acc-body { padding-left: 20px; }
  .nav-dd-menu { min-width: 280px; grid-template-columns: 1fr; }
  .svc-aside, .contact-aside { position: static; }
  .mobile-call-bar { display: flex; }
  .mobile-action-bar { display: flex; }
  .site-footer { padding: 56px 0 96px; }
  .post-sheet { padding: 32px 20px; }
  .post-sheet h1 { font-size: 28px; }
  .region-cities { grid-template-columns: 1fr 1fr; }
}

/* ---------- Narrow phones (≤640px) — footer + small layout tweaks ---------- */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .footer-grid, .footer-grid-wide { grid-template-columns: 1fr; gap: 0; margin-bottom: 24px; }
  .footer-brand { padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .footer-brand p { max-width: none; }

  /* Footer accordions — only collapse on mobile */
  .foot-col {
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  .foot-col-static {
    padding: 16px 0 4px;
  }
  .foot-col[open] { padding-bottom: 12px; }
  .foot-col summary {
    padding: 18px 4px;
    cursor: pointer;
    pointer-events: auto;
  }
  .foot-col summary:hover { background: rgba(255,255,255,0.04); }
  .foot-col .foot-chev { display: inline-flex; }
  .foot-col .foot-h { margin: 0; font-size: 13px; }
  .foot-col .foot-list { padding: 0 4px 12px; gap: 12px; font-size: 15px; }
  .foot-col-static .foot-h { margin: 0 0 12px; padding-left: 4px; font-size: 13px; }
  .foot-col-static .foot-list { padding: 0 4px; gap: 12px; font-size: 15px; }
  .foot-col-static p { padding: 0 4px; }
  .foot-list a { padding: 4px 0; display: inline-block; }

  .foot-legal { flex-direction: column; gap: 8px; align-items: flex-start; padding-top: 20px; }

  /* Hero Google badge stays compact on phone */
  .hero-google-badge { padding: 12px 14px; gap: 10px; }
  .hero-google-badge-icon { width: 36px; height: 36px; }
  .hero-google-badge-icon svg { width: 28px; height: 28px; }
  .hero-google-badge-text strong { font-size: 15px; }
  .hero-google-badge-sub { font-size: 12px; }

  .site-footer { padding-top: 48px; padding-bottom: 88px; }
  .hero { padding: 56px 0 72px; }
  .hero-h { font-size: clamp(40px, 9vw, 56px) !important; }
  .page-head h1 { font-size: clamp(28px, 7vw, 40px); }
  .display-2 { font-size: clamp(28px, 7vw, 44px); }
  .display-1 { font-size: clamp(36px, 9vw, 56px); }
  .cta-band { padding: 56px 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; justify-content: center; }
  .post-meta-top { flex-wrap: wrap; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .review-card { padding: 20px; }
}
