/* ============================================================
   BRIGHT SOLUTIONS ELECTRICAL SERVICES — Demo Site Design System v3
   Navy + orange theme: dark navy header/hero/footer anchors, flat
   orange CTAs, cool light-gray sections. Matches reference comp.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --bg:          #F4F6F9;   /* cool light-gray background */
  --bg-alt:      #EEF1F6;   /* alternating section tint */
  --panel:       #FFFFFF;
  --line:        rgba(15,30,48,0.10);
  --line-strong: rgba(15,30,48,0.18);

  --ink:         #14202F;   /* primary text */
  --ink-muted:   #5C6B7C;   /* secondary text */

  --glow:        #F0770F;   /* orange accent — text/icon */
  --glow-bg:     #F5821F;   /* orange for solid fills/backgrounds */
  --glow-soft:   #FDE7D2;   /* pale orange tint for chips/badges */
  --ember:       #F0770F;   /* CTA orange */
  --ember-deep:  #D6640A;
  --wire-teal:   #1F8E7D;

  --dark:        #0E1B2C;   /* header / hero / footer navy anchor */
  --dark-panel:  #17293F;
  --cream:       #FFFFFF;   /* text on dark sections */
  --muted-on-dark: #AAB6C4;

  --display: 'Poppins', sans-serif;
  --body:    'Inter', sans-serif;
  --mono:    'Poppins', sans-serif;

  --maxw: 1180px;
  --radius: 12px;
  --radius-sm: 7px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--body);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--display); font-weight:700; margin:0; line-height:1.12; letter-spacing:-0.01em; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
.wrap{ max-width:var(--maxw); padding-inline:24px; margin-left:auto; margin-right:auto; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

.eyebrow{
  font-family:var(--mono); font-weight:600; font-size:12.5px; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--glow); display:flex; align-items:center; gap:10px; margin-bottom:14px;
}
.eyebrow::before{ content:""; width:16px; height:1px; background:var(--glow); display:inline-block; }
.on-dark .eyebrow{ color:var(--glow-bg); }
.on-dark .eyebrow::before{ background:var(--glow-bg); }

.trace{ position:relative; display:inline-block; }
.trace::after{
  content:""; position:absolute; left:0; right:0; bottom:-8px; height:2px;
  background:linear-gradient(90deg, var(--glow), var(--ember) 60%, transparent);
  transform:scaleX(0); transform-origin:left; animation:trace-in 1.1s 0.3s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes trace-in{ to{ transform:scaleX(1); } }

.flicker span{ opacity:0; animation:flicker-on 0.7s steps(2) forwards; }
.flicker span:nth-child(1){ animation-delay:0.05s; }
.flicker span:nth-child(2){ animation-delay:0.22s; }
.flicker span:nth-child(3){ animation-delay:0.40s; }
.flicker span:nth-child(4){ animation-delay:0.55s; }
@keyframes flicker-on{ 0%{opacity:0;} 20%{opacity:1;} 35%{opacity:.2;} 55%{opacity:1;} 70%{opacity:.4;} 100%{opacity:1;} }

/* ================= HEADER / NAV ================= */
.site-header{
  position:sticky; top:0; z-index:100;
  background:var(--dark);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{ max-width:var(--maxw); margin:0 auto; padding:16px 24px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.brand{ display:flex; align-items:center; gap:10px; font-family:var(--display); font-weight:700; font-size:18px; color:var(--cream); }
.brand .bulb{ width:26px; height:26px; color:var(--glow-bg); }
.brand small{ display:block; font-family:var(--mono); font-weight:500; font-size:10px; letter-spacing:.12em; color:var(--muted-on-dark); text-transform:uppercase; }
.brand-logo{ height:42px; width:auto; display:block; }
.foot-brand .brand-logo{ height:46px; margin-bottom:2px; }
.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-links a{ font-size:14.5px; font-weight:500; color:var(--muted-on-dark); transition:color .2s; white-space:nowrap; }
.nav-links a:hover, .nav-links a:focus-visible{ color:var(--cream); }
.nav-links a.active{ color:var(--glow-bg); }
.nav-cta{ display:flex; align-items:center; gap:12px; }

.btn{
  display:inline-flex; align-items:center; gap:8px; font-family:var(--body); font-weight:600; font-size:14.5px;
  padding:11px 22px; border-radius:999px; border:1px solid transparent; cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease; white-space:nowrap;
}
.btn:focus-visible{ outline:2px solid var(--glow); outline-offset:2px; }
.btn-ember{ background:var(--ember); color:#FFFFFF; box-shadow:0 6px 18px -6px rgba(240,119,15,.5); }
.btn-ember:hover{ transform:translateY(-1px); background:var(--ember-deep); box-shadow:0 10px 22px -6px rgba(240,119,15,.6); }
.btn-outline{ border-color:var(--line-strong); color:var(--ink); }
.btn-outline:hover{ border-color:var(--glow); color:var(--glow); }
.btn-dark{ background:var(--dark); color:var(--cream); }
.btn-dark:hover{ transform:translateY(-1px); }
.site-header .btn-outline, .on-dark .btn-outline{ border-color:rgba(255,255,255,.3); color:var(--cream); }
.site-header .btn-outline:hover, .on-dark .btn-outline:hover{ border-color:var(--glow-bg); color:var(--glow-bg); }

.menu-toggle{ display:none; background:none; border:1px solid rgba(255,255,255,.25); border-radius:8px; width:42px; height:38px; color:var(--cream); cursor:pointer; }

/* ================= HERO ================= */
.hero{ position:relative; overflow:hidden; padding:64px 0 60px; background:var(--dark); border-bottom:none; }
.hero-grid{ max-width:var(--maxw); margin:0 auto; padding:0 24px; display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
.hero h1{ font-size:clamp(32px, 4.6vw, 54px); color:var(--cream); margin-bottom:20px; }
.hero h1 .amber{ color:var(--glow-bg); }
.hero p.lede{ font-size:17.5px; color:var(--muted-on-dark); max-width:46ch; margin-bottom:30px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:34px; }
.hero .btn-outline{ border-color:rgba(255,255,255,.3); color:var(--cream); }
.hero .btn-outline:hover{ border-color:var(--glow-bg); color:var(--glow-bg); }
.trust-strip{ display:flex; flex-wrap:wrap; gap:22px 30px; border-top:1px solid rgba(255,255,255,.12); padding-top:22px; }
.trust-item{ display:flex; align-items:center; gap:9px; font-size:13.5px; color:var(--muted-on-dark); }
.trust-item svg{ width:18px; height:18px; color:var(--glow-bg); flex-shrink:0; }

.hero-visual-wrap{ position:relative; }
.hero-visual{ position:relative; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line-strong); aspect-ratio:4/5; box-shadow:0 20px 40px -20px rgba(10,20,35,.25); }
.hero-visual img{ width:100%; height:100%; object-fit:cover; }
.hero-visual-wrap .badge{
  position:absolute; left:16px; bottom:16px; right:16px;
  background:rgba(9,17,28,0.82); border:1px solid rgba(255,255,255,.15); border-radius:var(--radius-sm);
  padding:14px 16px; font-family:var(--mono); font-size:12px; color:var(--glow-bg); backdrop-filter:blur(6px);
}
.hero-visual-wrap .badge b{ display:block; font-family:var(--display); font-size:22px; color:var(--cream); margin-bottom:2px; }

/* ================= INFO CARD (business quick-info widget) ================= */
.info-card{
  display:flex; flex-wrap:wrap; align-items:center; gap:22px 6px;
  background:var(--panel); border:1px solid var(--line-strong); border-radius:var(--radius);
  padding:22px 28px; box-shadow:0 16px 34px -20px rgba(10,20,35,.3); position:relative; z-index:2;
}
.info-card .ic-block{ display:flex; align-items:center; gap:14px; font-size:14px; color:var(--ink-muted); padding:2px 24px; border-right:1px solid var(--line); }
.info-card .ic-block:first-child{ padding-left:0; }
.info-card .ic-block:last-of-type{ border-right:none; }
.info-card .ic-icon{ width:42px; height:42px; flex-shrink:0; border-radius:50%; border:1.5px solid var(--glow-soft); background:var(--glow-soft); color:var(--glow); display:flex; align-items:center; justify-content:center; }
.info-card .ic-icon svg{ width:19px; height:19px; }
.info-card .ic-text{ display:flex; flex-direction:column; gap:2px; }
.info-card .ic-text b{ font-family:var(--display); font-weight:600; font-size:14.5px; color:var(--ink); }
.info-card .ic-text small{ font-size:12.5px; color:var(--ink-muted); }
.info-card .ic-actions{ margin-left:auto; display:flex; gap:10px; flex-wrap:wrap; padding-left:20px; }
.info-card-overlap{ margin-top:-44px; }

/* ================= MOBILE STICKY CALL BAR ================= */
.sticky-call{
  position:fixed; left:0; right:0; bottom:0; z-index:200; display:none;
  background:var(--dark); border-top:1px solid rgba(255,255,255,.12);
  padding:10px 14px calc(10px + env(safe-area-inset-bottom)); gap:10px;
}
.sticky-call a{ flex:1; text-align:center; padding:13px 10px; border-radius:999px; font-weight:700; font-size:14.5px; display:flex; align-items:center; justify-content:center; gap:8px; }
.sticky-call .call{ background:var(--ember); color:#FFFFFF; }
.sticky-call .quote{ background:transparent; border:1px solid rgba(255,255,255,.3); color:var(--cream); }

/* ================= SECTIONS ================= */
section{ padding:76px 0; }
.section-head{ max-width:640px; margin-bottom:44px; }
.section-head h2{ font-size:clamp(26px,3.4vw,38px); color:var(--ink); }
.section-head p{ margin-top:14px; color:var(--ink-muted); font-size:16px; }

.alt{ background:var(--bg-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

.on-dark{ background:var(--dark); color:var(--cream); }
.on-dark .section-head h2{ color:var(--cream); }
.on-dark .section-head p{ color:var(--muted-on-dark); }

.grid{ display:grid; gap:20px; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.contact-grid{ grid-template-columns:1fr 1.2fr; gap:48px; align-items:start; }

.card{ background:var(--panel); border:1px solid var(--line); border-radius:var(--radius); padding:26px; transition:border-color .2s, transform .2s, box-shadow .2s; }
.card:hover{ border-color:var(--line-strong); transform:translateY(-2px); box-shadow:0 14px 28px -18px rgba(10,20,35,.3); }
.card .ic{ width:52px; height:52px; padding:13px; box-sizing:border-box; color:var(--glow); border:1.5px solid var(--glow); background:var(--panel); border-radius:50%; margin-bottom:18px; }
.card h3{ font-size:17px; color:var(--ink); margin-bottom:8px; }
.card p{ font-size:14.5px; color:var(--ink-muted); }
.card-img{ border-radius:8px; overflow:hidden; aspect-ratio:16/10; margin-bottom:16px; }
.card-img img{ width:100%; height:100%; object-fit:cover; }

.gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.gallery-item{ position:relative; border-radius:var(--radius-sm); overflow:hidden; aspect-ratio:4/3; background:var(--bg-alt); }
.gallery-item img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s ease; }
.gallery-item:hover img{ transform:scale(1.06); }
.gallery-item .gallery-caption{
  position:absolute; left:0; right:0; bottom:0; padding:12px 14px 10px;
  background:linear-gradient(0deg, rgba(10,20,35,.88), rgba(10,20,35,0));
  color:#fff; font-size:12.5px; font-weight:600; letter-spacing:.01em;
}
.gallery-category{ margin-bottom:14px; }

/* ================= SERVING AREA MAP BAND ================= */
.serving-band{ background:var(--dark); padding:64px 0; }
.serving-band h2{ color:var(--cream); font-size:clamp(24px,3vw,32px); margin-bottom:20px; }
.serving-list{ columns:3; column-gap:28px; margin-top:8px; }
.serving-list li{ color:var(--muted-on-dark); font-size:15px; padding:6px 0; break-inside:avoid; }
.serving-list a{ color:var(--cream); font-weight:600; }
.serving-list a:hover{ color:var(--glow-bg); }
.map-embed{ position:relative; border-radius:var(--radius); overflow:hidden; border:1px solid rgba(255,255,255,.12); aspect-ratio:4/3; box-shadow:0 20px 40px -20px rgba(0,0,0,.4); }
.map-embed iframe{ width:100%; height:100%; border:0; display:block; position:relative; z-index:0; filter:grayscale(50%) brightness(1.15) contrast(.9) saturate(105%); }
.map-embed::before{ content:""; position:absolute; inset:0; z-index:1; background:rgba(245,130,31,.05); mix-blend-mode:multiply; pointer-events:none; }
.map-embed::after{ content:""; position:absolute; inset:0; z-index:1; background:rgba(9,17,28,.04); pointer-events:none; }
.google-badge{
  display:inline-flex; align-items:center; gap:10px; background:var(--panel); border:1px solid var(--line-strong);
  border-radius:999px; padding:8px 18px 8px 10px; margin-top:18px; transition:border-color .2s, box-shadow .2s;
}
.google-badge:hover{ border-color:var(--line-strong); box-shadow:0 10px 24px -14px rgba(10,20,35,.3); }
.google-badge .g-logo{ width:22px; height:22px; flex-shrink:0; }
.google-badge span{ font-size:14px; font-weight:600; color:var(--ink); }
.google-badge small{ display:block; font-weight:500; font-size:12px; color:var(--ink-muted); }

.google-rating-card{
  display:inline-flex; align-items:center; gap:16px; background:var(--panel); border:1px solid var(--line-strong);
  border-radius:16px; padding:16px 24px; transition:border-color .2s, box-shadow .2s, transform .2s;
}
.google-rating-card:hover{ border-color:var(--line-strong); box-shadow:0 14px 30px -18px rgba(10,20,35,.35); transform:translateY(-1px); }
.google-rating-card .g-logo{ width:32px; height:32px; flex-shrink:0; }
.google-rating-card .grc-score{ font-family:var(--display); font-size:28px; line-height:1; color:var(--ink); }
.google-rating-card .grc-mid{ text-align:left; }
.google-rating-card .grc-mid .stars{ color:var(--glow); font-size:15px; letter-spacing:2px; display:block; }
.google-rating-card .grc-mid small{ display:block; font-weight:600; font-size:12.5px; color:var(--ink-muted); margin-top:2px; }
.google-rating-card .grc-cta{ font-size:13px; font-weight:700; color:var(--glow); border-left:1px solid var(--line-strong); padding-left:16px; margin-left:2px; white-space:nowrap; }
.on-dark .card{ background:var(--dark-panel); border-color:rgba(255,255,255,.1); }
.on-dark .card h3{ color:var(--cream); }
.on-dark .card p{ color:var(--muted-on-dark); }

.card-link{ margin-top:14px; display:inline-flex; align-items:center; gap:6px; font-size:13.5px; font-weight:600; color:var(--glow); }
.card-link svg{ width:14px; height:14px; }

/* centered service-card variant */
.card-center{ text-align:center; display:flex; flex-direction:column; align-items:center; padding:32px 26px; }
.card-center .ic{ width:58px; height:58px; padding:15px; margin-bottom:20px; }
.card-center h3{ margin-bottom:10px; }
.card-center .card-link{ margin-top:16px; }
.section-actions{ text-align:center; margin-top:40px; }

.split{ display:grid; grid-template-columns:.9fr 1.1fr; gap:56px; align-items:center; }
.split.rev{ grid-template-columns:1.1fr .9fr; }
.split.rev .split-media{ order:2; }
.split-media{ border-radius:var(--radius); overflow:hidden; border:1px solid var(--line-strong); aspect-ratio:5/4; box-shadow:0 16px 34px -20px rgba(10,20,35,.25); }
.split-media img{ width:100%; height:100%; object-fit:cover; }
.split-body h2{ font-size:clamp(24px,3vw,34px); margin-bottom:16px; }
.split-body p{ color:var(--ink-muted); font-size:16px; margin-bottom:14px; }
.stat-row{ display:flex; gap:28px; margin-top:26px; flex-wrap:wrap; }
.stat b{ display:block; font-family:var(--display); font-size:30px; color:var(--glow); }
.stat span{ font-size:13px; color:var(--ink-muted); }

.rating-badge{ display:inline-flex; align-items:center; gap:10px; background:var(--panel); border:1px solid var(--line-strong); border-radius:999px; padding:8px 16px 8px 8px; margin-bottom:18px; }
.rating-badge .stars{ color:var(--glow); font-size:15px; letter-spacing:2px; }
.rating-badge b{ font-family:var(--display); }

.tcard{ background:var(--panel); border:1px solid var(--line); border-radius:var(--radius); padding:30px 28px; box-shadow:0 14px 30px -22px rgba(10,20,35,.25); }
.tcard .quote-ic{ width:34px; height:34px; color:var(--glow-soft); margin-bottom:10px; }
.tcard .stars{ color:var(--glow); font-size:14px; letter-spacing:2px; margin-bottom:14px; display:block; }
.tcard p.quote{ font-size:15px; color:var(--ink); margin-bottom:20px; }
.tcard .who{ font-size:13px; color:var(--ink-muted); font-weight:600; font-family:var(--body); }
.tcard .placeholder-tag{ display:block; margin-top:12px; font-family:var(--body); font-size:10.5px; letter-spacing:.04em; color:var(--ink-muted); opacity:.65; }

.area-chip-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
.area-chip{ font-family:var(--mono); font-size:12.5px; color:var(--ink-muted); border:1px solid var(--line-strong); border-radius:999px; padding:8px 14px; transition:color .2s, border-color .2s, background .2s; background:var(--panel); }
.area-chip:hover{ color:var(--glow); border-color:var(--glow); }

.cta-band{ background:var(--dark); border-top:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08); padding:52px 0; }
.cta-inner{ display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.cta-inner h2{ font-size:clamp(22px,2.8vw,30px); color:var(--cream); max-width:520px; }
.cta-inner p{ color:var(--muted-on-dark); margin-top:8px; }
.cta-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ================= FOOTER ================= */
footer{ background:var(--dark); border-top:1px solid rgba(255,255,255,.08); padding:52px 0 26px; color:var(--cream); }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:36px; margin-bottom:36px; }
.foot-brand p{ color:var(--muted-on-dark); font-size:14px; margin-top:12px; max-width:32ch; }
.foot-social{ display:flex; gap:10px; margin-top:18px; }
.foot-social a{ width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; color:var(--muted-on-dark); transition:color .2s, border-color .2s; }
.foot-social a:hover{ color:var(--glow-bg); border-color:var(--glow-bg); }
.foot-social svg{ width:17px; height:17px; }
.foot-col h4{ font-family:var(--mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--glow-bg); margin-bottom:16px; }
.foot-col a, .foot-col li{ display:block; font-size:14px; color:var(--muted-on-dark); margin-bottom:10px; }
.foot-col a:hover{ color:var(--cream); }
.foot-contact{ display:flex !important; align-items:center; gap:9px; }
.foot-contact svg{ width:15px; height:15px; color:var(--glow-bg); flex-shrink:0; }
.foot-bottom{ border-top:1px solid rgba(255,255,255,.1); padding-top:20px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12.5px; color:var(--muted-on-dark); }
.foot-bottom .demo-flag{ color:var(--ember); }

/* ================= LOCAL SEO PAGE BLOCKS ================= */
.local-hero{ padding:56px 0 0; background:var(--bg); border-bottom:1px solid var(--line); }
.local-hero-inner{ padding-bottom:40px; }
.local-hero-media{ position:relative; aspect-ratio:21/8; overflow:hidden; }
.local-hero-media img{ width:100%; height:100%; object-fit:cover; }
.local-hero-media::after{ content:""; position:absolute; inset:0; background:linear-gradient(0deg, rgba(9,17,28,.75), rgba(9,17,28,.15) 60%); }
.local-hero-media .caption{ position:absolute; left:24px; bottom:18px; color:var(--cream); font-family:var(--mono); font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; }
.breadcrumb{ font-family:var(--mono); font-size:12px; color:var(--ink-muted); margin-bottom:18px; }
.breadcrumb a{ color:var(--ink-muted); }
.breadcrumb a:hover{ color:var(--glow); }
.local-hero h1{ font-size:clamp(28px,4vw,44px); color:var(--ink); max-width:16ch; }
.local-hero .lede{ color:var(--ink-muted); font-size:16.5px; max-width:60ch; margin-top:16px; }
.neighbor-list{ display:flex; flex-wrap:wrap; gap:8px; margin-top:22px; }
.neighbor-list span{ font-family:var(--mono); font-size:12px; color:var(--ink-muted); border:1px solid var(--line); border-radius:6px; padding:6px 10px; background:var(--panel); }
.local-content{ padding:60px 0; }
.local-content .grid-2{ gap:40px; }
.local-content h2{ font-size:22px; margin-bottom:14px; }
.local-content p{ color:var(--ink-muted); margin-bottom:14px; font-size:15.5px; }
.faq-heading{ display:flex; align-items:center; gap:10px; }
.faq-heading svg{ width:22px; height:22px; color:var(--glow); flex-shrink:0; }
.local-faq details{ border-bottom:1px solid var(--line); padding:16px 0; }
.local-faq summary{ cursor:pointer; font-weight:600; color:var(--ink); font-size:15px; }
.local-faq p{ margin-top:10px; }
.nearby-list{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.nearby-list a{
  font-family:var(--mono); font-size:12px; color:var(--ink-muted); border:1px solid var(--line); border-radius:6px;
  padding:6px 10px 6px 26px; background:var(--panel) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C6B7C' stroke-width='1.8'%3E%3Cpath d='M12 21s-7-6.1-7-11a7 7 0 0 1 14 0c0 4.9-7 11-7 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E") no-repeat 8px center / 12px 12px;
  transition:color .2s, border-color .2s;
}
.nearby-list a:hover{
  color:var(--glow); border-color:var(--glow);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F0770F' stroke-width='1.8'%3E%3Cpath d='M12 21s-7-6.1-7-11a7 7 0 0 1 14 0c0 4.9-7 11-7 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

/* ================= RESPONSIVE ================= */
@media (max-width:960px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual-wrap{ order:-1; }
  .hero-visual{ aspect-ratio:4/3; }
  .hero-visual-wrap .badge{
    position:static; margin-top:12px; backdrop-filter:none;
    background:var(--dark-panel); border-color:rgba(255,255,255,.1);
  }
  .split, .split.rev{ grid-template-columns:1fr; }
  .split.rev .split-media{ order:0; }
  .grid-3, .grid-4{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .foot-grid{ grid-template-columns:1fr 1fr; }
  .info-card-overlap{ margin-top:-28px; }
  .info-card .ic-actions{ margin-left:0; width:100%; padding-left:0; border-top:1px solid var(--line); padding-top:16px; }
  .serving-list{ columns:2; }
}
@media (max-width:720px){
  .nav-links{
    position:absolute; top:100%; left:0; right:0; bottom:auto;
    background:var(--dark); border-bottom:1px solid rgba(255,255,255,.1);
    flex-direction:column; align-items:flex-start; padding:22px 24px; gap:4px;
    max-height:80vh; overflow-y:auto; box-shadow:0 20px 40px -16px rgba(10,20,35,.4);
    opacity:0; visibility:hidden; transform:translateY(-6px);
    transition:opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .nav-links.open{ opacity:1; visibility:visible; transform:translateY(0); }
  .nav-links a{ font-size:17px; padding:12px 0; width:100%; }
  .nav-cta{ display:none; }
  .menu-toggle{ display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  section{ padding:52px 0; }
  .grid-3, .grid-4, .grid-2, .contact-grid{ grid-template-columns:1fr; }
  .serving-list{ columns:2; }
  .contact-grid{ gap:20px; }
  .sticky-call{ display:flex; }
  body{ padding-bottom:72px; }
  .cta-inner{ flex-direction:column; align-items:flex-start; }
  .foot-grid{ grid-template-columns:1fr; gap:28px; }
  .foot-bottom{ flex-direction:column; }
  .trust-strip{ gap:16px 22px; }
  .info-card{ flex-direction:column; align-items:flex-start; }
  .info-card .ic-block{ border-right:none; border-bottom:1px solid var(--line); padding:0 0 16px; width:100%; }
  .google-rating-card{ flex-wrap:wrap; justify-content:center; padding:16px 18px; gap:10px 14px; max-width:100%; }
  .google-rating-card .grc-mid{ text-align:center; }
  .google-rating-card .grc-cta{ border-left:none; border-top:1px solid var(--line-strong); padding-left:0; padding-top:10px; margin-left:0; margin-top:2px; width:100%; text-align:center; }
  .info-card .ic-block:first-child{ padding-left:0; }
  .info-card .ic-block:last-of-type{ border-bottom:none; }
  .info-card-overlap{ margin-top:-16px; }
}
