/* =====================================================================
   Virginia Beach Electricians — Global Stylesheet
   Design tokens: charcoal base + electric-amber accent + steel-blue.
   Fonts: Sora (headings) / Manrope (body). Mobile-first.
   No frameworks. Plain CSS only.
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colors */
  --charcoal:      #14161C;   /* base dark */
  --charcoal-2:    #1D2029;   /* raised dark surface */
  --charcoal-3:    #2A2E39;   /* borders on dark */
  --amber:         #F5A623;   /* primary accent (electric amber) */
  --amber-bright:  #FFB627;   /* hover / glow */
  --amber-soft:    #FBE7C2;   /* tint background */
  --steel:         #2E4A6B;   /* secondary cool blue */
  --steel-light:   #4C6C93;
  --ink:           #1B1D22;   /* body text on light */
  --ink-soft:      #4A4E58;   /* muted text */
  --line:          #E4DFD6;   /* hairline on light */
  --bg:            #F7F5F1;   /* warm off-white page bg */
  --bg-card:       #FFFFFF;
  --white:         #FFFFFF;
  --danger:        #C0392B;   /* hazard red for warnings */
  --success:       #2E7D5B;

  /* Typography */
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;   --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;

  /* Radius + shadow */
  --r-sm: 6px; --r-md: 10px; --r-lg: 18px; --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(20,22,28,.08);
  --shadow-md: 0 10px 30px rgba(20,22,28,.12);
  --shadow-amber: 0 8px 22px rgba(245,166,35,.35);

  --wrap: 1180px;
  --header-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--steel); text-decoration: none; }
a:hover { color: var(--amber); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--ink); font-weight: 700; margin: 0 0 var(--sp-4); }
h1 { font-size: clamp(2rem, 5.2vw, 3.15rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.35rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
p { margin: 0 0 var(--sp-4); }
ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.2rem; }
li { margin-bottom: var(--sp-2); }
strong { font-weight: 700; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--sp-5); }
.section { padding-block: var(--sp-8); }
.section--tight { padding-block: var(--sp-7); }
.section--dark { background: var(--charcoal); color: #D9DCE3; }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--tint { background: linear-gradient(180deg, #FBF9F5, #F2EEE6); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--steel);
  margin-bottom: var(--sp-3);
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--amber); border-radius: 2px; }
.section--dark .eyebrow { color: var(--amber-bright); }
.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 62ch; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.grid { display: grid; gap: var(--sp-5); }
.g-2 { grid-template-columns: 1fr; }
.g-3 { grid-template-columns: 1fr; }
.g-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .g-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 860px) {
  .g-3 { grid-template-columns: repeat(3,1fr); }
  .g-4 { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 1040px) { .g-4 { grid-template-columns: repeat(4,1fr); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: var(--r-sm); border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  line-height: 1; text-align: center;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--call { background: var(--amber); color: var(--charcoal); box-shadow: var(--shadow-amber); }
.btn--call:hover { background: var(--amber-bright); color: var(--charcoal); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber-bright); }
.btn--dark { background: var(--charcoal); color: var(--white); }
.btn--dark:hover { background: var(--steel); color: var(--white); transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* pulsing call button */
.pulse { position: relative; }
.pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(245,166,35,.6); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,166,35,.55); }
  70% { box-shadow: 0 0 0 14px rgba(245,166,35,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,166,35,0); }
}
@media (prefers-reduced-motion: reduce) { .pulse::after { animation: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(20,22,28,.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--charcoal-3);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand img { height: 40px; width: auto; }
.brand .brand-txt { font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 1.05rem; line-height: 1.05; }
.brand .brand-txt span { display: block; color: var(--amber-bright); font-size: .68rem; letter-spacing: .1em; font-weight: 700; }

.main-nav { display: none; }
@media (min-width: 1040px) { .main-nav { display: flex; align-items: center; gap: .2rem; } }
.main-nav > ul { display: flex; list-style: none; margin: 0; padding: 0; gap: .1rem; }
.main-nav a { color: #D9DCE3; font-family: var(--font-head); font-weight: 600; font-size: .95rem; padding: .55rem .7rem; border-radius: var(--r-sm); display: inline-block; }
.main-nav a:hover, .main-nav .has-drop:hover > a { color: var(--white); background: var(--charcoal-2); }
.has-drop { position: relative; }
.has-drop > a::after { content: "▾"; font-size: .7rem; margin-left: .3rem; color: var(--amber); }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: var(--white); border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: .5rem; list-style: none; margin: .4rem 0 0; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: .18s ease; border: 1px solid var(--line);
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { color: var(--ink); font-weight: 600; font-size: .9rem; padding: .5rem .7rem; border-radius: var(--r-sm); }
.dropdown a:hover { background: var(--amber-soft); color: var(--charcoal); }
.header-cta { display: flex; align-items: center; gap: .6rem; }
.header-phone { display: none; }
@media (min-width: 560px) { .header-phone { display: inline-flex; } }

/* burger */
.burger { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
@media (min-width: 1040px) { .burger { display: none; } }
.burger span { width: 26px; height: 3px; background: var(--white); border-radius: 2px; transition: .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 899;
  background: var(--charcoal); padding: var(--sp-5); overflow-y: auto;
  transform: translateX(100%); transition: transform .28s ease; visibility: hidden;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--charcoal-3); }
.mobile-nav a { color: #E4E6EB; font-family: var(--font-head); font-weight: 600; display: block; padding: .85rem .2rem; }
.mobile-nav a:hover { color: var(--amber-bright); }
.m-group > button {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: 0; color: #E4E6EB; font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; padding: .85rem .2rem; cursor: pointer;
}
.m-group > button::after { content: "+"; color: var(--amber); font-size: 1.3rem; }
.m-group.open > button::after { content: "–"; }
.m-sub { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding-left: .8rem; }
.m-group.open .m-sub { max-height: 900px; }
.m-sub a { font-weight: 500; font-size: .92rem; padding: .55rem .2rem; color: #B9BDC7; }
.mobile-nav .btn { margin-top: var(--sp-5); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--charcoal); color: #DfE2E9; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(245,166,35,.16), transparent 42%),
    linear-gradient(120deg, #14161C 46%, rgba(20,22,28,.5) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; display: grid; gap: var(--sp-6); padding-block: var(--sp-8); }
@media (min-width: 940px) { .hero-inner { grid-template-columns: 1.1fr .9fr; align-items: center; padding-block: var(--sp-9); } }
.hero h1 { color: var(--white); }
.hero h1 .hl { color: var(--amber-bright); }
.hero-sub { font-size: 1.15rem; color: #C6CAD3; max-width: 54ch; margin-bottom: var(--sp-5); }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: var(--sp-5); }
.badge {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 700;
  font-family: var(--font-head); background: var(--charcoal-2); border: 1px solid var(--charcoal-3);
  color: #E4E6EB; padding: .4rem .8rem; border-radius: var(--r-pill);
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(46,125,91,.25); }
.badge--amber { border-color: rgba(245,166,35,.4); color: var(--amber-bright); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.hero-media .float-card {
  position: absolute; bottom: -18px; left: -10px; background: var(--white); color: var(--ink);
  border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: .8rem 1rem; display: flex; align-items: center; gap: .7rem;
  max-width: 230px;
}
.hero-media .float-card .num { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--steel); }
.hero-media .float-card small { color: var(--ink-soft); font-size: .78rem; }

/* trust strip */
.trust-strip { background: var(--charcoal-2); border-top: 1px solid var(--charcoal-3); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; justify-content: center; padding-block: var(--sp-4); }
.trust-item { display: flex; align-items: center; gap: .5rem; color: #C6CAD3; font-size: .9rem; font-weight: 600; font-family: var(--font-head); }
.trust-item svg { width: 20px; height: 20px; color: var(--amber); }

/* ---------- Answer-first block ---------- */
.answer-box {
  background: var(--white); border-left: 5px solid var(--amber); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); padding: var(--sp-5) var(--sp-6); margin-bottom: var(--sp-6);
}
.answer-box .q { font-family: var(--font-head); font-weight: 700; color: var(--steel); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .4rem; }
.answer-box p:last-child { margin-bottom: 0; font-size: 1.1rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.card-body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .5rem; }
.card-body p { color: var(--ink-soft); font-size: .96rem; }
.card .card-link { margin-top: auto; font-family: var(--font-head); font-weight: 700; color: var(--steel); font-size: .92rem; display: inline-flex; align-items: center; gap: .35rem; }
.card .card-link::after { content: "→"; transition: transform .2s; }
.card:hover .card-link::after { transform: translateX(4px); }
.card--icon { padding: var(--sp-5); }
.icon-badge {
  width: 52px; height: 52px; border-radius: var(--r-md); background: var(--amber-soft);
  display: grid; place-items: center; margin-bottom: var(--sp-4);
}
.icon-badge svg { width: 26px; height: 26px; color: var(--steel); }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; gap: var(--sp-4); }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2,1fr); } }
.step {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: var(--sp-5) var(--sp-5) var(--sp-5) 4.2rem; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 1.1rem; top: 1.2rem; font-family: var(--font-head); font-weight: 800;
  font-size: 1.35rem; color: var(--amber); background: var(--charcoal); width: 2.2rem; height: 2.2rem;
  display: grid; place-items: center; border-radius: var(--r-sm);
}
.step h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Bullets / signs ---------- */
.check-list { list-style: none; padding: 0; display: grid; gap: .7rem; }
@media (min-width: 700px) { .check-list.cols2 { grid-template-columns: repeat(2,1fr); } }
.check-list li { position: relative; padding-left: 2rem; margin: 0; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .25rem; width: 1.25rem; height: 1.25rem;
  background: var(--amber); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/70% no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/70% no-repeat;
}
.warn-list { list-style: none; padding: 0; display: grid; gap: .7rem; }
.warn-list li { position: relative; padding-left: 2rem; margin: 0; }
.warn-list li::before {
  content: "!"; position: absolute; left: 0; top: .05rem; width: 1.35rem; height: 1.35rem;
  background: var(--danger); color: #fff; border-radius: 50%; font-family: var(--font-head);
  font-weight: 800; font-size: .85rem; display: grid; place-items: center;
}

/* ---------- Timeline (what happens if you wait) ---------- */
.timeline { list-style: none; padding: 0; margin: 0; border-left: 3px solid var(--charcoal-3); }
.section--dark .timeline { border-color: #3a3f4c; }
.timeline li { position: relative; padding: 0 0 var(--sp-5) var(--sp-5); }
.timeline li::before { content: ""; position: absolute; left: -8px; top: 4px; width: 13px; height: 13px; border-radius: 50%; background: var(--amber); }
.timeline .when { font-family: var(--font-head); font-weight: 800; color: var(--amber-bright); font-size: .9rem; display: block; }

/* ---------- Prep / do-before ---------- */
.prep-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 760px) { .prep-grid { grid-template-columns: repeat(2,1fr); } }
.prep-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-4) var(--sp-5); }
.prep-item h4 { font-family: var(--font-head); margin: 0 0 .3rem; color: var(--ink); font-size: 1.02rem; }
.prep-item p { margin: 0; color: var(--ink-soft); font-size: .93rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--charcoal); color: #E4E6EB; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(245,166,35,.18), transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(46,74,107,.35), transparent 45%);
}
.cta-band .wrap { position: relative; z-index: 2; display: grid; gap: var(--sp-5); align-items: center; padding-block: var(--sp-7); }
@media (min-width: 860px) { .cta-band .wrap { grid-template-columns: 1.4fr auto; } }
.cta-band h2 { color: var(--white); margin-bottom: .5rem; }
.cta-band p { color: #C6CAD3; margin: 0; max-width: 60ch; }
.cta-actions { display: flex; flex-direction: column; gap: .7rem; }
.cta-actions .phone-lg { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--white); text-align: center; }
.cta-actions .phone-lg:hover { color: var(--amber-bright); }
.cta-band--amber { background: var(--amber); color: var(--charcoal); }
.cta-band--amber::before { background: radial-gradient(circle at 88% 20%, rgba(255,255,255,.28), transparent 42%); }
.cta-band--amber h2, .cta-band--amber .phone-lg { color: var(--charcoal); }
.cta-band--amber p { color: #4a3a12; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--white); margin-bottom: .8rem; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink);
  padding: 1.1rem 3rem 1.1rem 1.2rem; position: relative;
}
.faq-q::after { content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); color: var(--amber); font-size: 1.5rem; font-weight: 700; }
.faq-item.open .faq-q::after { content: "–"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 1.2rem 1.1rem; color: var(--ink-soft); }
.faq-item.open .faq-a { max-height: 600px; }

/* ---------- Tables ---------- */
.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); }
table.data { width: 100%; border-collapse: collapse; min-width: 480px; background: var(--white); }
table.data th, table.data td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--line); font-size: .95rem; }
table.data th { background: var(--charcoal); color: var(--white); font-family: var(--font-head); font-size: .85rem; letter-spacing: .03em; }
table.data tr:last-child td { border-bottom: 0; }
table.data tbody tr:nth-child(even) { background: #FBF9F5; }

/* ---------- Breadcrumbs ---------- */
.crumbs { background: #EFEBE3; border-bottom: 1px solid var(--line); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .35rem; list-style: none; padding: .7rem 0; margin: 0; font-size: .85rem; }
.crumbs li::after { content: "/"; margin-left: .35rem; color: var(--ink-soft); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--steel); font-weight: 600; }
.crumbs li:last-child { color: var(--ink-soft); }

/* ---------- Related / link chips ---------- */
.link-chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { display: inline-flex; align-items: center; gap: .4rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-pill); padding: .5rem 1rem; font-weight: 600; font-size: .9rem; color: var(--steel); font-family: var(--font-head); }
.chip:hover { border-color: var(--amber); color: var(--charcoal); background: var(--amber-soft); }

/* ---------- Local: map / route ---------- */
.local-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-5); box-shadow: var(--shadow-sm); }
.stat-row { display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.stat { flex: 1 1 140px; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--amber); line-height: 1; }
.section--dark .stat .num { color: var(--amber-bright); }
.stat .lbl { font-size: .88rem; color: var(--ink-soft); }
.section--dark .stat .lbl { color: #AeB2Bd; }

/* ---------- Map embed fallback (no API key configured) ---------- */
.map-fallback { display: block; background: var(--charcoal); text-decoration: none; }
.map-fallback-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem;
  padding: 3.2rem 1.5rem; text-align: center; color: #E4E6EB;
  background: radial-gradient(circle at 30% 20%, rgba(245,166,35,.14), transparent 45%), var(--charcoal);
  transition: background .2s ease;
}
.map-fallback:hover .map-fallback-inner { background: radial-gradient(circle at 30% 20%, rgba(245,166,35,.22), transparent 45%), var(--charcoal-2); }
.map-fallback-inner svg { width: 34px; height: 34px; color: var(--amber); }
.map-fallback-inner strong { font-family: var(--font-head); font-size: 1.1rem; color: var(--white); }
.map-fallback-inner span { font-size: .88rem; color: #AeB2Bd; }

/* ---------- Author / EEAT box ---------- */
.author-box { display: flex; gap: 1rem; align-items: center; background: #EFEBE3; border-radius: var(--r-md); padding: var(--sp-4) var(--sp-5); margin-top: var(--sp-6); }
.author-box .ico { width: 44px; height: 44px; border-radius: 50%; background: var(--steel); display: grid; place-items: center; flex: none; }
.author-box .ico svg { width: 24px; height: 24px; color: #fff; }
.author-box p { margin: 0; font-size: .9rem; color: var(--ink-soft); }
.author-box strong { color: var(--ink); font-family: var(--font-head); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #AeB2Bd; padding-top: var(--sp-8); }
.footer-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-grid h4 { color: var(--white); font-size: .95rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .5rem; }
.footer-grid a { color: #AeB2Bd; font-size: .92rem; }
.footer-grid a:hover { color: var(--amber-bright); }
.footer-brand .brand-txt { color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; }
.footer-nap { font-size: .92rem; line-height: 1.7; }
.footer-nap a { color: var(--amber-bright); font-weight: 700; }
.footer-bottom { border-top: 1px solid var(--charcoal-3); margin-top: var(--sp-7); padding-block: var(--sp-5); font-size: .82rem; color: #7E828C; }
.footer-bottom .wrap { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; }
.footer-bottom a { color: #9aa0ab; }
.footer-disclaimer { font-size: .8rem; color: #6f7480; max-width: 70ch; margin-top: .6rem; }

/* ---------- Mobile sticky call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  display: flex; background: var(--charcoal); border-top: 1px solid var(--charcoal-3);
  padding: .5rem; gap: .5rem;
}
.callbar a { flex: 1; }
.callbar .btn { width: 100%; padding: .95rem; font-size: 1.05rem; }
.callbar .btn--map { background: var(--charcoal-2); color: #fff; border: 1px solid var(--charcoal-3); flex: 0 0 54px; }
.callbar .btn--map svg { width: 22px; height: 22px; }
@media (min-width: 1040px) { .callbar { display: none; } }
body { padding-bottom: 74px; }
@media (min-width: 1040px) { body { padding-bottom: 0; } }

/* ---------- Dividers ---------- */
.bolt-div { height: 4px; background: repeating-linear-gradient(90deg, var(--amber) 0 22px, transparent 22px 34px); opacity: .5; border: 0; margin: 0; }
.angle-top { position: relative; }
.angle-top::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 40px; background: inherit; clip-path: polygon(0 0, 100% 100%, 0 100%); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Image credit note ---------- */
.img-credit { font-size: .74rem; color: #7E828C; margin-top: .4rem; }

/* ---------- Prose spacing for legal/blog ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { margin-top: var(--sp-7); }
.prose h3 { margin-top: var(--sp-5); }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: .5rem; }
