/* ── LUXURY UPGRADE ──────────────────────────────────────────── */
:root { --eb-h: 38px; }

/* ── NAV SOCIAL ICONS — horizontal row, brand colors ── */
.nav-social{
  display:flex;
  align-items:center;
  gap:2px;
  padding-left:12px;
  border-left:1px solid rgba(255,255,255,.13);
  flex-shrink:0;
}
.nav-social a{
  display:flex;align-items:center;justify-content:center;
  width:30px;height:30px;
  border-radius:6px;
  transition:background .2s ease, transform .15s ease;
  flex-shrink:0;
}
.nav-social a:hover{
  background:rgba(255,255,255,.08);
  transform:translateY(-1px);
}
.nav-social svg{
  width:15px;height:15px;
  display:block;
  overflow:visible;
}
@media(max-width:1024px){ .nav-social{ display:none; } }

:root {
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t: 0.35s var(--ease-out);
}

/* Grain overlay — only on desktop, GPU composited */
@media (min-width: 769px) {
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  will-change: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.5;
}
}

/* ── STEP NUMBERS — rich navy-to-gold gradient ── */
.step-n {
  color: transparent !important;
  background: linear-gradient(135deg, #21324B 0%, #C4A35A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2.4rem !important;
  font-weight: 700;
  line-height: 1.1;
  position: relative;
}

/* Gold left accent line on each step */
.step {
  border-bottom: 1px solid var(--bd);
  position: relative;
  transition: background 0.35s var(--ease-out), padding-left 0.35s var(--ease-out);
}
.step::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.step:hover::before { opacity: 1; }
.step:hover { background: rgba(196,163,90,0.03); }

/* ── PROCESS step numbers ── */
.proc-n {
  color: transparent !important;
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 5rem !important;
  transition: background 0.4s var(--ease-out);
}
.proc-step:hover .proc-n {
  background: linear-gradient(135deg, var(--gold) 0%, #D4B870 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Gold top border on process steps on hover */
.proc-step {
  position: relative;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.proc-step::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.proc-step:hover::after { opacity: 1; }

/* ── GOLD TOUCHES — section dividers ── */
.section > .container > .rev > .navy-rule,
.navy-rule {
  background: linear-gradient(90deg, var(--navy) 60%, transparent 100%);
}

/* Gold eyebrow dots */
.ew::before, .ew-dk::before {
  content: '◆';
  font-size: .4em;
  margin-right: 6px;
  color: var(--gold);
  vertical-align: middle;
}

/* Gold accent on service card hover bar */
.svc-bar {
  background: linear-gradient(90deg, var(--gold), var(--gold-lt)) !important;
}

/* ── SCROLL REVEALS ── */
.rev, .rev-l, .rev-r, .rev-z { will-change: transform, opacity; }
.rev {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.rev.on { opacity: 1; transform: none; }

.rev-l {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.rev-l.on { opacity: 1; transform: none; }

.rev-r {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.rev-r.on { opacity: 1; transform: none; }

.rev-z {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.rev-z.on { opacity: 1; transform: scale(1); }

/* Stagger delays */
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.10s; }
.d3 { transition-delay: 0.15s; }
.d4 { transition-delay: 0.20s; }
.d5 { transition-delay: 0.25s; }
.d6 { transition-delay: 0.30s; }

/* ── BUTTONS — refined ── */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  letter-spacing: 0.12em;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.98); }

.btn-w:hover { box-shadow: 0 6px 24px rgba(196,163,90,0.18); transform: translateY(-1px); }
.btn-ow:hover { box-shadow: 0 6px 20px rgba(255,255,255,0.06); transform: translateY(-1px); }
.btn-og:hover { box-shadow: 0 6px 24px rgba(196,163,90,0.28); transform: translateY(-1px); }
.btn-navy:hover { box-shadow: 0 6px 24px rgba(33,50,75,0.35); transform: translateY(-1px); }

/* ── GOLD LINE above CTA strip ── */
.cta-strip {
  border-top: 1px solid rgba(196,163,90,0.2);
}

/* ── CARDS ── */
.svc-card {
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(33,50,75,0.1); }

.testi-card {
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.testi-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(33,50,75,0.09); }

/* Review cards */
.rv-card {
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

/* ── NAV ── */
.nav {
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), backdrop-filter 0.35s var(--ease-out), top 0.3s ease;
}
.nav.scrolled {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(22, 31, 48, 0.96) !important;
}

/* Nav underline slide */
.nav-menu a {
  position: relative;
  transition: color 0.25s var(--ease-out);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease-out);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

/* ── DESKTOP NAV — centered ── */
.nav-menu { flex-wrap: nowrap !important; gap: 6px !important; list-style: none; }
.nav-menu > li > a {
  font-size: .71rem !important;
  padding: 6px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
.nav-menu > li > a.nav-urgent {
  color: rgba(255,196,0,.9) !important;
}
.nav-menu > li > a.nav-urgent:hover { color: #ffd700 !important; }

/* ── DROPDOWN NAV ── */
.nav-menu .has-drop { position: relative; }
.nav-menu .has-drop > a::after {
  content: ' ▾'; font-size: .58em; opacity: .45;
  background: none; width: 0 !important; display: inline; position: static;
}
.nav-drop {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--navy-dk);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 2px solid var(--gold);
  min-width: 220px; padding: 8px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 9999;
  box-shadow: 0 16px 48px rgba(0,0,0,.55);
  list-style: none;
}
.has-drop:hover .nav-drop,
.has-drop:focus-within .nav-drop {
  opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
}
.nav-drop li { list-style: none; }
.nav-drop a {
  display: block; padding: 10px 20px;
  font-size: .76rem !important; font-weight: 500; letter-spacing: .02em;
  color: rgba(255,255,255,.65); white-space: nowrap;
  transition: color .15s ease, background .15s ease, padding-left .15s ease;
}
.nav-drop a::after { display: none !important; }
.nav-drop a:hover { color: #fff; background: rgba(255,255,255,.05); padding-left: 26px; }
.nav-drop .drop-divider { height: 1px; background: rgba(255,255,255,.07); margin: 6px 0; list-style: none; }

/* ── HERO ── */
.hero-ring-1 { animation: hring 55s linear infinite; }
.hero-ring-2 { animation: hring 80s linear infinite reverse; }
.hero-ring-3 { animation: hring 42s linear infinite; }

.hero-shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(196,163,90,0.22) 50%, transparent 100%);
}

/* ── GOLD GLOW — static (no CPU-heavy text-shadow animation) ── */
.gold-glow {
  text-shadow: 0 0 50px rgba(196,163,90,.22), 1px 1px 0 rgba(196,163,90,.15);
}

/* ── STAT BOXES — gold top accent ── */
.stat-b {
  position: relative;
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.stat-b::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}
.stat-b:hover::before { opacity: 1; }
.stat-b:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(33,50,75,0.08); }

/* ── WHY CARDS ── */
.why-ico {
  transition: border-color 0.35s var(--ease-out), box-shadow 0.45s var(--ease-out), transform 0.35s var(--ease-out);
}
.why-card:hover .why-ico {
  transform: translateY(-3px) scale(1.06);
  border-color: rgba(196,163,90,0.7);
  box-shadow: 0 0 24px rgba(196,163,90,0.15);
}

/* ── CERT ITEMS ── */
.cert-item {
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.cert-item:hover { transform: translateY(-2px); }

/* ── FOOTER ── */
.footer li a, .f-con a {
  transition: color 0.25s var(--ease-out), letter-spacing 0.25s var(--ease-out);
}
.footer li a:hover { letter-spacing: 0.02em; }

/* Gold top border on footer */
.footer {
  border-top: 1px solid rgba(196,163,90,0.18) !important;
}

/* ── ANGLE PHOTOS ── */
.angle-photo img { transition: transform 0.7s var(--ease-out); }
.angle-photo:hover img { transform: scale(1.05); }

/* ── PAGE ENTRY ── */
body { animation: pageIn 0.45s var(--ease-out) both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* ── LIGHTBOX ── */
.lb.open { animation: lbIn 0.25s var(--ease-out) both; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lb.open .lb-wrap { animation: lbScale 0.3s var(--ease-out) both; }
@keyframes lbScale { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ── CTA TABLE HIGHLIGHT ── */
.ctab th { border-bottom: 2px solid var(--gold) !important; }

/* ── HBOX gold accent ── */
.hbox { border-left-color: var(--gold) !important; }

/* ── FAQ item gold dot ── */
.faq-item h3::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5em;
  margin-right: 8px;
  vertical-align: middle;
}

/* ── PROJECT card gold tag ── */
.proj-tag { background: var(--gold) !important; color: var(--navy-dk) !important; }

/* Smooth scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-dk); }
::-webkit-scrollbar-thumb { background: rgba(196,163,90,0.45); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(196,163,90,0.75); }

::selection { background: rgba(196,163,90,0.25); color: var(--navy-dk); }
:focus-visible { outline: 2px solid rgba(196,163,90,0.55); outline-offset: 3px; }

/* ══════════════════════════════════════════════
   MOBILE NAV — HAMBURGER + ACCORDION PANEL
══════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  transition: transform 0.3s var(--ease-out), opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #fff; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #fff; }

/* Mobile panel */
.nav-mobile-panel {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  z-index: 998;
  background: #161F30;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.32s var(--ease-out), opacity 0.25s ease;
}
.nav-mobile-panel.open {
  transform: translateX(0);
  opacity: 1;
}

/* Phone CTA bar at top of panel */
.nm-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nm-phone {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
}
.nm-cta-btn {
  background: var(--gold);
  color: var(--navy-dk) !important;
  padding: 10px 18px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s ease;
}
.nm-cta-btn:hover { background: var(--gold-lt) !important; }

/* Accordion sections */
.nm-accord {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nm-accord-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.8);
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: left;
  transition: color .2s ease;
}
.nm-accord-hd:hover,
.nm-accord-hd[aria-expanded="true"] { color: #fff; }
.nm-accord-hd[aria-expanded="true"] { color: var(--gold-lt); }
.nm-chevron {
  width: 18px; height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s var(--ease-out);
  flex-shrink: 0;
}
.nm-accord-hd[aria-expanded="true"] .nm-chevron { transform: rotate(180deg); }
.nm-accord-bd {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s var(--ease-out);
}
.nm-accord-bd.open { max-height: 600px; }
.nm-accord-bd a {
  display: block;
  padding: 12px 24px 12px 40px;
  font-size: .84rem;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.03);
  transition: color .15s ease, background .15s ease;
  position: relative;
}
.nm-accord-bd a::before {
  content: '';
  position: absolute;
  left: 24px; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(196,163,90,.4);
  transition: background .15s ease;
}
.nm-accord-bd a:hover { color: #fff; background: rgba(255,255,255,.04); }
.nm-accord-bd a:hover::before { background: var(--gold); }

/* Direct nav links */
.nm-links {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nm-links a {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  transition: color .15s ease, background .15s ease;
}
.nm-links a:hover { color: #fff; background: rgba(255,255,255,.03); }
.nm-links a.nm-urgent {
  color: rgba(255,196,0,.9);
  font-weight: 600;
}
.nm-links a.nm-urgent:hover { color: #ffd700; }
.nm-links a.active { color: #fff; }

/* Bottom of panel */
.nm-footer {
  padding: 20px 24px 28px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* Mobile social row inside nav panel */
.nm-social-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.nm-soc-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  transition: background .2s ease;
  min-width: 60px;
  min-height: 44px;
}
.nm-soc-link:hover { background: rgba(255,255,255,.1); }
.nm-soc-link span {
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.nm-footer-lbl {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 0;
}

/* ── BREAKPOINTS ── */
@media (max-width: 960px) {
  .ubar { display: none; }
  .nav { top: var(--eb-h, 38px); }
  .nav-mobile-panel { top: calc(var(--eb-h, 38px) + 72px); }
  .nav-menu { display: none !important; }
  .nav-hamburger { display: flex; }
}

/* ══════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE
══════════════════════════════════════════════ */

/* Prevent horizontal overflow globally */
html, body { max-width: 100%; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }
img, video, iframe, table { max-width: 100%; }

/* Tablets (768px–960px) */
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .three-col { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .section-sm { padding: 36px 0; }

  /* Hero */
  .hero { padding-top: 72px; min-height: 100svh; }
  .hero-inner { padding: 40px 0 52px; }
  .hero h1 { font-size: clamp(1.9rem, 6.5vw, 2.8rem); }
  .hero-sub { font-size: .92rem; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn,
  .hero-actions a.btn { width: 100%; text-align: center; padding: 16px 20px; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .hero-watermark { display: none; }

  /* Trust bar */
  .tbar-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .tb-val { font-size: 1rem; }

  /* Service grids */
  .svc-grid { grid-template-columns: 1fr; background: none; }
  .svc-card { padding: 26px 20px; }

  /* Typography */
  h2 { font-size: clamp(1.45rem, 5vw, 2.2rem); }
  h3 { font-size: clamp(1rem, 3vw, 1.2rem); }

  /* Layouts */
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .three-col { grid-template-columns: 1fr; gap: 18px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-cols { grid-template-columns: 1fr; gap: 24px; }
  .proc-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Buttons */
  .btn { padding: 13px 22px; font-size: .72rem; }

  /* Process step */
  .proc-step { padding: 32px 24px; }
  .step { padding: 20px 0; }

  /* Review grid */
  .rv-grid { grid-template-columns: 1fr; }

  /* Tables on mobile */
  .ctab { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Manufacturer strip */
  .mfr-strip-inner { gap: 10px 16px; }
  .creds-row { gap: 16px; flex-wrap: wrap; }

  /* Footer */
  .foot-btm { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Page hero */
  .page-hero { padding: 96px 0 48px; }

  /* Fix inline fixed-height images breaking on mobile */
  [style*="height:520px"], [style*="height: 520px"],
  [style*="height:420px"], [style*="height: 420px"],
  [style*="height:480px"], [style*="height: 480px"] {
    height: 280px !important;
  }
  [style*="height:320px"], [style*="height: 320px"] {
    height: 220px !important;
  }

  /* Contact form fields full width */
  input, textarea, select {
    width: 100% !important;
    font-size: 16px !important; /* prevents iOS zoom on focus */
    box-sizing: border-box;
  }

  /* Footer review CTA wraps cleanly */
  .footer-review-cta { flex-wrap: wrap; gap: 8px; }
  .foot-cert-row { flex-wrap: wrap; gap: 8px; }
  .foot-cert-pill { font-size: .6rem; padding: 4px 10px; }

  /* Emergency banner — wrap gracefully on narrow screens */
  .emergency-banner-inner { gap: 6px 10px; font-size: .65rem; }

  /* Nav adjust — ubar hidden on mobile, nav at top:0 */
  .nav { top: var(--eb-h, 38px); }
  .nav-mobile-panel { top: calc(var(--eb-h, 38px) + 72px); }
}

/* Small phones (max 480px) */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .tbar-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .tb-val { font-size: .95rem; }
  .hero-phone-num { font-size: 1.4rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-ico { width: 50px; height: 50px; }
  .svc-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* Tighter mobile social row on tiny screens */
  .nm-social-row { gap: 6px; }
  .nm-soc-link { padding: 8px 10px; min-width: 52px; }
  .nm-soc-link span { font-size: .5rem; }

  /* Fix any remaining fixed heights on small screens */
  [style*="height:520px"], [style*="height: 520px"],
  [style*="height:420px"], [style*="height: 420px"],
  [style*="height:480px"], [style*="height: 480px"],
  [style*="height:320px"], [style*="height: 320px"] {
    height: 220px !important;
  }

  /* Emergency banner — phone number only on tiny screens */
  .emergency-banner-inner > span:nth-child(3),
  .emergency-banner-inner > span:nth-child(4),
  .emergency-banner-inner > a:last-child { display: none; }
  .emergency-banner-inner { font-size: .62rem; }
  .page-hero { padding: 86px 0 36px; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 300px; text-align: center; }
  .hero-ring-1, .hero-ring-2 { display: none; }
  /* Table scrolls on small screens */
  .angle-row { grid-template-columns: 1fr; }
  .proj-card-header { flex-wrap: wrap; gap: 8px; }
  .proj-card-header .loc { margin-left: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .rev, .rev-l, .rev-r, .rev-z { opacity: 1 !important; transform: none !important; }
  .angle-photo { opacity: 1 !important; transform: none !important; }
}

/* ── MANUFACTURER CERT STRIP ── */
.mfr-strip {
  background: #fff;
  border-bottom: 1px solid var(--bd);
  padding: 18px 0;
}
.mfr-strip-inner {
  display: flex;
  align-items: center;
  gap: 8px 28px;
  flex-wrap: wrap;
}
.mfr-strip-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--txl);
  flex-shrink: 0;
  white-space: nowrap;
}
.mfr-strip-divider {
  width: 1px;
  height: 22px;
  background: var(--bd);
  flex-shrink: 0;
}
.mfr-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(196,163,90,0.35);
  padding: 6px 14px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.mfr-badge:hover {
  border-color: var(--gold);
  background: rgba(196,163,90,0.04);
  box-shadow: 0 2px 12px rgba(196,163,90,0.1);
}
.mfr-badge .mfr-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.mfr-badge .mfr-check {
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
}

/* ── HERO PAGE — shimmer accent ── */
.page-hero::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(196,163,90,0.35) 40%, rgba(196,163,90,0.35) 60%, transparent 100%);
  z-index: 1;
}

/* ── SECTION transition gold rule ── */
.gold-section-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,163,90,0.15), transparent);
  margin: 0;
}

/* ── TRUST BAR — gold left accent on hover ── */
.tbar-grid > div {
  position: relative;
  transition: background 0.3s ease;
  padding: 8px 4px;
}
.tbar-grid > div::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
  opacity: 0.5;
}
.tbar-grid > div:hover::before { width: 60%; }

/* ── FOOTER — cert row ── */
.foot-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.foot-cert-pill {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 10px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.foot-cert-pill:hover {
  color: var(--gold);
  border-color: rgba(196,163,90,0.3);
}

/* ── GOLD CORNER ACCENT on section dividers ── */
.gold-corner {
  position: relative;
}
.gold-corner::after {
  content: '◆';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  font-size: .45rem;
  color: var(--gold);
  opacity: 0.5;
  letter-spacing: 0;
}

/* ── CTA STRIP — gold shimmer across top ── */
.cta-strip::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,163,90,0.4), transparent);
}

/* ── HBOX — gold accent enhanced ── */
.hbox {
  background: linear-gradient(135deg, #F2F4F7 0%, rgba(196,163,90,0.04) 100%) !important;
}

/* ── TESTI / REVIEW CARDS — quote mark gold tint ── */
.testi-q, .rv-q {
  background: linear-gradient(135deg, var(--gray-md) 0%, rgba(196,163,90,0.08) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

/* ── SECTION HEADER gold eyebrow bar ── */
.ew-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.ew-bar::before, .ew-bar::after {
  content: '';
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,163,90,0.4));
  flex: 1;
}
.ew-bar::after {
  background: linear-gradient(270deg, transparent, rgba(196,163,90,0.4));
}

/* ── MOBILE PERFORMANCE & TAP TARGETS ── */
@media (max-width: 768px) {
  /* Minimum tap target size */
  .btn, .nav-menu a, .nm-links a, .nm-accord-hd,
  .footer li a, .f-soc a, .ubar-social {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nm-links a, .nm-accord-hd { display: flex; justify-content: space-between; }

  /* Smooth momentum scrolling on iOS */
  body { -webkit-overflow-scrolling: touch; }

  /* Disable hover effects on touch devices (prevents stuck states) */
  .svc-card:hover { background: #fff; }
  .svc-card:hover .svc-bar { width: 0; }
  .svc-card:hover .svc-icon svg { stroke: var(--navy); transform: none; }
  .proc-step:hover { background: #fff; }
  .testi-card:hover { background: #fff; }

  /* Disable transform hover lifts on touch (can cause layout shift) */
  .btn:hover { transform: none !important; box-shadow: none !important; }
  .stat-b:hover { transform: none !important; }
}

/* ── IMAGE HANDLING — prevent overflow ── */
.hero-watermark img { max-width: 100%; }
.svc-icon svg { flex-shrink: 0; }
.cert-ico svg { max-width: 100%; }

/* ── PAGE PHOTO BREAKS ── */
.page-photo-break {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  position: relative;
  line-height: 0;
}
.page-photo-break img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-photo-break:hover img { transform: scale(1.02); }
.photo-break-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 32px;
  background: linear-gradient(to top, rgba(14,22,38,.78) 0%, transparent 100%);
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}

/* Two-photo side-by-side pair */
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  line-height: 0;
}
.photo-pair .page-photo-break { max-height: 380px; }
.photo-pair .page-photo-break img { height: 380px; }

/* Inline content photo (float-right within prose) */
.inline-photo {
  float: right;
  width: 420px;
  margin: 0 0 28px 44px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 8px 40px rgba(22,31,48,.12);
  line-height: 0;
}
.inline-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.inline-photo figcaption {
  padding: 10px 14px;
  font-size: .68rem;
  color: var(--txl, #888);
  letter-spacing: .05em;
  background: var(--gray, #f8f8f6);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .photo-pair { grid-template-columns: 1fr; }
  .photo-pair .page-photo-break { max-height: 300px; }
  .photo-pair .page-photo-break img { height: 300px; }
  .inline-photo { float: none; width: 100%; margin: 0 0 28px 0; }
}
@media (max-width: 600px) {
  .page-photo-break { max-height: 280px; }
  .page-photo-break img { height: 280px; }
}

/* ── VIDEO CARD (reusable thumbnail link card) ── */
.vid-card {
  display: block;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(22,31,48,.16);
  text-decoration: none;
  line-height: 0;
  cursor: pointer;
}
.vid-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.vid-card:hover img { transform: scale(1.04); }
.vid-card-over {
  position: absolute;
  inset: 0;
  background: rgba(14,22,38,.40);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background .35s;
  line-height: 1.4;
  padding: 16px;
}
.vid-card:hover .vid-card-over { background: rgba(14,22,38,.22); }
.vid-play-circle {
  width: 66px;
  height: 66px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, box-shadow .3s;
}
.vid-card:hover .vid-play-circle {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}
.vid-card-btn-lbl {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.55);
  text-align: center;
}
.vid-card-sub {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: rgba(255,255,255,.78);
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
  text-align: center;
}
.vid-card-caption {
  padding: 10px 2px 0;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--txl);
}
.vid-card-wrap { margin-bottom: 28px; }

/* Homepage video facade (inline autoplay) */
.yt-facade-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(22,31,48,.16);
  cursor: pointer;
  background: var(--navy);
}
.yt-facade-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.yt-facade-wrap .yt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.yt-facade-wrap:hover .yt-thumb { transform: scale(1.03); }
.yt-facade-wrap .yt-over {
  position: absolute;
  inset: 0;
  background: rgba(14,22,38,.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background .35s;
  padding: 16px;
}
.yt-facade-wrap:hover .yt-over { background: rgba(14,22,38,.18); }
.yt-facade-wrap .yt-play {
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s, box-shadow .3s;
}
.yt-facade-wrap:hover .yt-play {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(0,0,0,.3);
}
.yt-facade-wrap .yt-lbl {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.55);
  text-align: center;
}
@media (max-width: 600px) {
  .vid-play-circle { width: 54px; height: 54px; }
  .yt-facade-wrap .yt-play { width: 58px; height: 58px; }
}

/* ── SHORTS REEL ── */
.shorts-section { padding: 88px 0; background: var(--navy-dk, #0a121e); }
.shorts-header { text-align: center; margin-bottom: 48px; }
.shorts-header .ew { color: var(--gold); }
.shorts-header h2 { color: #fff; margin: 10px 0 14px; }
.shorts-reel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.short-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 48px rgba(0,0,0,.45);
  display: block;
  text-decoration: none;
  cursor: pointer;
  background: #111;
}
.short-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.short-card:hover img { transform: scale(1.07); }
.short-card-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,22,38,.88) 0%, rgba(14,22,38,.18) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 16px;
  gap: 10px;
  transition: background .35s;
}
.short-card:hover .short-card-over {
  background: linear-gradient(to top, rgba(14,22,38,.70) 0%, rgba(14,22,38,.10) 55%, transparent 100%);
}
.short-play-btn {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
  transition: transform .3s, box-shadow .3s;
}
.short-card:hover .short-play-btn {
  transform: scale(1.14);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}
.short-title {
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
  letter-spacing: .02em;
}
.short-tag {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
/* Single short embed (portrait, centered) */
.short-embed-wrap {
  max-width: 340px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(22,31,48,.2);
}
.short-embed-wrap a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  line-height: 0;
}
.short-embed-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.short-embed-wrap:hover img { transform: scale(1.05); }
.short-embed-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,22,38,.85) 0%, rgba(14,22,38,.15) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 22px 18px;
  gap: 10px;
}
@media (max-width: 960px) {
  .shorts-reel { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 500px) {
  .shorts-reel { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .short-title { font-size: .65rem; }
  .shorts-section { padding: 64px 0; }
}

/* ══════════════════════════════════════════════
   PERFORMANCE & SMOOTHNESS UPGRADES
══════════════════════════════════════════════ */

/* GPU-composited layers for animated elements */
.hero-ring, .hero-shimmer {
  will-change: transform;
  backface-visibility: hidden;
}

/* Smooth scroll on all pages */
html { scroll-behavior: smooth; }

/* Contain paint for heavy sections */
.footer, .tbar, .cta-strip {
  contain: paint;
}

/* Image rendering optimized */
img {
  image-rendering: auto;
  content-visibility: auto;
}

/* Lazy images fade-in smoothly */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity .45s ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"][src] {
  opacity: 1;
}

/* ── NAV performance ── */
.nav-drop {
  will-change: opacity, transform;
}

/* ── BUTTON tap feedback (mobile) ── */
.btn:active {
  transform: scale(0.97) !important;
  transition-duration: 0.08s !important;
}

/* ── CTA STRIP gold gradient border ── */
.cta-strip {
  border-top: 1px solid rgba(196,163,90,.22);
  border-bottom: 1px solid rgba(196,163,90,.08);
}

/* ── Footer cert pills (reusable) ── */
.foot-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.foot-cert-pill {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(196,163,90,.55);
  border: 1px solid rgba(196,163,90,.18);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

/* ── Reduce motion — respect user preference ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.12s !important;
  }
  .rev, .rev-l, .rev-r, .rev-z {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-ring { animation: none !important; }
  img[loading="lazy"] { opacity: 1 !important; transition: none !important; }
}

/* ── Smooth scrollbar (Firefox) ── */
* { scrollbar-width: thin; scrollbar-color: rgba(196,163,90,.4) var(--navy-dk); }

/* ── FOCUS styles for accessibility ── */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid rgba(196,163,90,.65);
  outline-offset: 3px;
}

/* ── MOBILE: ensure section padding is breathing room ── */
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  .container { padding: 0 18px; }
  h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.35rem, 6vw, 1.85rem); }
  .two-col { gap: 32px; }
}

/* ── Contact page gold accents ── */
.contact-info-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0 18px 16px;
  border-left: 2px solid rgba(196,163,90,.25);
  transition: border-color .25s ease;
}
.contact-info-row:hover { border-left-color: var(--gold); }
.contact-info-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(196,163,90,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: border-color .25s, box-shadow .25s;
}
.contact-info-row:hover .contact-info-icon {
  border-color: rgba(196,163,90,.65);
  box-shadow: 0 0 14px rgba(196,163,90,.12);
}
.contact-info-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

/* ══════════════════════════════════════════════
   STICKY MOBILE PHONE BAR
══════════════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9997;
  background: var(--navy-dk);
  border-top: 1px solid rgba(196,163,90,.25);
  padding: 10px 14px;
  gap: 8px;
  box-shadow: 0 -6px 28px rgba(14,22,38,.28);
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 12px;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s ease;
  min-height: 48px;
}
.mobile-cta-bar .mb-call {
  background: var(--gold);
  color: var(--navy-dk);
  border-radius: 2px;
}
.mobile-cta-bar .mb-call:hover { background: var(--gold-lt); }
.mobile-cta-bar .mb-inspect {
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: 2px;
}
.mobile-cta-bar .mb-inspect:hover { background: rgba(255,255,255,.08); }

@media (max-width: 960px) {
  .mobile-cta-bar { display: flex; }
  /* Prevent page content being hidden behind the bar */
  .footer { padding-bottom: calc(62px + 72px) !important; }
}

/* ══════════════════════════════════════════════
   EMERGENCY BANNER (sitewide)
══════════════════════════════════════════════ */
.emergency-banner {
  background: linear-gradient(90deg, #8B1A1A 0%, #A52020 50%, #8B1A1A 100%);
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 1001;
}
.emergency-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}
.emergency-banner-inner a {
  color: #FFD700;
  text-decoration: none;
  white-space: nowrap;
}
.emergency-banner-inner a:hover { text-decoration: underline; }
.emergency-dot {
  width: 6px; height: 6px;
  background: #FFD700;
  border-radius: 50%;
  animation: edot 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes edot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(0.7); }
}
@media (max-width: 600px) {
  .emergency-banner-inner { gap: 8px; font-size: .68rem; }
}

/* ══════════════════════════════════════════════
   TEXT US FLOATING BUTTON
══════════════════════════════════════════════ */
.text-us-btn {
  position: fixed;
  bottom: 96px; /* above mobile cta bar on mobile, lower on desktop */
  right: 22px;
  z-index: 9998;
  background: #25D366; /* WhatsApp/SMS green */
  color: #fff;
  border-radius: 50px;
  padding: 12px 18px 12px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(37,211,102,.35);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  white-space: nowrap;
}
.text-us-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 36px rgba(37,211,102,.45);
}
.text-us-btn svg { flex-shrink: 0; }

/* On desktop, keep it higher (no mobile bar covering) */
@media (min-width: 961px) {
  .text-us-btn { bottom: 28px; }
}
/* Hide text label on very small screens, show just icon */
@media (max-width: 380px) {
  .text-us-btn span { display: none; }
  .text-us-btn { padding: 14px; border-radius: 50%; }
}

/* ══════════════════════════════════════════════
   GOOGLE REVIEW CTA IN FOOTER
══════════════════════════════════════════════ */
.footer-review-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(196,163,90,.14);
  border-radius: 2px;
  margin-top: 18px;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease;
}
.footer-review-cta:hover {
  background: rgba(196,163,90,.06);
  border-color: rgba(196,163,90,.3);
}
.footer-review-cta-stars {
  color: #FFD700;
  font-size: .88rem;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.footer-review-cta-text {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}
.footer-review-cta-text strong {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: .72rem;
}
.footer-review-cta-arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  opacity: .6;
  transition: opacity .2s, transform .2s;
}
.footer-review-cta:hover .footer-review-cta-arrow {
  opacity: 1;
  transform: translateX(3px);
}
