/* Edwin Electric — design system */
:root {
  --gold: #FFBE59;
  --gold-dim: #E5A946;
  --gold-glow: rgba(255,190,89,.35);
  --navy: #01365E;
  --navy-deep: #011E37;
  --ink: #0B1220;
  --slate: #2A3341;
  --mist: #F5F6F8;
  --paper: #FDFDFB;
  --line: rgba(11,18,32,.08);
  --line-strong: rgba(11,18,32,.16);
  --max: 1240px;
  --wide: 1440px;
  --radius: 4px;
  --radius-lg: 24px;
  --shadow: 0 1px 2px rgba(1,54,94,.06), 0 8px 24px rgba(1,54,94,.08);
  --shadow-lift: 0 4px 12px rgba(1,54,94,.10), 0 24px 56px rgba(1,54,94,.14);
  --f-display: "Bebas Neue", "Oswald", "Impact", system-ui, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-serif: "Fraunces", "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(.2,.7,.2,1);
  --dur: .5s;
}

/* Smooth cross-document page transitions where supported (Chrome/Edge/Safari 18+).
   Falls back to normal navigation silently in older browsers. */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vtFadeOut .18s var(--ease) both; }
::view-transition-new(root) { animation: vtFadeIn .22s var(--ease) both; }
@keyframes vtFadeOut { to { opacity: 0; } }
@keyframes vtFadeIn  { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

/* Skip link */
.skip { position: absolute; left: -9999px; top: 0; padding: 12px 16px; background: var(--navy); color: white; z-index: 9999; }
.skip:focus { left: 12px; top: 12px; }

/* ============ TYPE ============ */
.eyebrow {
  font: 700 12px/1 var(--f-body);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .95;
  text-transform: uppercase;
}
h1.display { font-size: clamp(52px, 8.4vw, 128px); }
h2.display { font-size: clamp(40px, 6vw, 88px); }
h3.display { font-size: clamp(28px, 3.6vw, 52px); }

h1, h2, h3, h4 { color: var(--ink); }
h2.section { font: 600 clamp(28px, 3.6vw, 44px)/1.15 var(--f-serif); letter-spacing: -.01em; }
h2.section em { color: var(--gold-dim); font-style: normal; }
h3.tile-title { font: 600 22px/1.2 var(--f-serif); }
p.lede { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.55; color: var(--slate); max-width: 640px; }

/* ============ CONTAINER + GRID ============ */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.wide { max-width: var(--wide); }
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

/* ============ NAV ============ */
.top-strip {
  background: var(--navy-deep); color: rgba(255,255,255,.85);
  font: 500 13px/1 var(--f-body); letter-spacing: .02em;
}
.top-strip .container { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 24px; }
.top-strip a { color: var(--gold); font-weight: 600; }
.top-strip .badges { display: flex; gap: 20px; }
.top-strip .badges span::before { content: "⚡"; color: var(--gold); margin-right: 6px; }
@media (max-width: 720px) { .top-strip .badges { display: none; } }

header.site {
  position: sticky; top: 0; z-index: 40;
  background: rgba(253,253,251,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
header.site .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 84px; gap: 28px;
  max-width: 1440px; /* wider than main container so nav fits */
}
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand img { height: 48px; width: auto; }
.brand-word { font: 800 18px/1 var(--f-body); letter-spacing: .06em; text-transform: uppercase; color: var(--navy); white-space: nowrap; }
.brand-word em { color: var(--gold-dim); font-style: normal; font-weight: 500; letter-spacing: .16em; font-size: 10px; display: block; margin-top: 5px; white-space: nowrap; }

nav.primary { display: flex; align-items: center; }
nav.primary > ul { list-style: none; display: flex; gap: 2px; }
nav.primary > ul > li { position: relative; }
nav.primary a.nav-item {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: var(--radius);
  font: 600 14px/1 var(--f-body); color: var(--ink);
  white-space: nowrap;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
nav.primary a.nav-item:hover, nav.primary a.nav-item[aria-current="page"] { color: var(--gold-dim); }
nav.primary li.has-sub > a.nav-item::after { content: ""; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; opacity: .6; }

.submenu {
  position: absolute; top: calc(100% + 8px); left: -12px;
  min-width: 320px; padding: 12px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lift);
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  list-style: none;
}
li.has-sub:hover .submenu, li.has-sub:focus-within .submenu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.submenu a { display: flex; align-items: baseline; gap: 10px; padding: 10px 14px; border-radius: 8px; font: 500 15px/1.3 var(--f-body); color: var(--ink); transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.submenu a:hover { background: var(--mist); color: var(--gold-dim); }
.submenu a::before { content: "→"; color: var(--gold-dim); opacity: 0; transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); transform: translateX(-6px); }
.submenu a:hover::before { opacity: 1; transform: translateX(0); }
.submenu-heading { padding: 8px 14px; font: 600 11px/1 var(--f-body); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dim); }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.phone-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: var(--radius); color: var(--navy); font: 700 15px/1 var(--f-body); border: 1px solid var(--line-strong); white-space: nowrap; transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.phone-link:hover { background: var(--navy); color: white; border-color: var(--navy); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: var(--radius); font: 700 14px/1 var(--f-body); letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease); }
.btn.primary { background: var(--gold); color: var(--navy-deep); box-shadow: 0 4px 14px var(--gold-glow); }
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px var(--gold-glow); }
.btn.dark { background: var(--navy); color: white; }
.btn.dark:hover { background: var(--navy-deep); }
.btn.ghost { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn.ghost:hover { background: var(--navy); color: white; }

button.menu-btn { display: none; padding: 10px; }
button.menu-btn span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .3s var(--ease), opacity .3s var(--ease); }
@media (max-width: 1180px) {
  nav.primary { display: none; }
  .nav-cta .btn { display: none; }
  button.menu-btn { display: block; }
}
@media (max-width: 720px) {
  header.site .container { min-height: 68px; gap: 12px; padding: 0 16px; }
  .brand img { height: 36px; }
  .brand-word { font-size: 14px; letter-spacing: .04em; }
  .brand-word em { font-size: 9px; }
  .phone-link { padding: 8px 10px; font-size: 13px; }
  button.menu-btn { padding: 8px; margin-left: -4px; }
  .nav-cta { gap: 6px; }
}
/* Very narrow phones: drop the tagline and shrink the phone pill to icon-only
   so the hamburger never gets squeezed off the right edge. */
@media (max-width: 480px) {
  .brand-word em { display: none; }
  .brand-word { font-size: 13px; }
  .phone-link { padding: 10px; }
  .phone-link .phone-num { display: none; }
  header.site .container { padding: 0 12px; }
}
.mobile-menu {
  display: flex; flex-direction: column;
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 100;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s linear .22s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s linear 0s;
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu { transform: none; transition: opacity .15s linear, visibility 0s linear .15s; }
  .mobile-menu.open { transition: opacity .15s linear, visibility 0s linear 0s; }
}
.mobile-menu-header {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: var(--paper); border-bottom: 1px solid var(--line);
  min-height: 68px;
}
.mobile-menu-header img { height: 36px; }
.mobile-menu-close {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--mist);
  display: grid; place-items: center; color: var(--navy);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.mobile-menu-close:hover { background: var(--gold); color: var(--navy-deep); }
.mobile-menu-close svg { width: 20px; height: 20px; }
.mobile-menu-scroll { flex: 1; overflow-y: auto; padding: 8px 20px 24px; -webkit-overflow-scrolling: touch; }
.mobile-menu ul { list-style: none; }
.mobile-menu > .mobile-menu-scroll > ul > li { border-bottom: 1px solid var(--line); }
.mobile-menu > .mobile-menu-scroll > ul > li:last-child { border-bottom: 0; }
.mobile-menu a.mm-link {
  display: block; padding: 18px 4px;
  font: 700 18px/1.2 var(--f-body); color: var(--navy);
  transition: color var(--dur) var(--ease);
}
.mobile-menu a.mm-link:hover, .mobile-menu a.mm-link[aria-current="page"] { color: var(--gold-dim); }
.mobile-menu .submenu-mobile {
  padding: 4px 0 16px 0;
  display: grid; gap: 2px;
}
.mobile-menu .submenu-mobile a {
  display: block; padding: 12px 14px;
  font: 500 15px/1.3 var(--f-body); color: var(--slate);
  background: var(--mist); border-radius: 4px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.mobile-menu .submenu-mobile a:hover, .mobile-menu .submenu-mobile a:active { background: var(--gold); color: var(--navy-deep); }
.mobile-menu .submenu-mobile-title {
  padding: 12px 4px 6px;
  font: 700 11px/1 var(--f-body); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dim);
}
.mobile-menu-footer {
  position: sticky; bottom: 0; z-index: 5;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
  background: var(--paper);
  border-top: 1px solid var(--line);
  display: grid; gap: 10px;
  box-shadow: 0 -8px 20px rgba(1,54,94,.06);
}
.mobile-menu-footer .btn { width: 100%; justify-content: center; padding: 16px; font-size: 15px; }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(80px, 12vh, 140px) 0 clamp(80px, 12vh, 140px);
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: white;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url('/assets/photos/rough-in-wiring-hero.jpg') center right / cover no-repeat;
  opacity: .3;
  filter: saturate(1.1) contrast(1.05);
  z-index: -2;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(1,30,55,.85) 0%, rgba(1,30,55,.4) 55%, transparent 80%);
  z-index: -1;
}
.hero .container { position: relative; }
.hero .kicker { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border: 1px solid rgba(255,190,89,.4); border-radius: 100px; color: var(--gold); font: 600 12px/1 var(--f-body); letter-spacing: .18em; text-transform: uppercase; }
.hero .kicker span::before { content: "★"; margin-right: 6px; color: var(--gold); }
.hero h1 { color: white; margin: 24px 0 18px; max-width: 12ch; }
@media (max-width: 720px) {
  .hero h1 { max-width: none; }
  h1.display { font-size: clamp(42px, 11vw, 68px); }
  .hero .cta-row { flex-direction: column; align-items: stretch; }
  .hero .cta-row .btn { justify-content: center; }
  .hero .badges-row { flex-direction: column; gap: 18px; }
}
.hero h1 em { color: var(--gold); font-style: normal; display: block; }
.hero .sub { max-width: 560px; font: 400 clamp(17px, 1.5vw, 22px)/1.55 var(--f-body); color: rgba(255,255,255,.86); }
.hero .cta-row { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero .badges-row { display: flex; gap: 24px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.14); flex-wrap: wrap; }
.hero .badge { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); font: 500 13px/1.2 var(--f-body); }
.hero .badge .icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,190,89,.15); color: var(--gold); }
.hero .badge strong { display: block; color: white; font-weight: 700; font-size: 15px; }

.hero-mark {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 620px; height: 620px; opacity: .06;
  pointer-events: none; z-index: -1;
}
@media (max-width: 960px) { .hero-mark { display: none; } .hero .badges-row { gap: 16px; } }

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden; background: var(--navy-deep); color: var(--gold);
  border-top: 1px solid rgba(255,190,89,.14); border-bottom: 1px solid rgba(255,190,89,.14);
  padding: 22px 0;
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee-track span { font: 700 22px/1 var(--f-display); letter-spacing: .04em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 24px; }
.marquee-track span::after { content: "⚡"; color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============ STAT BAR ============ */
.stats { padding: 72px 0; background: var(--paper); }
.stats .grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { text-align: left; padding: 20px 0; border-top: 3px solid var(--gold); }
.stat .n { font-family: var(--f-display); font-size: clamp(56px, 6vw, 88px); line-height: .95; color: var(--navy); letter-spacing: -.01em; }
.stat .n small { font-family: var(--f-body); font-size: .4em; font-weight: 700; color: var(--gold-dim); margin-left: 4px; vertical-align: super; }
.stat .l { font: 500 14px/1.4 var(--f-body); color: var(--slate); margin-top: 8px; letter-spacing: .04em; text-transform: uppercase; }
@media (max-width: 900px) { .stats .grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ PILLARS ============ */
.pillars { padding: 100px 0; background: var(--mist); position: relative; overflow: hidden; }
.pillars .head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.pillar-card { position: relative; background: var(--paper); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.pillar-card .img { aspect-ratio: 4/3; overflow: hidden; }
.pillar-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.pillar-card:hover .img img { transform: scale(1.06); }
.pillar-card .body { padding: 28px 28px 32px; }
.pillar-card .n { font: 700 12px/1 var(--f-body); letter-spacing: .2em; color: var(--gold-dim); text-transform: uppercase; margin-bottom: 8px; }
.pillar-card h3 { font: 600 26px/1.15 var(--f-serif); margin-bottom: 12px; }
.pillar-card p { color: var(--slate); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.pillar-card .more { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font: 700 13px/1 var(--f-body); text-transform: uppercase; letter-spacing: .1em; transition: gap var(--dur) var(--ease); }
.pillar-card .more::after { content: "→"; transition: transform var(--dur) var(--ease); }
.pillar-card:hover .more { gap: 14px; color: var(--gold-dim); }

/* ============ SERVICES GRID ============ */
.services-grid { padding: 100px 0; background: var(--paper); }
.services-grid .head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.services-grid .head p { color: var(--slate); font-size: 18px; margin-top: 16px; }
.svc-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; background: var(--line); border-radius: 8px; overflow: hidden; }
@media (max-width: 900px) { .svc-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-list { grid-template-columns: 1fr; } }
.svc {
  background: var(--paper); padding: 32px; display: block;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  position: relative;
}
.svc::before { content: ""; position: absolute; left: 32px; top: 32px; width: 40px; height: 3px; background: var(--gold); transition: width var(--dur) var(--ease); }
.svc:hover { background: var(--navy); color: white; }
.svc:hover::before { width: 64px; background: var(--gold); }
.svc h3 { font: 600 20px/1.25 var(--f-serif); margin: 32px 0 8px; }
.svc p { font-size: 14px; line-height: 1.6; color: var(--slate); }
.svc:hover p { color: rgba(255,255,255,.75); }
.svc .go { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font: 700 12px/1 var(--f-body); letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dim); }
.svc:hover .go { color: var(--gold); }
.svc .go::after { content: "→"; }

/* ============ SERVICE AREA MAP ============ */
.area-map {
  padding: 100px 0 100px; background: var(--navy-deep); color: white;
  position: relative; overflow: hidden;
}
.area-map::before {
  content: ""; position: absolute; inset: 0; opacity: .08;
  background: radial-gradient(ellipse at 70% 40%, var(--gold) 0%, transparent 55%);
}
.area-map .container { position: relative; }
.area-map .layout {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 960px) { .area-map .layout { grid-template-columns: 1fr; gap: 40px; } }
.area-map .head h2 { color: white; }
.area-map .head em { color: var(--gold); font-style: normal; }
.area-map .head p { color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.65; max-width: 480px; margin-top: 20px; }
.area-map .head .counties-summary { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.area-map .head .counties-summary .row { display: flex; gap: 24px; margin-top: 12px; flex-wrap: wrap; }
.area-map .head .counties-summary .col { flex: 1; min-width: 180px; }
.area-map .head .counties-summary .col strong { color: var(--gold); font: 700 12px/1 var(--f-body); letter-spacing: .2em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.area-map .head .counties-summary .col span { color: rgba(255,255,255,.85); font: 500 14px/1.5 var(--f-body); }
.map-wrap { position: relative; }
.map-svg { width: 100%; height: auto; display: block; }
.map-svg .ocean-bg { fill: url(#oceanGrad); }
.map-svg .land { fill: rgba(255,255,255,.05); stroke: rgba(255,255,255,.10); stroke-width: 1; }
.map-svg .county { fill: rgba(255,190,89,.04); stroke: rgba(255,190,89,.4); stroke-width: 1.5; transition: fill var(--dur) var(--ease); }
.map-svg .county:hover { fill: rgba(255,190,89,.12); }
.map-svg .county-line { stroke: rgba(255,190,89,.5); stroke-width: 1; stroke-dasharray: 6 6; fill: none; }
.map-svg .coast { fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-linecap: round; }
.map-svg .evergrass { fill: url(#evergladesHatch); opacity: .35; }
.map-svg .county-label { font: 800 15px/1 var(--f-body); fill: var(--gold); letter-spacing: .12em; text-transform: uppercase; }
.map-svg .county-sub { font: 500 10px/1 var(--f-body); fill: rgba(255,255,255,.5); letter-spacing: .12em; text-transform: uppercase; }
.map-svg .city { cursor: pointer; }
.map-svg .city .pin-halo { fill: var(--gold); opacity: 0; transition: opacity .3s var(--ease); }
.map-svg .city:hover .pin-halo { opacity: .3; }
.map-svg .pin { fill: var(--gold); }
.map-svg .pin.hq { fill: white; stroke: var(--gold); stroke-width: 3; }
.map-svg .pin.hq-ring { fill: none; stroke: var(--gold); stroke-width: 1.5; opacity: .5; }
.map-svg .city-label { font: 600 12px/1 var(--f-body); fill: white; }
.map-svg .city-label.hq-lbl { fill: var(--gold); font-weight: 800; font-size: 13px; letter-spacing: .04em; }
.map-svg .ocean-lbl { font: italic 500 12px/1 var(--f-serif); fill: rgba(255,255,255,.4); letter-spacing: .32em; text-transform: uppercase; }
.map-svg .evergrass-lbl { font: italic 400 11px/1 var(--f-serif); fill: rgba(255,255,255,.35); letter-spacing: .18em; text-transform: uppercase; }
.map-svg .compass { fill: rgba(255,190,89,.6); font: 700 11px/1 var(--f-body); letter-spacing: .1em; }
@keyframes hqpulse { 0%,100% { r: 22; opacity: .35; } 50% { r: 32; opacity: 0; } }
.map-svg .pin.hq-pulse { fill: var(--gold); animation: hqpulse 2.4s ease-in-out infinite; }

.area-list {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 72px;
}
@media (max-width: 900px) { .area-list { grid-template-columns: repeat(2, 1fr); } }
.area-chip {
  display: flex; align-items: center; gap: 10px; padding: 14px 18px;
  border: 1px solid rgba(255,190,89,.25); border-radius: var(--radius);
  color: white; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  font: 500 14px/1 var(--f-body);
}
.area-chip:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); transform: translateY(-2px); }
.area-chip::before { content: "●"; color: var(--gold); font-size: 10px; }
.area-chip:hover::before { color: var(--navy-deep); }

/* ============ OWNER STORY ============ */
.owner { padding: 120px 0; background: var(--mist); position: relative; }
.owner .grid { grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .owner .grid { grid-template-columns: 1fr; gap: 40px; } }
.owner .img { position: relative; }
.owner .img img { border-radius: 4px; box-shadow: var(--shadow-lift); }
.owner .img::before {
  content: ""; position: absolute; top: -24px; left: -24px; right: 40px; bottom: 40px;
  background: var(--gold); z-index: -1; border-radius: 4px;
}
.owner .quote { font: 500 clamp(24px, 2.4vw, 32px)/1.3 var(--f-serif); color: var(--navy); margin-bottom: 32px; }
.owner .quote::before { content: "\201C"; color: var(--gold); font-size: 1.4em; margin-right: 4px; }
.owner .quote::after { content: "\201D"; color: var(--gold); font-size: 1.4em; }
.owner .name { font: 700 16px/1 var(--f-body); letter-spacing: .1em; text-transform: uppercase; color: var(--navy); }
.owner .role { color: var(--gold-dim); margin-top: 6px; font: 500 14px/1 var(--f-body); }
.owner .story { color: var(--slate); font-size: 17px; line-height: 1.7; margin-top: 24px; }
.owner .story p { margin-bottom: 14px; }

/* ============ REVIEWS ============ */
.reviews { padding: 100px 0; background: var(--paper); }
.reviews .head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 48px; gap: 40px; flex-wrap: wrap; }
.reviews .rating { display: flex; align-items: center; gap: 16px; }
.reviews .rating .num { font: 700 56px/1 var(--f-display); color: var(--navy); }
.reviews .rating .meta { color: var(--slate); font-size: 14px; }
.reviews .rating .stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; }
.reviews .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .reviews .cards { grid-template-columns: 1fr; } }
.review-card { background: var(--paper); border: 1px solid var(--line); padding: 32px; border-radius: 8px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; }
.review-card blockquote { font: 500 16px/1.6 var(--f-body); color: var(--ink); margin-bottom: 24px; }
.review-card cite { display: flex; align-items: center; gap: 10px; font-style: normal; font: 700 14px/1 var(--f-body); color: var(--navy); }
.review-card .via { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: 100px; background: var(--mist); font: 600 10px/1 var(--f-body); letter-spacing: .1em; text-transform: uppercase; color: var(--slate); }
.review-card .via.google::before { content: "G"; font-family: var(--f-body); font-weight: 900; color: #4285F4; font-size: 12px; }

/* ============ INFOGRAPHIC — SERVICE FLOW ============ */
.flow { padding: 100px 0; background: var(--navy); color: white; }
.flow .head { text-align: center; margin-bottom: 72px; }
.flow .head h2 { color: white; }
.flow .head em { color: var(--gold); font-style: normal; }
.flow-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
@media (max-width: 900px) { .flow-strip { grid-template-columns: 1fr; } }
.flow-step { position: relative; padding: 32px 24px; text-align: center; }
.flow-step .n { font: 700 14px/1 var(--f-body); letter-spacing: .2em; color: var(--gold); margin-bottom: 20px; }
.flow-step .ic { width: 72px; height: 72px; margin: 0 auto 20px; border: 2px solid var(--gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold); }
.flow-step h4 { font: 600 20px/1.25 var(--f-serif); margin-bottom: 8px; color: white; }
.flow-step p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.7); }
.flow-step::after {
  content: "→"; position: absolute; right: -12px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 24px; opacity: .5;
}
.flow-step:last-child::after { display: none; }
@media (max-width: 900px) { .flow-step::after { content: "↓"; right: 50%; top: auto; bottom: -32px; transform: translateX(50%); } }

/* ============ FINAL CTA ============ */
.final-cta { padding: 120px 0; background: var(--gold); color: var(--navy-deep); position: relative; overflow: hidden; }
.final-cta::before {
  content: "⚡"; position: absolute; right: -80px; bottom: -180px;
  font-size: 640px; color: rgba(1,30,55,.06); line-height: 1; pointer-events: none;
}
.final-cta .container { position: relative; text-align: center; }
.final-cta h2 { font-family: var(--f-serif); font-size: clamp(36px, 4.8vw, 64px); line-height: 1.1; margin-bottom: 20px; color: var(--navy-deep); }
.final-cta p { font-size: 20px; margin-bottom: 40px; max-width: 620px; margin-left: auto; margin-right: auto; }
.final-cta .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn.dark { padding: 16px 32px; font-size: 15px; }

/* ============ FOOTER ============ */
footer.site { padding: 80px 0 32px; background: var(--navy-deep); color: rgba(255,255,255,.75); font-size: 14px; }
footer.site .grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
@media (max-width: 900px) { footer.site .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { footer.site .grid { grid-template-columns: 1fr; } }
footer.site h5 { font: 700 12px/1 var(--f-body); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
footer.site ul { list-style: none; }
footer.site li { padding: 6px 0; }
footer.site a { color: rgba(255,255,255,.75); transition: color var(--dur) var(--ease); }
footer.site a:hover { color: var(--gold); }
footer.site .foot-brand p { margin-top: 16px; line-height: 1.6; color: rgba(255,255,255,.6); max-width: 320px; }
footer.site .nap p { padding: 4px 0; }
footer.site .nap a { color: rgba(255,255,255,.85); }
footer.site .socials { display: flex; gap: 10px; margin-top: 20px; }
footer.site .socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.06); display: grid; place-items: center; color: rgba(255,255,255,.8); transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
footer.site .socials a:hover { background: var(--gold); color: var(--navy-deep); }
footer.site .bar { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.5); }
footer.site .bar a:hover { color: var(--gold); }

/* ============ REVEAL ON SCROLL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============ UTILITY ============ */
.divider { height: 1px; background: var(--line); margin: 0; }
.center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.hidden-mobile { display: initial; }
.only-mobile { display: none; }
@media (max-width: 720px) { .hidden-mobile { display: none; } .only-mobile { display: initial; } }

/* ============ URGENCY BANNER ============ */
.urgency { background: #B41818; color: white; padding: 12px 0; font: 600 14px/1.2 var(--f-body); text-align: center; }
.urgency .pulse { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: white; margin-right: 8px; animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.3); } }
.urgency a { color: white; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; margin-left: 8px; }

/* ============================================================
   INTERIOR-PAGE COMPONENTS
   ============================================================ */

/* Page hero (compact) */
.page-hero {
  position: relative; padding: clamp(64px, 10vh, 110px) 0 clamp(56px, 8vh, 100px);
  color: white; overflow: hidden;
  background-size: cover; background-position: center;
}
.page-hero .crumb { margin-bottom: 24px; }
.page-hero .crumb ol { list-style: none; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; font: 500 13px/1 var(--f-body); }
.page-hero .crumb a { color: rgba(255,255,255,.7); }
.page-hero .crumb a:hover { color: var(--gold); }
.page-hero .crumb span[aria-hidden] { color: rgba(255,255,255,.35); }
.page-hero .crumb li:last-child { color: white; font-weight: 600; }
.page-hero h1 { color: white; max-width: 18ch; margin-bottom: 20px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero .page-sub { max-width: 620px; font: 400 clamp(17px, 1.4vw, 20px)/1.55 var(--f-body); color: rgba(255,255,255,.85); }
.page-hero .page-sub em { color: var(--gold); font-style: normal; }
.page-hero .page-hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* Prose blocks */
.prose p { font-size: 17px; line-height: 1.7; color: var(--slate); margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }
.sub-h { font: 600 24px/1.2 var(--f-serif); color: var(--navy); }
.sub-h::before { content: ""; display: inline-block; width: 32px; height: 3px; background: var(--gold); vertical-align: middle; margin-right: 14px; margin-bottom: 6px; }

/* About story */
.about-story { padding: 100px 0; background: var(--paper); }
.about-story .img-frame { position: relative; }
.about-story .img-frame img { border-radius: 4px; box-shadow: var(--shadow-lift); }
.about-story .img-frame::before { content: ""; position: absolute; top: -20px; left: -20px; right: 28px; bottom: 28px; background: var(--gold); z-index: -1; border-radius: 4px; }
.about-story .creds-box { margin-top: 40px; padding: 28px; background: var(--mist); border-left: 3px solid var(--gold); }
.about-story .cred-line { display: flex; gap: 16px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--slate); }
.about-story .cred-line:last-child { border-bottom: 0; }
.about-story .cred-line strong { color: var(--navy); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: 11px; min-width: 90px; }
.about-story .who-list { list-style: none; margin-top: 20px; }
.about-story .who-list li { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; line-height: 1.5; color: var(--slate); }
.about-story .who-list li:last-child { border-bottom: 0; }
.about-story .who-list strong { color: var(--navy); }

/* About values (dark section) */
.about-values { padding: 100px 0; background: var(--navy-deep); color: white; }
.about-values .head { text-align: center; }
.about-values .head h2 em { color: var(--gold); font-style: normal; }
.value-card { background: var(--navy); padding: 40px 32px; }
.value-card .n { font: 700 12px/1 var(--f-body); letter-spacing: .2em; color: var(--gold); margin-bottom: 20px; }
.value-card h4 { font: 600 20px/1.25 var(--f-serif); color: white; margin-bottom: 12px; }
.value-card p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.7); }

/* Service body (detail page) */
.service-body { padding: 100px 0; background: var(--paper); }
.service-body .included-list { list-style: none; margin-top: 20px; }
.service-body .included-list li {
  padding: 12px 0 12px 40px; border-bottom: 1px solid var(--line);
  font-size: 16px; color: var(--slate); line-height: 1.5;
  position: relative;
}
.service-body .included-list li:last-child { border-bottom: 0; }
.service-body .included-list li::before {
  content: ""; position: absolute; left: 8px; top: 18px;
  width: 16px; height: 8px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(-45deg);
}
.service-body .when-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
@media (max-width: 780px) { .service-body .when-list { grid-template-columns: 1fr; } }
.service-body .when-item {
  padding: 24px; background: var(--mist); border-left: 3px solid var(--gold);
  border-radius: 4px;
}
.service-body .when-item h4 { font: 600 17px/1.25 var(--f-body); color: var(--navy); margin-bottom: 8px; }
.service-body .when-item p { font-size: 14px; line-height: 1.6; color: var(--slate); }

/* FAQ (shared) */
.faq-list { margin-top: 20px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background var(--dur) var(--ease);
}
.faq-item[open] { background: var(--mist); border-radius: 4px; padding: 0 20px; margin: 4px 0; }
.faq-item summary {
  padding: 20px 4px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: start; gap: 20px;
  font: 600 17px/1.4 var(--f-body); color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .caret { font: 300 24px/1 var(--f-body); color: var(--gold); flex-shrink: 0; transition: transform .3s var(--ease); }
.faq-item[open] .caret { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 4px 20px; }
.faq-item .faq-body p { font-size: 15px; line-height: 1.65; color: var(--slate); }

/* Rail (sticky sidebar on detail pages) */
.rail { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 900px) { .rail { position: static; } .service-body .grid, .area-body .grid, .faq-hub .grid, .contact-body .grid, .about-story .grid { grid-template-columns: 1fr !important; gap: 40px !important; } }
.rail-card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 28px; box-shadow: var(--shadow); }
.rail-card .rail-eyebrow { font: 700 11px/1 var(--f-body); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 12px; }
.rail-card h4 { font: 600 22px/1.2 var(--f-serif); color: var(--navy); margin-bottom: 8px; }
.rail-card p { font-size: 14px; line-height: 1.5; color: var(--slate); }
.rail-card .rail-trust { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); display: grid; gap: 8px; }
.rail-card .rail-trust div { font-size: 13px; color: var(--slate); }
.rail-card .rail-trust strong { color: var(--navy); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: 10px; margin-right: 8px; }
.rail-card[style*="background:var(--navy)"] .rail-trust strong { color: var(--gold); }
.rail-links { list-style: none; margin-top: 4px; }
.rail-links li { padding: 6px 0; }
.rail-links a { color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500; transition: color var(--dur) var(--ease); }
.rail-links a:hover { color: var(--gold); }

/* Also services (bottom of detail pages) */
.also-services { padding: 100px 0; background: var(--mist); }
.also-services .head { text-align: center; }

/* Areas hub */
.areas-hub { padding: 80px 0 100px; background: var(--paper); }
.area-county-block h2 { color: var(--navy); }
.area-tile {
  display: block; padding: 28px; border: 1px solid var(--line); border-radius: 8px;
  background: var(--paper); transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.area-tile:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow); }
.area-tile-county { font: 700 11px/1 var(--f-body); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 12px; }
.area-tile h3 { font: 600 22px/1.2 var(--f-serif); color: var(--navy); margin-bottom: 12px; }
.area-tile p { font-size: 14px; line-height: 1.6; color: var(--slate); margin-bottom: 20px; }
.area-tile .go { font: 700 12px/1 var(--f-body); letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dim); }
.area-tile .go::after { content: " →"; }

/* Area body (city detail) */
.area-body { padding: 80px 0 100px; background: var(--paper); }
.area-landmarks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.landmark-chip { padding: 8px 14px; background: var(--mist); border-radius: 100px; font: 500 13px/1 var(--f-body); color: var(--navy); }
.area-body code { background: var(--mist); padding: 2px 8px; border-radius: 4px; font: 500 12px/1 "SF Mono", "Menlo", monospace; color: var(--navy); }

/* Reviews hub */
.reviews-hub { padding: 80px 0 100px; background: var(--paper); }
.rating-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: 32px; background: var(--mist); border-radius: 12px; flex-wrap: wrap;
}
.rating-summary .rs-left { display: flex; align-items: center; gap: 20px; }
.rating-summary .rs-num { font: 700 72px/1 var(--f-display); color: var(--navy); }
.rating-summary .rs-stars { color: var(--gold); letter-spacing: 4px; font-size: 24px; }
.rating-summary .rs-count { color: var(--slate); font-size: 14px; margin-top: 4px; }
.rating-summary .rs-right { display: flex; gap: 12px; flex-wrap: wrap; }

/* FAQ hub */
.faq-hub { padding: 80px 0 100px; background: var(--paper); }

/* Contact */
.contact-body { padding: 80px 0 100px; background: var(--paper); }
.contact-chan {
  display: flex; align-items: start; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-chan:last-child { border-bottom: 0; }
.contact-chan .chan-icon {
  width: 52px; height: 52px; flex-shrink: 0; background: var(--mist);
  border-radius: 50%; display: grid; place-items: center; color: var(--gold-dim);
}
.contact-chan h3 { font: 600 18px/1.2 var(--f-serif); color: var(--navy); margin-bottom: 4px; }
.contact-chan p { margin: 0; }
.social-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--mist); display: grid; place-items: center; color: var(--navy); transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.social-btn:hover { background: var(--gold); color: var(--navy-deep); }

/* Contact form */
.contact-form {
  padding: 40px; background: var(--mist); border-radius: 12px;
  position: relative;
}
.contact-form h3 { font: 600 26px/1.2 var(--f-serif); color: var(--navy); margin-bottom: 8px; }
.contact-form .form-sub { color: var(--slate); font-size: 14px; margin-bottom: 24px; }
.contact-form label {
  display: block; margin-bottom: 16px;
  font: 600 13px/1 var(--f-body); color: var(--navy); letter-spacing: .04em;
}
.contact-form label span { color: var(--gold-dim); margin-left: 3px; }
.contact-form input, .contact-form select, .contact-form textarea {
  display: block; width: 100%; margin-top: 6px;
  padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 4px;
  font: 400 15px/1.4 var(--f-body); color: var(--ink); background: var(--paper);
  transition: border-color var(--dur) var(--ease);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .contact-form .field-row { grid-template-columns: 1fr; } }
.contact-form button[type="submit"] { margin-top: 12px; padding: 16px; font-size: 15px; }
.contact-form .form-fine { font-size: 12px; color: var(--slate); margin-top: 14px; line-height: 1.5; text-align: center; }

/* ============================================================
   FLOATING CONTACT WIDGETS (bottom corners, always visible)
   ============================================================ */
.floating-contact {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  width: 60px; height: 60px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 200;
  color: var(--navy-deep);
  opacity: 0; pointer-events: none;
  transform: translateY(20px) scale(.85);
  transition: opacity .3s var(--ease), transform .3s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
body.scrolled .floating-contact { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
@media (prefers-reduced-motion: reduce) {
  .floating-contact { transition: opacity .2s linear; transform: none; }
  body.scrolled .floating-contact { transform: none; }
}
.floating-contact svg { width: 24px; height: 24px; }
.floating-contact.call {
  right: calc(20px + env(safe-area-inset-right, 0px));
  background: var(--gold);
  box-shadow: 0 6px 20px rgba(255,190,89,.5), 0 0 0 6px rgba(255,190,89,.15);
}
.floating-contact.text {
  left: calc(20px + env(safe-area-inset-left, 0px));
  background: var(--navy);
  color: white;
  box-shadow: 0 6px 20px rgba(1,54,94,.5), 0 0 0 6px rgba(1,54,94,.15);
}
.floating-contact:hover, .floating-contact:focus-visible {
  transform: translateY(-3px) scale(1.05);
  outline: 0;
}
.floating-contact.call:hover { box-shadow: 0 12px 28px rgba(255,190,89,.6), 0 0 0 8px rgba(255,190,89,.25); }
.floating-contact.text:hover { box-shadow: 0 12px 28px rgba(1,54,94,.6), 0 0 0 8px rgba(1,54,94,.25); }
.floating-contact:active { transform: translateY(0) scale(.98); }
.floating-contact .label {
  position: absolute; bottom: 100%; margin-bottom: 10px;
  padding: 7px 12px;
  background: var(--navy-deep); color: white;
  font: 700 11px/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0; transform: translateY(4px);
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.floating-contact.call .label { right: 0; }
.floating-contact.text .label { left: 0; }
.floating-contact:hover .label, .floating-contact:focus-visible .label { opacity: 1; transform: translateY(0); }
.floating-contact .pulse-ring {
  position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  border: 2px solid currentColor; opacity: .5;
  animation: fabPulse 2.4s ease-out infinite;
}
@keyframes fabPulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .floating-contact .pulse-ring { animation: none; } }
@media (max-width: 720px) {
  .floating-contact { width: 52px; height: 52px; bottom: calc(14px + env(safe-area-inset-bottom, 0px)); }
  .floating-contact.call { right: calc(14px + env(safe-area-inset-right, 0px)); }
  .floating-contact.text { left: calc(14px + env(safe-area-inset-left, 0px)); }
  .floating-contact svg { width: 22px; height: 22px; }
  .floating-contact .label { display: none; }
}
/* Global bottom-safe padding on mobile so last section content isn't hidden behind FABs */
@media (max-width: 720px) {
  body { padding-bottom: env(safe-area-inset-bottom, 0px); }
  footer.site { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
}

/* Platform strip (Reviews page) */
.platform-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
@media (max-width: 900px) { .platform-strip { grid-template-columns: repeat(2, 1fr); } }
.platform-chip {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 8px; background: var(--paper);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.platform-chip:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: var(--shadow); }
.platform-chip .p-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--mist); border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-body); font-size: 14px;
}
.platform-chip strong { display: block; color: var(--navy); font: 700 14px/1.2 var(--f-body); }
.platform-chip small { color: var(--slate); font: 400 12px/1.2 var(--f-body); }

/* Review card date */
.review-card .stars-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.review-card .review-date { font: 500 12px/1 var(--f-body); color: var(--slate); letter-spacing: .04em; }

/* Recent Projects strip (home page) */
.recent-projects { padding: 100px 0; background: var(--paper); }
.recent-projects .head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 40px; gap: 24px; flex-wrap: wrap; }
.rp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .rp-grid { grid-template-columns: 1fr; } }
.rp-card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.rp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rp-card .img { aspect-ratio: 3/2; overflow: hidden; }
.rp-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.rp-card:hover .img img { transform: scale(1.05); }
.rp-card .body { padding: 24px; }
.rp-card .meta { display: flex; gap: 12px; font: 700 11px/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 12px; }
.rp-card .meta time { color: var(--slate); font-weight: 500; letter-spacing: .04em; text-transform: none; }
.rp-card h4 { font: 600 20px/1.2 var(--f-serif); color: var(--navy); margin-bottom: 8px; }
.rp-card p { font-size: 14px; line-height: 1.55; color: var(--slate); }

/* Trust logo strip */
.trust-strip { padding: 60px 0; background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.trust-strip .ts-label { font: 700 11px/1 var(--f-body); letter-spacing: .2em; text-transform: uppercase; color: var(--slate); }
.trust-strip .ts-badges { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-strip .ts-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font: 700 13px/1 var(--f-body); letter-spacing: .05em; opacity: .75; transition: opacity var(--dur) var(--ease); }
.trust-strip .ts-badge:hover { opacity: 1; }
.trust-strip .ts-badge::before { content: ""; width: 24px; height: 24px; background: var(--gold); mask-image: var(--icon); mask-size: contain; mask-repeat: no-repeat; mask-position: center; -webkit-mask-image: var(--icon); -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center; }
