/* ============================================================
   Sneyd Electrical — shared stylesheet
   Generated by Propeller Websites build skill
   Brand: yellow #FCB816 (CTAs/accents) + black #0A0A0A (secondary surfaces)
   White body background (G1).
   ============================================================ */

:root {
  --brand-primary: #FCB816;        /* signature yellow from logo */
  --brand-primary-dark: #d99c0e;   /* hover/active state */
  --brand-secondary: #0A0A0A;      /* black — for surfaces, footer, message CTA */
  --ink: #0A0A0A;
  --ink-soft: #3A3A3A;
  --muted: #6B6B6B;
  --hairline: rgba(10, 10, 10, 0.08);
  --bg: #FFFFFF;
  --bg-tint: #FAFAF7;              /* warm off-white for section variation */

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --container: 1200px;
  --r-sm: 8px;
  --r: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(10,10,10,.06);
  --shadow: 0 8px 24px -8px rgba(10,10,10,.12), 0 2px 4px rgba(10,10,10,.04);
  --shadow-lg: 0 20px 40px -16px rgba(10,10,10,.1), 0 8px 24px -8px rgba(10,10,10,.12);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);                       /* G1 — white only */
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
img { border: 0; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand-primary-dark); }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .container { padding: 0 40px; }
}

/* Typography helpers */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
}
.h-display {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 20px;
}
.h-display .accent { color: var(--brand-primary); }
.h-display .mute   { color: #9a9a9a; font-weight: 300; }

.h-section {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-weight: 800;
  margin: 16px 0 24px;
}
.h-section .accent { color: var(--brand-primary); }

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ===========================================================
   Glass nav (G20) — fixed, pill-shaped, floats over hero
   =========================================================== */
.site-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 14px 10px 20px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--r-pill);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 0 0 1px rgba(10, 10, 10, 0.04),
    0 8px 24px -8px rgba(10, 10, 10, 0.12),
    0 20px 40px -16px rgba(10, 10, 10, 0.1);
  z-index: 100;
  max-width: calc(100vw - 32px);
}
.site-nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.site-nav .nav-logo img {
  height: 28px;
  width: auto;
}
.site-nav .nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 8px;
  gap: 4px;
  align-items: center;
}
.site-nav .nav-links li { padding: 0; }
.site-nav .nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: background 0.15s;
  white-space: nowrap;
}
.site-nav .nav-links a:hover { background: rgba(10, 10, 10, 0.06); color: var(--ink); }
.site-nav .nav-links a.is-active { background: rgba(10, 10, 10, 0.08); }

.nav-contact-btn {
  display: none;
  align-items: center;
  padding: 9px 18px;
  background: var(--brand-primary);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--brand-primary);
  white-space: nowrap;
  transition: transform 0.1s;
}
.nav-contact-btn:hover {
  background: var(--brand-primary-dark);
  color: var(--ink);
  transform: translateY(-1px);
}

/* Mobile hamburger — base style (mobile default).
   ORDER MATTERS: this base rule MUST come BEFORE the @media override below or the
   cascade loses the desktop-hide. Specificity is identical so source order decides.
   Plus !important on the desktop hide as belt-and-braces — desktop must NEVER show
   the hamburger (G17). */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--ink);
}
.mobile-menu-toggle:hover { background: rgba(10, 10, 10, 0.04); }

@media (min-width: 1024px) {
  .site-nav .nav-links { display: flex; }
  .nav-contact-btn { display: inline-flex; }
  .mobile-menu-toggle { display: none !important; }   /* G17 — hamburger NEVER on desktop */
}

/* Mobile menu panel (G17) */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 80px 24px 32px;
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-nav { display: flex; flex-direction: column; gap: 6px; margin-bottom: 32px; }
.mobile-menu-nav a {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}
.mobile-menu-contact {
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu-phone, .mobile-menu-email {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-phone .label, .mobile-menu-email .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.mobile-menu-phone .number {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-primary-dark);
}
.mobile-menu-email .value { font-size: 16px; color: var(--ink); }
.mobile-menu-address { color: var(--muted); font-size: 14px; line-height: 1.5; margin: 16px 0 0; }
body.menu-open { overflow: hidden; }

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===========================================================
   Hero — split-column composition (G16) for portrait photo
   =========================================================== */
.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 200px at 80% 20%, rgba(252, 184, 22, 0.08), transparent 70%),
    radial-gradient(ellipse 800px 400px at 0% 80%, rgba(252, 184, 22, 0.04), transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero { padding: 160px 0 96px; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 64px; }
}

.hero-text { max-width: 640px; }
.hero-text .eyebrow { color: var(--brand-primary-dark); font-weight: 600; }
.hero-headline {
  font-size: clamp(42px, 6.4vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 14px 0 24px;
  color: var(--ink);
}
.hero-headline .yellow {
  background: linear-gradient(180deg, transparent 60%, var(--brand-primary) 60%, var(--brand-primary) 95%, transparent 95%);
  padding: 0 4px;
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 56ch;
  margin: 0 0 32px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 36px;
}

/* CTA buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: transform 0.1s, background 0.15s, box-shadow 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-primary);
  color: var(--ink);
  box-shadow: 0 4px 14px -4px rgba(252, 184, 22, 0.55);
}
.btn-primary:hover {
  background: var(--brand-primary-dark);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -6px rgba(252, 184, 22, 0.6);
}
.btn-secondary {
  background: var(--ink);
  color: #fff;
}
.btn-secondary:hover { background: #2a2a2a; color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}
.btn-ghost:hover { background: rgba(10, 10, 10, 0.04); }
.btn-arrow::after { content: '→'; transition: transform 0.15s; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* Hero stat row (G21 mobile parity — wraps, never display:none) */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
@media (max-width: 640px) {
  .hero-stats { gap: 12px; }
  .hero-stat { flex: 1 1 calc(50% - 6px); }
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat .value {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.hero-stat .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 355/605;
  background: #1a1a1a;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo .photo-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-photo .photo-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
}

/* ===========================================================
   Sections (general)
   =========================================================== */
section { padding: 80px 0; margin: 0; }   /* G37 — no margin between sections */
@media (min-width: 1024px) { section { padding: 96px 0; } }

.section-bg-tint { background: var(--bg-tint); }
.section-bg-dark { background: var(--ink); color: #fff; }
.section-bg-dark .h-section { color: #fff; }
.section-bg-dark .lede { color: rgba(255,255,255,0.7); }

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
  max-width: 760px;
}
@media (min-width: 1024px) {
  .section-head { margin-bottom: 64px; }
}

/* ===========================================================
   Services — numbered rows (template1 pattern, G21 mobile)
   =========================================================== */
.services-list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr 1.2fr 40px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  transition: padding 0.15s;
}
.service-row:last-child { border-bottom: 1px solid var(--hairline); }
.service-row:hover { padding: 32px 0; }
.service-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.service-name {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.service-blurb {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.service-arrow {
  justify-self: end;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.15s, transform 0.15s;
}
.service-row:hover .service-arrow {
  background: var(--brand-primary);
  color: var(--ink);
  transform: translate(2px, -2px);
}
@media (max-width: 640px) {
  /* G21 — collapse to 3 cols on mobile, blurb wraps to its own row spanning all */
  .service-row {
    grid-template-columns: 32px 1fr 28px;
    gap: 8px 16px;
    padding: 22px 0;
  }
  .service-row:hover { padding: 22px 0; }
  .service-blurb {
    grid-column: 1 / -1;
    padding-left: 48px;
    padding-top: 6px;
    font-size: 14px;
    max-width: none;
  }
  .service-arrow { width: 28px; height: 28px; font-size: 14px; }
  .service-name { font-size: 19px; }
}

/* ===========================================================
   Trust strip + Areas
   =========================================================== */
.trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
@media (min-width: 1024px) {
  .trust-row { grid-template-columns: repeat(4, 1fr); padding: 48px 0; }
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-item .num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-item .num .accent { color: var(--brand-primary); }
.trust-item .label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* Service area pills */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 768px) { .areas-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.areas-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.areas-pills li a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(252, 184, 22, 0.1);
  border: 1px solid rgba(252, 184, 22, 0.2);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.15s;
}
.areas-pills li a:hover {
  background: var(--brand-primary);
  color: var(--ink);
}

/* G24 — Location section illustration (NOT iframe) */
.location-graphic {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(252,184,22,0.15), transparent 70%),
    var(--bg-tint);
  border-radius: var(--r-lg);
  padding: 24px;
}
.location-graphic svg { width: 100%; height: 100%; }

/* ===========================================================
   Gallery / image strip
   =========================================================== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .gallery-strip { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.gallery-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.gallery-strip a:hover img { transform: scale(1.02); }

/* ===========================================================
   Contact form (G19)
   =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 80px; }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-tint);
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
}
@media (min-width: 1024px) { .contact-form { padding: 40px; } }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  font-weight: 400;
  padding: 12px 14px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink);
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: -1px;
  border-color: var(--brand-primary);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-submit {
  margin-top: 8px;
  padding: 14px 22px;
  background: var(--brand-primary);
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  border: 0;
  border-radius: var(--r-pill);
  align-self: flex-start;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.contact-submit:hover { background: var(--brand-primary-dark); transform: translateY(-1px); }
.contact-disclaimer {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info-block .eyebrow { margin-bottom: 8px; display: block; }
.contact-info-block .info-value {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.contact-info-block .info-value a { color: var(--ink); }
.contact-info-block .info-value a:hover { color: var(--brand-primary-dark); }
.contact-info-block .info-sub {
  font-size: 15px;
  color: var(--muted);
  margin: 4px 0 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.hours-table tr { border-bottom: 1px solid var(--hairline); }
.hours-table tr:last-child { border-bottom: 0; }
.hours-table td { padding: 10px 0; }
.hours-table td:first-child {
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-size: 12px;
}
.hours-table td:last-child { text-align: right; font-weight: 500; }

/* ===========================================================
   FAQ (G27/G28) — native <details>
   =========================================================== */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid var(--hairline);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(17px, 1.3vw, 20px);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  color: var(--ink);
  transition: color 0.15s;
}
.faq-item summary:hover { color: var(--brand-primary-dark); }
.faq-item summary::after {
  content: '+';
  font-weight: 300;
  font-size: 28px;
  line-height: 0.6;
  flex-shrink: 0;
  color: var(--brand-primary-dark);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer { padding-top: 14px; max-width: 720px; }
.faq-answer p {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 16px;
  margin: 0;
}

/* FAQ hub — sticky TOC layout */
.faq-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .faq-hub-grid { grid-template-columns: 240px 1fr; gap: 64px; }
}
.faq-toc {
  font-family: var(--font-mono);
  font-size: 13px;
}
@media (min-width: 900px) {
  .faq-toc { position: sticky; top: 96px; align-self: start; }
}
.faq-toc h3 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}
.faq-toc ol { list-style: none; padding: 0; margin: 0; }
.faq-toc a {
  color: var(--ink-soft);
  display: block;
  padding: 6px 0 6px 16px;
  border-left: 2px solid transparent;
  transition: all 0.15s;
}
.faq-toc a:hover {
  color: var(--brand-primary-dark);
  border-left-color: var(--brand-primary);
}
@media (max-width: 900px) {
  .faq-toc { background: var(--bg-tint); padding: 16px 20px; border-radius: var(--r); }
  .faq-toc ol { display: flex; flex-wrap: wrap; gap: 8px 12px; }
  .faq-toc a { padding: 0; border-left: 0; }
}
.faq-section { margin-bottom: 48px; scroll-margin-top: 96px; }
.faq-section h2 {
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}

/* ===========================================================
   Mobile sticky CTA bar (G8) — two-tone Call/Message
   =========================================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}
.mobile-sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.mobile-cta-call    { background: var(--brand-primary); color: var(--ink); }
.mobile-cta-call:hover { color: var(--ink); }
.mobile-cta-message { background: var(--ink); }
.mobile-cta-call:active    { background: var(--brand-primary-dark); }
.mobile-cta-message:active { background: #2a2a2a; }
.mobile-sticky-cta svg { width: 18px; height: 18px; }
@media (max-width: 1023px) {
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 56px; }   /* room for the fixed bar */
}

/* ===========================================================
   Footer (G5 + G34 + G37)
   =========================================================== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
  margin: 0;        /* G37 — sits flush against the section above */
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 48px; }
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}
.footer-col a:hover { color: var(--brand-primary); }
.footer-brand .logo-mark {
  margin-bottom: 16px;
}
.footer-brand .logo-mark img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);  /* white logo on dark footer */
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.5;
  max-width: 32ch;
  margin: 0;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.15s;
}
.footer-social a:hover {
  background: var(--brand-primary);
  color: var(--ink);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; align-items: center; }
}
.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.footer-credit {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-credit a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}
.footer-credit a:hover {
  color: var(--brand-primary);
  text-decoration-color: var(--brand-primary);
}

/* NAP block (G30) — visible inline schema-equivalent */
.nap-block {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.nap-block strong { color: rgba(255, 255, 255, 0.95); }
.nap-block a { color: rgba(255, 255, 255, 0.85); }

/* ===========================================================
   Service-detail page styling
   =========================================================== */
.service-detail {
  padding: 120px 0 64px;
}
@media (min-width: 1024px) {
  .service-detail { padding: 160px 0 80px; }
}
.service-detail-head { max-width: 760px; margin-bottom: 48px; }
.service-detail-head .eyebrow { color: var(--brand-primary-dark); font-weight: 600; }
.service-detail-head h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 14px 0 24px;
  color: var(--ink);
}
.service-detail-head .lede { color: var(--ink-soft); font-size: clamp(18px, 1.5vw, 22px); line-height: 1.55; }

.service-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .service-content { grid-template-columns: 1.4fr 0.6fr; gap: 64px; }
}
.service-prose section { padding: 0 0 32px; border: 0; }
.service-prose h2 {
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px;
}
.service-prose h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--ink);
}
.service-prose p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 16px;
}
.service-aside {
  background: var(--bg-tint);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 24px;
  position: sticky;
  top: 96px;
}
.service-aside h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 12px;
}
.service-aside .aside-cta {
  display: block;
  padding: 14px;
  background: var(--brand-primary);
  color: var(--ink);
  border-radius: var(--r-sm);
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.service-aside .aside-cta:hover { background: var(--brand-primary-dark); color: var(--ink); }
.service-aside .aside-secondary {
  display: block;
  padding: 14px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-sm);
  text-align: center;
  font-weight: 600;
  font-size: 15px;
}
.service-aside .aside-secondary:hover { background: #2a2a2a; color: #fff; }
.service-aside ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
}
.service-aside ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--hairline);
}
.service-aside ul li:last-child { border-bottom: 0; }
.service-aside ul li a {
  color: var(--ink-soft);
  display: block;
}
.service-aside ul li a:hover { color: var(--brand-primary-dark); }

.service-image {
  margin: 0 0 32px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}
.service-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================================================
   404 (G33)
   =========================================================== */
.not-found {
  padding: 160px 0 100px;
  text-align: center;
}
.not-found .eyebrow {
  color: var(--brand-primary-dark);
  margin-bottom: 12px;
}
.not-found h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.not-found p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 32px;
}
.not-found-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ===========================================================
   Reusable utilities
   =========================================================== */
.cta-band {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
  margin: 0;       /* G37 — flush */
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .cta-band-inner { grid-template-columns: 1fr auto; gap: 32px; }
}
.cta-band h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  max-width: 22ch;
}
.cta-band h2 .accent { color: var(--brand-primary); }

/* Visually-hidden helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Scroll-snap for image rows on mobile */
@media (max-width: 768px) {
  .gallery-strip-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .gallery-strip-scroll img {
    flex: 0 0 70%;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
  }
}

/* Print: simplify */
@media print {
  .site-nav, .mobile-sticky-cta, .mobile-menu, .footer-social { display: none; }
  body { color: #000; }
}

/* ===========================================================
   Google Reviews (G4) — summary widget always shown when
   we have any aggregate signal; marquee renders only when
   actual review text exists. Pattern from templates/template1.
   =========================================================== */
.gr-section { padding: 80px 0; background: var(--bg); }
@media (min-width: 1024px) { .gr-section { padding: 96px 0; } }

.gr-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.gr-sum-left { display: flex; align-items: center; gap: 20px; flex: 1 1 auto; min-width: 0; }
.gr-logo {
  width: 48px; height: 48px; border-radius: 50%;
  background: #f8f9fa; border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gr-meta { flex: 1 1 auto; min-width: 0; }
.gr-meta-top { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.gr-score { font-size: 28px; font-weight: 700; letter-spacing: -0.025em; color: var(--ink); }
.gr-stars { display: inline-flex; gap: 1px; color: #fbbc05; font-size: 17px; letter-spacing: -1px; }
.gr-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.gr-sub strong { color: var(--ink); font-weight: 600; }
.gr-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid var(--hairline);
  background: #fff;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
}
.gr-cta:hover {
  background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-1px);
}
.gr-cta svg { width: 12px; height: 12px; }

/* "Be the first" inverted variant when there are no reviews yet */
.gr-empty {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  text-align: center;
}
@media (min-width: 768px) { .gr-empty { grid-template-columns: auto 1fr auto; gap: 24px; text-align: left; } }
.gr-empty .gr-logo { margin: 0 auto; }
@media (min-width: 768px) { .gr-empty .gr-logo { margin: 0; } }
.gr-empty-text strong { display: block; font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.gr-empty-text span { color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.gr-empty .gr-cta { background: var(--brand-primary); border-color: var(--brand-primary); color: var(--ink); font-weight: 700; }
.gr-empty .gr-cta:hover { background: var(--brand-primary-dark); border-color: var(--brand-primary-dark); color: var(--ink); }

/* Scrolling marquee (only when reviews are present) */
.gr-marquee {
  position: relative;
  overflow: hidden;
  margin: 0 -24px 16px;
  padding: 8px 0;
  min-height: 200px;
  isolation: isolate;
}
.gr-marquee::before, .gr-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.gr-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.gr-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.gr-marquee:last-child { margin-bottom: 0; }
.gr-track { display: flex; gap: 20px; width: max-content; will-change: transform; }
.gr-card {
  flex: 0 0 360px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.gr-card:hover {
  transform: translateY(-2px);
  border-color: rgba(10,10,10,0.14);
  box-shadow: 0 1px 2px rgba(10,10,10,0.04), 0 18px 40px -14px rgba(10,10,10,0.14);
}
.gr-card-head { display: flex; align-items: center; gap: 12px; }
.gr-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  color: #fff; font-weight: 600; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gr-who { flex: 1; min-width: 0; }
.gr-name {
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gr-date { font-size: 11.5px; color: var(--muted); margin-top: 2px; font-family: var(--font-mono); }
.gr-local { color: #1a73e8; font-weight: 500; }
.gr-stars-row { display: flex; gap: 2px; }
.gr-s { width: 15px; height: 15px; fill: #e7e7e7; }
.gr-s.on { fill: #fbbc05; }
.gr-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .gr-card { flex: 0 0 280px; padding: 18px; }
  .gr-summary { padding: 18px 20px; }
  .gr-score { font-size: 24px; }
  .gr-marquee-reverse { display: none; }
  .gr-marquee { margin: 0 -20px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .gr-track { transform: none !important; animation: none !important; }
}

