/* ============================================================
   LOCKSWIFT — Trusty Florida locksmith landing page
   Palette: navy / cream / sunshine yellow / urgent red
   ============================================================ */

:root {
  /* Brand */
  --navy-900: #07182E;
  --navy-800: #0B2545;
  --navy-700: #13335E;
  --navy-600: #1F4A7A;
  --navy-100: #DCE7F3;

  --cream-50:  #FBF7EE;
  --cream-100: #F4ECD8;
  --cream-200: #EADFC4;

  --sun-500: #F4B400;   /* sunshine yellow CTA */
  --sun-600: #B88800;
  --sun-100: #FCEFC2;

  --red-600: #D62828;   /* urgency */
  --red-700: #B71D1D;
  --red-100: #FBDDDD;

  --ink:    #0B2545;    /* primary text on cream */
  --ink-2:  #2C3E5C;
  --ink-3:  #5D6E87;
  --hair:   rgba(11,37,69,0.12);
  --hair-2: rgba(11,37,69,0.06);

  --green-600: #2E7D4F;

  /* Fonts */
  --font-display: "Bricolage Grotesque", "DM Sans", system-ui, sans-serif;
  --font-body:    "DM Sans", system-ui, sans-serif;
  --font-hand:    "Caveat", "Bricolage Grotesque", cursive;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card: 0 1px 0 rgba(11,37,69,0.06), 0 10px 24px -16px rgba(11,37,69,0.25);
  --shadow-pop:  0 20px 60px -20px rgba(11,37,69,0.45);
  --shadow-cta:  0 8px 0 #B88800, 0 14px 30px -8px rgba(0,0,0,0.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-50);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--navy-800);
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(40px, 5.4vw, 76px); }
h2 { font-size: clamp(30px, 3.6vw, 48px); letter-spacing: -0.025em; }
h3 { font-size: clamp(20px, 1.8vw, 26px); letter-spacing: -0.015em; }

p { margin: 0; text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.topbar {
  background: var(--navy-900);
  color: var(--cream-50);
  font-size: 13.5px;
  padding: 9px 0;
  letter-spacing: 0.01em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar .pulse {
  display: inline-flex; align-items: center; gap: 8px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #38d36f;
  box-shadow: 0 0 0 0 rgba(56,211,111,0.6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(56,211,111,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(56,211,111,0); }
  100% { box-shadow: 0 0 0 0 rgba(56,211,111,0); }
}
.topbar-right { display: flex; gap: 22px; align-items: center; opacity: 0.95; }
.topbar-right span { display: inline-flex; align-items: center; gap: 7px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  background: var(--cream-50);
  border-bottom: 1px solid var(--hair);
  position: sticky;
  top: 0;
  z-index: 30;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--navy-800);
}
.brand-mark {
  width: 38px; height: 38px;
  background: var(--navy-800);
  border-radius: 9px;
  display: grid; place-items: center;
  color: var(--sun-500);
  box-shadow: inset 0 0 0 2px var(--sun-500);
}
.brand img {
  display: block;
  height: 40px;
  width: 40px;
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.foot .brand img {
  height: 44px;
  width: 44px;
  max-width: 44px;
  max-height: 44px;
  background: var(--cream-50);
  border-radius: 8px;
  padding: 4px;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav-links a:hover { color: var(--navy-800); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--sun-500);
  color: var(--navy-800);
  padding: 11px 18px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--navy-800);
  transition: transform 0.12s ease;
}
.nav-cta:hover { transform: translateY(-1px); }

/* ============================================================
   PHONE / CTA BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: var(--r-pill);
  padding: 16px 26px;
  font-size: 17px;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sun-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-cta);
  border: 2.5px solid var(--navy-900);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 #B88800, 0 18px 36px -8px rgba(0,0,0,0.3);
}
.btn-primary:active {
  transform: translateY(4px);
  box-shadow: 0 4px 0 #B88800, 0 6px 14px -4px rgba(0,0,0,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border: 2px solid var(--navy-800);
  padding: 14px 22px;
}
.btn-ghost:hover { background: var(--navy-800); color: var(--cream-50); }

.btn-xl { padding: 22px 34px; font-size: 22px; }

/* Big call link */
.call-cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: 38px;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  background: var(--sun-500);
  border: 3px solid var(--navy-900);
  padding: 16px 28px 18px;
  border-radius: 22px;
  box-shadow: 0 10px 0 #B88800, 0 18px 30px -10px rgba(0,0,0,0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.call-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 0 #B88800, 0 22px 38px -10px rgba(0,0,0,0.3);
}
.call-cta:active {
  transform: translateY(6px);
  box-shadow: 0 4px 0 #B88800, 0 6px 12px -4px rgba(0,0,0,0.3);
}
.call-cta .ringer {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--sun-500);
  animation: ring 1.6s ease-in-out infinite;
}
@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-18deg); }
  20% { transform: rotate(18deg); }
  30% { transform: rotate(-12deg); }
  40% { transform: rotate(12deg); }
  50% { transform: rotate(0deg); }
}

/* ============================================================
   HERO — shared
   ============================================================ */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream-100);
  border: 1px solid var(--hair);
  color: var(--navy-800);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.hero-eyebrow .dot-red {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-600);
  box-shadow: 0 0 0 0 rgba(214,40,40,0.6);
  animation: pulse-red 1.4s infinite;
}
@keyframes pulse-red {
  0%   { box-shadow: 0 0 0 0 rgba(214,40,40,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(214,40,40,0); }
  100% { box-shadow: 0 0 0 0 rgba(214,40,40,0); }
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent {
  background: linear-gradient(180deg, transparent 62%, var(--sun-500) 62%, var(--sun-500) 94%, transparent 94%);
  padding: 0 4px;
}
.hero .lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 0 28px;
}
.hero-trust {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin-top: 22px;
  font-size: 14px;
  color: var(--ink-2);
}
.hero-trust > div { display: inline-flex; align-items: center; gap: 8px; }

/* HERO: image-led */
.hero.layout-image-led .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero.layout-image-led .hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: url('/assets/images/locksmith_showcase.png') center/cover no-repeat;
  box-shadow: var(--shadow-pop);
  transform: rotate(1.5deg);
}
.hero.layout-image-led .hero-photo svg.deco {
  display: none;
}
.hero.layout-image-led .photo-badge {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  background: rgba(11,24,46,0.78);
  backdrop-filter: blur(8px);
  color: var(--cream-50);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
}
.hero.layout-image-led .photo-badge .num {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  color: var(--sun-500);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-actions .note {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--ink-3);
  line-height: 1;
  margin-left: 6px;
  display: inline-flex; gap: 6px; align-items: center;
}

/* HERO: phone-led */
.hero.layout-phone-led { text-align: center; padding: 72px 0 90px; }
.hero.layout-phone-led .hero-grid {
  display: flex; flex-direction: column; align-items: center;
  max-width: 1000px; margin: 0 auto;
}
.hero.layout-phone-led h1 {
  font-size: clamp(36px, 4.5vw, 64px);
  margin-bottom: 14px;
}
.hero.layout-phone-led .lede {
  margin: 0 auto 36px;
  text-align: center;
}
.huge-phone {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  margin: 12px 0 8px;
}
.huge-phone .label {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3);
}
.huge-phone .number {
  font-family: var(--font-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: clamp(54px, 8vw, 104px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy-900);
  background: linear-gradient(180deg, transparent 70%, var(--sun-500) 70%, var(--sun-500) 92%, transparent 92%);
  padding: 0 12px 8px;
  display: inline-block;
}
.huge-phone .sub {
  font-size: 14px; color: var(--ink-3);
  display: inline-flex; gap: 10px; align-items: center;
}

/* HERO: urgency banner */
.hero.layout-urgency {
  padding: 0;
  background: var(--cream-50);
}
.urg-strip {
  background: var(--red-600);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
}
.urg-strip-inner {
  display: flex; gap: 56px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 16px;
}
.urg-strip-inner span { display: inline-flex; align-items: center; gap: 14px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hero.layout-urgency .urg-body {
  padding: 56px 0 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.hero.layout-urgency .urg-bigline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}
.hero.layout-urgency .urg-bigline .red {
  color: var(--red-600);
  display: inline-block;
  transform: rotate(-2deg);
}
.hero.layout-urgency .urg-card {
  background: var(--navy-900);
  color: var(--cream-50);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
}
.hero.layout-urgency .urg-card::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px dashed var(--sun-500);
  border-radius: calc(var(--r-xl) + 6px);
  opacity: 0.6;
  pointer-events: none;
}
.urg-card .label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--sun-500);
}
.urg-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: clamp(40px, 4.8vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 8px 0 16px;
  display: block;
}
.urg-card .row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}
.urg-card .row b { color: var(--sun-500); }

/* Floating photo elements for image-led */
.float-badge {
  position: absolute;
  background: var(--cream-50);
  border: 2px solid var(--navy-900);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: var(--shadow-card);
  transform: rotate(-3deg);
  z-index: 10;
}

/* ============================================================
   PHOTO PLACEHOLDERS (no real images yet)
   ============================================================ */
.ph-photo {
  position: relative;
  width: 100%; height: 100%;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(0,0,0,0.25)),
    radial-gradient(120% 80% at 20% 0%, var(--navy-700), var(--navy-900) 60%);
  display: grid; place-items: center;
  color: var(--cream-50);
  font-family: var(--font-hand);
  font-size: 28px;
  letter-spacing: 0.02em;
  overflow: hidden;
}
.ph-photo::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 35%, rgba(244,180,0,0.18), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(244,180,0,0.12), transparent 50%);
}
.ph-photo .ph-label {
  position: relative;
  text-align: center;
  background: rgba(0,0,0,0.4);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px dashed rgba(244,180,0,0.5);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sun-500);
}

/* Themed photo placeholders — different gradients per service */
.ph-photo.theme-car {
  background: url('/assets/images/car_lockout.png') center/cover no-repeat;
}
.ph-photo.theme-house {
  background: url('/assets/images/sliding_door_lock.png') center/cover no-repeat;
}
.ph-photo.theme-smart {
  background: url('/assets/images/smart_lock.png') center/cover no-repeat;
}
.ph-photo.theme-rekey {
  background: url('/assets/images/rekey_locks.png') center/cover no-repeat;
}
.ph-photo.theme-key {
  background: url('/assets/images/mailbox_lock.png') center/cover no-repeat;
}
.ph-photo.theme-comm {
  background: url('/assets/images/office_locksmith.png') center/cover no-repeat;
}

/* SVG decoration inside photo placeholders */
.ph-photo svg.deco {
  display: none;
}

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
section { padding: 88px 0; }
section.tight { padding: 56px 0; }

.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 30px; margin-bottom: 42px;
  flex-wrap: wrap;
}
.section-head .left { max-width: 640px; }
.section-eyebrow {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red-600);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: var(--red-600);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}
.svc-card {
  position: relative;
  background: var(--cream-50);
  border: 1.5px solid var(--hair);
  border-radius: var(--r-xl);
  padding: 24px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-800);
  box-shadow: var(--shadow-card);
}
.svc-card .svc-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: 18px;
  background: var(--navy-800);
}
.svc-card h3 { margin-bottom: 8px; }
.svc-card p { color: var(--ink-2); font-size: 15px; }
.svc-card .tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--sun-500);
  color: var(--navy-900);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 9px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--navy-900);
}
.svc-card .arrow {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy-800);
}
.svc-card:hover .arrow { gap: 10px; }

/* Featured car-lockout card takes 2 columns + 2 rows */
.svc-card.featured {
  grid-column: span 3;
  grid-row: span 2;
  background: var(--navy-900);
  color: var(--cream-50);
  border-color: var(--navy-900);
  padding: 0;
  display: grid;
  grid-template-rows: 1.05fr auto;
}
.svc-card.featured .svc-photo {
  margin: 0;
  border-radius: 0;
  aspect-ratio: auto;
  height: 100%;
  min-height: 280px;
}
.svc-card.featured .svc-body {
  padding: 30px;
}
.svc-card.featured h3 {
  color: var(--cream-50);
  font-size: clamp(26px, 2.2vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.svc-card.featured p { color: rgba(251,247,238,0.75); font-size: 16px; }
.svc-card.featured .tag { background: var(--red-600); color: #fff; border-color: var(--red-600); }
.svc-card.featured .arrow { color: var(--sun-500); }

.svc-card.regular { grid-column: span 3; }

/* On larger grid, regular cards are 2-col */
@media (min-width: 880px) {
  .svc-card.regular { grid-column: span 2; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  background: var(--navy-900);
  color: var(--cream-50);
  border-radius: 32px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}
.how::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,180,0,0.18), transparent 65%);
  pointer-events: none;
}
.how h2 { color: var(--cream-50); }
.how .lede { color: rgba(251,247,238,0.75); max-width: 560px; margin-top: 14px; }
.how-steps {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.how-steps::before {
  content: "";
  position: absolute;
  top: 24px; left: 4%; right: 4%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--sun-500) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  position: relative;
  padding: 0 18px;
  z-index: 1;
}
.step .num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sun-500);
  color: var(--navy-900);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  border: 3px solid var(--navy-900);
  margin-bottom: 18px;
}
.step h3 { color: var(--cream-50); font-size: 20px; margin-bottom: 8px; }
.step p { color: rgba(251,247,238,0.75); font-size: 15px; }
.step .time {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sun-500);
  margin-top: 10px;
  letter-spacing: 0.08em;
}

/* Live ETA widget */
.eta-widget {
  margin-top: 44px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(244,180,0,0.3);
  border-radius: var(--r-xl);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.eta-widget .map-thumb {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy-700);
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
}
.eta-widget .map-thumb::after {
  content: "";
  position: absolute; inset: -4px;
  border: 2px solid var(--sun-500);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.eta-widget .eta-text { flex: 1; min-width: 240px; }
.eta-widget .eta-text .small {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sun-500); font-weight: 700;
}
.eta-widget .eta-text .big {
  font-family: var(--font-display);
  font-size: 22px;
  margin-top: 4px;
  color: var(--cream-50);
}
.eta-widget .eta-text .meta {
  font-size: 14px; color: rgba(251,247,238,0.7); margin-top: 4px;
  display: inline-flex; gap: 14px;
}
.eta-widget .eta-tech {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(251,247,238,0.6);
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 18px;
}

/* ============================================================
   TRUST ROW
   ============================================================ */
.trust-strip {
  background: var(--cream-100);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 36px 0;
}
.trust-strip .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-cell {
  display: flex; align-items: center; gap: 14px;
}
.trust-cell .ic {
  width: 46px; height: 46px;
  background: var(--cream-50);
  border: 1.5px solid var(--navy-800);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  color: var(--navy-800);
  flex-shrink: 0;
}
.trust-cell .t1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-800);
}
.trust-cell .t2 {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 2px;
}

/* ============================================================
   SERVICE AREA MAP
   ============================================================ */
.map-section .map-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: stretch;
}
.map-canvas {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(160deg, #DCE7F3 0%, #B7D2EE 100%);
  border: 1.5px solid var(--hair);
  min-height: 480px;
}
.map-canvas svg.basemap {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.map-canvas .pin {
  position: absolute;
  transform: translate(-50%, -100%);
}
.map-canvas .pin .body {
  width: 38px; height: 38px;
  border-radius: 50% 50% 50% 0;
  background: var(--red-600);
  transform: rotate(-45deg);
  border: 3px solid var(--cream-50);
  box-shadow: 0 6px 14px -4px rgba(0,0,0,0.4);
  display: grid; place-items: center;
}
.map-canvas .pin .body::after {
  content: "";
  width: 12px; height: 12px;
  background: var(--cream-50);
  border-radius: 50%;
  transform: rotate(45deg);
}
.map-canvas .pin.hq .body { background: var(--navy-800); }
.map-canvas .pin .lbl {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translate(-50%, -100%);
  background: var(--cream-50);
  border: 1.5px solid var(--navy-800);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--navy-800);
}
.map-canvas .radius-ring {
  position: absolute;
  border: 2px dashed rgba(11,37,69,0.45);
  border-radius: 50%;
  pointer-events: none;
}
.map-canvas .badge-fl {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--cream-50);
  border: 1.5px solid var(--navy-800);
  border-radius: var(--r-md);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-800);
}
.map-side {
  display: flex; flex-direction: column;
  justify-content: center;
}
.map-side h2 { margin-bottom: 16px; }
.area-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 22px;
  list-style: none;
  padding: 0;
}
.area-list li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500;
  color: var(--ink-2);
  font-size: 15.5px;
}
.area-list li .dot {
  width: 8px; height: 8px;
  background: var(--sun-500);
  border-radius: 50%;
  border: 1.5px solid var(--navy-800);
  flex-shrink: 0;
}

/* ============================================================
   RATES TABLE (no $ values)
   ============================================================ */
.rates-section { background: var(--cream-100); }
.rates-table {
  background: var(--cream-50);
  border: 1.5px solid var(--hair);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.rates-table .head, .rates-table .row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: center;
  padding: 18px 26px;
}
.rates-table .head {
  background: var(--navy-900);
  color: var(--cream-50);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rates-table .row {
  border-top: 1px solid var(--hair);
  font-size: 15.5px;
}
.rates-table .row:first-child { border-top: none; }
.rates-table .row:hover { background: var(--cream-100); }
.rates-table .svc-name {
  display: flex; align-items: center; gap: 14px;
  font-weight: 600;
}
.rates-table .svc-ico {
  width: 36px; height: 36px;
  background: var(--cream-100);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  color: var(--navy-800);
  flex-shrink: 0;
}
.rates-table .yes  { color: var(--green-600); font-weight: 700; }
.rates-table .pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cream-100);
  border: 1px solid var(--hair);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.rates-foot {
  margin-top: 22px;
  display: flex; justify-content: space-between; gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-3);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--hair);
}
.faq-item {
  border-bottom: 1px solid var(--hair);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px;
  cursor: pointer;
  width: 100%;
  background: none; border: none;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy-800);
  text-align: left;
}
.faq-q .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-100);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-item.open .faq-q .icon {
  background: var(--sun-500);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, padding 0.28s ease;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
  padding: 0 4px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 4px 22px;
}

/* ============================================================
   FINAL CTA / FOOTER
   ============================================================ */
.cta-band {
  background: var(--navy-900);
  color: var(--cream-50);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  left: -10%; top: 50%;
  width: 60%; height: 220%;
  background: radial-gradient(circle, rgba(244,180,0,0.18), transparent 60%);
  transform: translateY(-50%);
}
.cta-band .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.cta-band h2 { color: var(--cream-50); font-size: clamp(36px, 4vw, 60px); }
.cta-band p { color: rgba(251,247,238,0.75); margin-top: 14px; max-width: 460px; }
.cta-band .right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}

footer.foot {
  background: var(--navy-900);
  color: var(--cream-100);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 56px 0 32px;
}
footer.foot .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
footer.foot h4 {
  color: var(--sun-500);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
footer.foot ul { list-style: none; padding: 0; margin: 0; }
footer.foot li {
  padding: 5px 0;
  color: rgba(251,247,238,0.78);
  font-size: 14.5px;
}
footer.foot .legal {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(251,247,238,0.6);
}

/* ============================================================
   STICKY MOBILE CALL BAR (visible always at bottom on small)
   ============================================================ */
.sticky-call {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 40;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero.layout-image-led .hero-grid,
  .hero.layout-urgency .urg-body,
  .map-section .map-wrap,
  .faq-grid,
  .cta-band .container,
  footer.foot .grid { grid-template-columns: 1fr; }
  footer.foot { padding-bottom: 140px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card.featured, .svc-card.regular { grid-column: span 2; }
  .svc-card.featured .svc-photo { min-height: 220px; }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .how-steps::before { display: none; }
  .trust-strip .row { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .topbar { font-size: 12px; }
  .topbar-right { gap: 14px; }
  .rates-table .head { display: none; }
  .rates-table .row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 18px;
  }
}
@media (max-width: 560px) {
  section { padding: 56px 0; }
  .how { padding: 40px 24px; border-radius: 22px; }
  .area-list { grid-template-columns: 1fr; }
  .call-cta { font-size: 26px; padding: 14px 18px; gap: 10px; }
  .call-cta .ringer { width: 36px; height: 36px; }
}

/* ============================================================
   RECENT WORK GALLERY
   ============================================================ */
.recent-work-section {
  background: var(--cream-100);
}
.recent-work-section h2 {
  color: var(--navy-900);
}
.recent-work-section .lede {
  color: var(--navy-700);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  background: var(--cream-50);
  border: 2px solid var(--navy-900);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pop);
}
.gallery-photo-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 2px solid var(--navy-900);
  position: relative;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.gallery-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun-500);
}
.gallery-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-900);
  margin: 0;
}
.gallery-info p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--navy-700);
  margin: 0;
}
@media (max-width: 880px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
