/* ══════════════════════════════════════════════
   South Tampa Electrician Pros
   southtampaelectricians.com
   Palette: forest green / warm brass / ember red
   Type: Playfair Display (display) / Source Sans 3 (body)
══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:   #0C1A0F;
  --deep:     #152A19;
  --moss:     #1E3D24;
  --fern:     #274D2E;
  --brass:    #C9A84C;
  --brass-d:  #AA8B35;
  --brass-glow: rgba(201,168,76,.18);
  --ember:    #FF4500;
  --ember-d:  #E03C00;
  --frost:    #EEF2ED;
  --sage:     #7A9E82;
  --border:   rgba(201,168,76,.15);
  --disp:     'Playfair Display', Georgia, serif;
  --body:     'Source Sans 3', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--forest);
  color: var(--frost);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--brass); color: var(--forest);
  padding: .5rem 1rem; border-radius: 4px;
  font-weight: 700; z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── REDUCED MOTION ── */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition-duration:.01ms!important}
  #hex-canvas{display:none}
}

/* ── HEX CANVAS ── */
#hex-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

/* ══ ANNOUNCE BAR ══ */
.announce {
  background: linear-gradient(90deg, #1a0a00, #2a1200, #1a0a00);
  border-bottom: 1px solid rgba(255,69,0,.3);
  text-align: center; padding: 9px 5vw;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; color: rgba(255,220,180,.9);
  position: relative; z-index: 101;
}
.announce a { color: #ffb380; text-decoration: underline; }

/* ══ NAV ══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 66px;
  background: rgba(12,26,15,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
nav.scrolled { background: rgba(12,26,15,.99); }

.nav-brand {
  display: flex; align-items: center; gap: .8rem;
  text-decoration: none;
}
.nav-emblem {
  width: 36px; height: 36px; border-radius: 7px;
  background: var(--brass); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.nav-emblem svg { width: 20px; height: 20px; }
.nav-title {
  font-family: var(--disp);
  font-size: 1.15rem; font-weight: 700;
  color: var(--frost); line-height: 1.1;
  letter-spacing: .01em;
}
.nav-title small {
  display: block; font-family: var(--body);
  font-size: .58rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage); margin-top: 1px;
}

.nav-right { display: flex; align-items: center; gap: .85rem; }
.nav-ph {
  font-size: .85rem; font-weight: 700;
  color: var(--brass); text-decoration: none; display: none;
}
.nav-ph:hover { color: var(--brass-d); }
@media(min-width:860px){ .nav-ph { display: block; } }

.nav-cta {
  display: flex; align-items: center; gap: .45rem;
  background: var(--ember); color: #fff;
  font-family: var(--body); font-size: .9rem;
  font-weight: 700; letter-spacing: .06em;
  padding: 9px 18px; border-radius: 5px;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--ember-d); transform: translateY(-1px); }

/* ══ HERO ══ */
.hero {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 120px 5vw 80px;
  overflow: hidden;
}

/* Gold radial glow */
.hero-glow {
  position: absolute; z-index: 0; pointer-events: none;
  top: -20%; right: -10%;
  width: 70vw; max-width: 800px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 65%);
  border-radius: 50%;
  animation: hglow 7s ease-in-out infinite;
}
@keyframes hglow { 0%,100%{transform:scale(1);opacity:.7} 50%{transform:scale(1.1);opacity:1} }

/* Decorative vertical brass line */
.hero-line {
  position: absolute; left: 5vw; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--brass), transparent);
  opacity: .3; z-index: 0;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: auto; width: 100%;
  display: grid; grid-template-columns: 52% 48%;
  gap: 3rem; align-items: center;
}

/* TAG */
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(201,168,76,.3);
  background: rgba(201,168,76,.07);
  color: var(--brass); font-size: .7rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 2px;
  margin-bottom: 1.4rem;
}
.tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass);
  animation: tdot 1.5s ease-in-out infinite;
}
@keyframes tdot { 0%,100%{opacity:1} 50%{opacity:.15} }

/* H1 — serif, elegant */
.hero-h1 {
  font-family: var(--disp);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700; line-height: 1.08;
  color: var(--frost); margin-bottom: 1.3rem;
  letter-spacing: -.01em;
}
.hero-h1 .brass { color: var(--brass); font-style: italic; }

/* Signature — thin brass rule expands under brass word */
.hero-rule {
  display: block; height: 1px; width: 0;
  background: linear-gradient(90deg, var(--brass), transparent);
  margin-bottom: 1.6rem;
  animation: rule-in 1.2s cubic-bezier(.4,0,.2,1) .9s forwards;
}
@keyframes rule-in { to { width: 100%; } }

.hero-sub {
  font-size: 1.05rem; color: rgba(238,242,237,.68);
  line-height: 1.78; max-width: 480px; margin-bottom: 2.2rem;
}

.hero-acts { display: flex; flex-wrap: wrap; gap: .9rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ember); color: #fff;
  font-family: var(--body); font-size: 1rem; font-weight: 700;
  letter-spacing: .06em; padding: 14px 26px; border-radius: 4px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255,69,0,.5);
  animation: epulse 2.8s ease-in-out 2s infinite;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--ember-d); transform: translateY(-2px); animation: none; }
@keyframes epulse {
  0%,100%{ box-shadow:0 0 0 0 rgba(255,69,0,.5); }
  50%{ box-shadow:0 0 0 16px rgba(255,69,0,0); }
}

.btn-brass {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--brass); font-size: .92rem; font-weight: 700;
  padding: 13px 22px; border-radius: 4px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.btn-brass:hover { background: rgba(201,168,76,.18); border-color: var(--brass); }

/* Phone strip */
.hero-ph-strip {
  margin-top: 2.2rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.ph-lbl { font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); }
.ph-number {
  font-family: var(--disp); font-size: 2rem; font-weight: 700;
  color: var(--brass); text-decoration: none; transition: color .2s;
}
.ph-number:hover { color: var(--brass-d); }

/* ── HERO RIGHT: stacked photo cards ── */
.hero-right { position: relative; height: 480px; }

.photo-card {
  position: absolute; border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(201,168,76,.15);
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.card-main {
  width: 78%; height: 340px; top: 0; right: 0;
  animation: cf1 7s ease-in-out infinite;
}
.card-accent {
  width: 55%; height: 210px; bottom: 0; left: 0;
  animation: cf2 7s ease-in-out 1.5s infinite;
}
@keyframes cf1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes cf2 { 0%,100%{transform:translateY(0) rotate(-1.5deg)} 50%{transform:translateY(-8px) rotate(-1.5deg)} }

/* Badge */
.hero-badge {
  position: absolute; top: 12px; left: -12px; z-index: 2;
  background: var(--brass); color: var(--forest);
  padding: 10px 16px; border-radius: 6px;
  font-family: var(--disp); font-size: .82rem; font-weight: 700;
  box-shadow: 0 6px 24px rgba(201,168,76,.4);
  animation: badgepop .6s cubic-bezier(.34,1.56,.64,1) 1.3s both;
}
@keyframes badgepop { from{transform:scale(0) rotate(6deg);opacity:0} to{transform:scale(1) rotate(0);opacity:1} }
.hero-badge strong { display: block; font-size: 1.4rem; }

/* ══ TRUST STRIP ══ */
.trust-strip {
  position: relative; z-index: 1;
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 15px 5vw;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1.8rem;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; color: rgba(238,242,237,.82);
}
.trust-item svg { color: var(--brass); flex-shrink: 0; }

/* ══ GENERIC SECTION ══ */
section { position: relative; z-index: 1; }
.wrap { max-width: 1200px; margin: auto; padding: 90px 5vw; }

.eyebrow {
  font-size: .66rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--brass); margin-bottom: .65rem;
}
h2 {
  font-family: var(--disp);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700; line-height: 1.12;
  color: var(--frost); margin-bottom: 1rem;
}
h2 em { font-style: italic; color: var(--brass); }
.sec-lead {
  font-size: 1rem; color: rgba(238,242,237,.62);
  line-height: 1.78; max-width: 600px; margin-bottom: 3rem;
}

/* ══ SERVICES — horizontal numbered list ══ */
.svc-bg { background: var(--deep); }
.svc-list { display: flex; flex-direction: column; gap: 0; }

.svc-row {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 0; align-items: stretch;
  border-bottom: 1px solid rgba(201,168,76,.1);
  transition: background .25s;
  cursor: default;
}
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { background: rgba(201,168,76,.04); }

.svc-num-col {
  display: flex; align-items: flex-start; justify-content: center;
  padding: 2rem 1rem 2rem 0;
}
.svc-num {
  font-family: var(--disp);
  font-size: 2.5rem; font-weight: 700; line-height: 1;
  color: rgba(201,168,76,.2);
  transition: color .25s;
  min-width: 3rem; text-align: right;
}
.svc-row:hover .svc-num { color: rgba(201,168,76,.55); }

.svc-content { padding: 2rem 2rem 2rem 1.5rem; }
.svc-content h3 {
  font-family: var(--disp);
  font-size: 1.35rem; font-weight: 700;
  color: var(--frost); margin-bottom: .55rem;
  letter-spacing: -.01em;
}
.svc-content p { font-size: .9rem; color: var(--sage); line-height: 1.7; max-width: 600px; }

.svc-img-col {
  width: 200px; overflow: hidden; flex-shrink: 0;
}
.svc-img-col img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.6) saturate(.8);
  transition: filter .4s;
}
.svc-row:hover .svc-img-col img { filter: brightness(.85) saturate(1.1); }

.svc-arrow {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: .9rem; font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--brass); text-decoration: none;
  opacity: 0; transition: opacity .25s;
}
.svc-row:hover .svc-arrow { opacity: 1; }

/* ══ GALLERY — masonry-ish 3 col ══ */
.gallery-bg { background: var(--forest); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 8px;
}
.gal-cell { border-radius: 6px; overflow: hidden; position: relative; }
.gal-cell:nth-child(2) { grid-row: span 2; }
.gal-cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(.75) saturate(.85);
  transition: transform .5s ease, filter .4s;
}
.gal-cell:hover img { transform: scale(1.06); filter: brightness(.95) saturate(1.15); }
.gal-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .85rem 1rem;
  background: linear-gradient(to top, rgba(12,26,15,.9) 0%, transparent 100%);
  font-family: var(--disp); font-size: .82rem; font-weight: 700;
  font-style: italic; color: var(--brass);
  transform: translateY(4px); opacity: 0;
  transition: transform .3s, opacity .3s;
}
.gal-cell:hover .gal-label { transform: translateY(0); opacity: 1; }

/* ══ PROCESS ══ */
.proc-bg { background: var(--deep); }
.proc-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.proc-cell {
  background: var(--moss);
  padding: 2.2rem 1.8rem; position: relative; overflow: hidden;
  transition: background .25s;
}
.proc-cell:hover { background: var(--fern); }
.proc-cell::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.proc-cell:hover::before { transform: scaleX(1); }
.proc-step-n {
  font-family: var(--disp); font-size: 3.5rem; font-weight: 700;
  color: rgba(201,168,76,.12); line-height: 1;
  margin-bottom: .5rem; transition: color .25s;
}
.proc-cell:hover .proc-step-n { color: rgba(201,168,76,.3); }
.proc-cell h3 {
  font-family: var(--disp); font-size: 1.1rem; font-weight: 700;
  color: var(--frost); margin-bottom: .45rem;
}
.proc-cell p { font-size: .86rem; color: var(--sage); line-height: 1.65; }

/* ══ REVIEWS ══ */
.rev-bg { background: var(--moss); }
.rev-overflow { overflow: hidden; }
.rev-track {
  display: flex; gap: 1.2rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.rev-card {
  flex: 0 0 calc(33.333% - .8rem);
  background: var(--deep);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem 1.8rem;
  position: relative; overflow: hidden;
}
.rev-card::after {
  content: '"';
  position: absolute; top: .8rem; right: 1.2rem;
  font-family: var(--disp); font-size: 5rem;
  line-height: 1; color: rgba(201,168,76,.07);
  pointer-events: none;
}
.rev-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.rev-card:hover::before { transform: scaleX(1); }

.rev-stars { color: #d4a017; font-size: .95rem; letter-spacing: .04em; margin-bottom: .8rem; }
.rev-text { font-size: .9rem; color: rgba(238,242,237,.82); line-height: 1.72; margin-bottom: 1.1rem; }
.rev-foot { display: flex; align-items: center; gap: .8rem; }
.rev-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--disp); font-size: 1.1rem; font-weight: 700;
  color: var(--forest); flex-shrink: 0;
}
.rev-name { font-weight: 700; font-size: .9rem; color: var(--frost); }
.rev-loc { font-size: .73rem; color: var(--sage); margin-top: .1rem; }

.car-ctrl { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2rem; }
.car-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--fern); border: 1px solid var(--border);
  color: var(--brass); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: background .2s;
}
.car-btn:hover { background: rgba(201,168,76,.1); }
.car-dots { display: flex; gap: .5rem; }
.car-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(201,168,76,.2); border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.car-dot.active { background: var(--brass); transform: scale(1.35); }

/* ══ WHY US ══ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-list { list-style: none; }
.why-list li {
  display: flex; gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.why-list li:last-child { border-bottom: none; }
.why-icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 6px;
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--brass); margin-top: 2px;
}
.why-t strong { display: block; font-weight: 700; color: var(--frost); margin-bottom: .2rem; }
.why-t p { font-size: .88rem; color: var(--sage); line-height: 1.65; }

.stat-panel {
  background: linear-gradient(135deg, var(--brass) 0%, var(--brass-d) 100%);
  border-radius: 10px; padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(201,168,76,.2);
}
.stat-big { font-family: var(--disp); font-size: 5.5rem; font-weight: 700; color: var(--forest); line-height: 1; }
.stat-lbl { font-size: .76rem; font-weight: 700; letter-spacing: .1em; color: rgba(12,26,15,.6); margin-bottom: 1.8rem; text-transform: uppercase; }
.stat-rev {
  background: rgba(12,26,15,.12);
  border-radius: 6px; padding: 1.2rem; margin-top: 1rem; text-align: left;
}
.stat-rev .stars { color: var(--forest); font-size: .9rem; margin-bottom: .4rem; }
.stat-rev p { font-size: .84rem; color: rgba(12,26,15,.88); line-height: 1.6; }
.stat-rev cite { font-size: .7rem; color: rgba(12,26,15,.55); font-style: normal; display: block; margin-top: .35rem; }

/* ══ EMERGENCY CTA ══ */
.emg-band {
  background: linear-gradient(135deg, #2a0f00 0%, #1a0800 100%);
  border-top: 1px solid rgba(255,69,0,.25);
  text-align: center;
}
.emg-band h2 { color: #fff; }
.emg-band p { color: rgba(255,240,220,.75); font-size: 1rem; margin-bottom: 2rem; }
.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--ember);
  font-family: var(--body); font-size: 1.1rem; font-weight: 700;
  letter-spacing: .06em; padding: 16px 32px; border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }

/* ══ CONTACT ══ */
.contact-bg { background: var(--deep); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.info-rows { display: flex; flex-direction: column; gap: 2rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-ic {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center; color: var(--brass);
}
.info-lbl { font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin-bottom: .2rem; }
.info-val { color: var(--frost); font-size: 1rem; font-weight: 600; line-height: 1.5; }
.info-val a { color: var(--frost); text-decoration: none; }
.info-val a:hover { color: var(--brass); }
.map-box {
  border-radius: 8px; overflow: hidden; height: 340px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.map-box iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══ FAQ ══ */
.faq-bg { background: var(--moss); }
details {
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 1.2rem 0;
}
details summary {
  cursor: pointer; list-style: none;
  font-family: var(--disp); font-size: 1.1rem; font-weight: 700;
  color: var(--frost);
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
details summary::-webkit-details-marker { display: none; }
.fq { color: var(--brass); font-size: 1.4rem; margin-left: 1rem; flex-shrink: 0; transition: transform .25s; }
details[open] .fq { transform: rotate(45deg); }
details p { margin-top: .85rem; font-size: .9rem; color: var(--sage); line-height: 1.72; }

/* ══ FOOTER ══ */
footer { background: #060f08; padding: 50px 5vw 26px; position: relative; z-index: 1; }
.ft-inner { max-width: 1200px; margin: auto; }
.ft-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 2rem; flex-wrap: wrap;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 1.6rem;
}
.ft-brand p { font-size: .8rem; color: var(--sage); margin-top: .6rem; max-width: 285px; line-height: 1.68; }
.ft-cols { display: flex; gap: 3rem; flex-wrap: wrap; }
.ft-col h5 {
  font-family: var(--disp); font-size: .9rem; font-weight: 700;
  font-style: italic; color: var(--brass); margin-bottom: .9rem;
}
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: .45rem; }
.ft-col ul li a { font-size: .8rem; color: var(--sage); text-decoration: none; transition: color .2s; }
.ft-col ul li a:hover { color: var(--frost); }
.ft-bot {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.ft-bot p { font-size: .73rem; color: rgba(122,158,130,.4); }
.ft-nap { font-size: .73rem; color: rgba(122,158,130,.4); font-style: normal; }
.ft-nap a { color: inherit; text-decoration: none; }

/* ══ FLOATING CALL BUTTON ══ */
.fab-wrap {
  position: fixed; bottom: 24px; right: 22px; z-index: 200;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.fab-lbl {
  background: rgba(12,26,15,.97); color: var(--brass);
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 11px; border-radius: 3px;
  white-space: nowrap; border: 1px solid rgba(201,168,76,.25);
  animation: flbl .5s 2.3s both;
}
@keyframes flbl { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.fab {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--ember);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; position: relative;
  box-shadow: 0 4px 24px rgba(255,69,0,.65);
  transition: transform .2s;
}
.fab::before, .fab::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--ember);
  animation: fr 2.4s ease-out infinite;
}
.fab::after { animation-delay: 1.2s; }
@keyframes fr { 0%{transform:scale(1);opacity:.75} 100%{transform:scale(2.6);opacity:0} }
.fab:hover { transform: scale(1.1); }
.fab svg { position: relative; z-index: 1; }

/* ══ SCROLL REVEAL ══ */
.rv { opacity:0; transform:translateY(24px); transition:opacity .65s ease,transform .65s ease; }
.rv.in { opacity:1; transform:translateY(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s}
.d3{transition-delay:.3s} .d4{transition-delay:.4s}

/* ══ RESPONSIVE ══ */
@media(max-width:980px){
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { height: 320px; }
  .card-main { width: 70%; height: 260px; }
  .card-accent { width: 50%; height: 180px; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stat-panel { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .rev-card { flex: 0 0 calc(50% - .6rem); }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .svc-img-col { display: none; }
  .svc-row { grid-template-columns: 60px 1fr; }
}
@media(max-width:680px){
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .gal-cell:nth-child(2) { grid-row: span 1; }
  .proc-grid { grid-template-columns: 1fr; }
  .rev-card { flex: 0 0 100%; }
  .ft-top { flex-direction: column; }
  .svc-row { grid-template-columns: 1fr; }
  .svc-num-col { display: none; }
}
@media(max-width:480px){
  .wrap { padding: 64px 5vw; }
  .trust-strip { gap: .9rem; }
  .fab { width: 58px; height: 58px; }
  .hero-right { height: 260px; }
  .card-main { height: 210px; }
  .card-accent { height: 150px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gal-cell { height: 200px; }
}
