/* OhMyGlass — bold, urgent, service-business aesthetic */
:root {
  --ink: #0A0E14;
  --ink-2: #151a22;
  --ink-3: #2a2f38;
  --bone: #F5F2EC;
  --bone-2: #ECE8E0;
  --paper: #FFFFFF;
  --rule: #D8D2C6;
  --rule-2: #3a4050;
  --red: #E5322D;
  --red-deep: #B3241F;
  --amber: #F5B300;
  --mute: #6b7280;

  /* Urgency intensity scale — set by Tweaks (1 subtle → 5 loud) */
  --urgency: 3;
  --urgency-pulse: 1;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html, body { background: var(--bone); color: var(--ink); font-family: 'Inter', system-ui, -apple-system, sans-serif; font-feature-settings: "ss01","cv11"; -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
/* Prevent long URLs / headings from forcing horizontal scroll */
h1, h2, h3, p, .review .text, .contact-info-block .v { overflow-wrap: anywhere; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-feature-settings: "zero"; }
.serif { font-family: 'Fraunces', 'Times New Roman', serif; font-style: italic; }

/* ======================= TOP EMERGENCY BAR ======================= */
.e-bar {
  background: var(--red);
  color: #fff;
  font-size: calc(11px + (var(--urgency) - 1) * 0.5px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: calc(6px + (var(--urgency) - 1) * 1px) 24px;
  display: flex; align-items: center; gap: 16px; justify-content: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.e-bar.level-1 { background: var(--ink); }
.e-bar.level-2 { background: #3a1a18; }
.e-bar.level-3 { background: var(--red); }
.e-bar.level-4 { background: var(--red); }
.e-bar.level-5 { background: var(--red); }

.e-bar .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
  animation: pulse 1.4s infinite;
  animation-play-state: running;
}
.e-bar.level-1 .dot, .e-bar.level-2 .dot { background: var(--red); animation-duration: 2.2s; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.7); }
}
.e-bar .sep { opacity: 0.5; }
.e-bar a { text-decoration: underline; text-underline-offset: 3px; }

/* Loud levels: add marquee effect */
.e-bar.level-5 .marquee-text {
  display: inline-block;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======================= NAV ======================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.2s, background 0.2s;
}
.nav.scrolled { box-shadow: 0 1px 0 var(--rule), 0 8px 24px -12px rgba(10,14,20,0.12); }
.nav-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 38px; width: auto; }
.brand-text { display: none; }

.nav-links {
  display: flex; gap: 28px; align-items: center;
  flex: 1;
  font-size: 14px; font-weight: 500;
}
.nav-links button { color: var(--ink); position: relative; padding: 6px 0; }
.nav-links button:hover { color: var(--red); }
.nav-links button.active { color: var(--red); }
.nav-links button.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -14px;
  height: 2px; background: var(--red);
}

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  transition: background 0.15s;
}
.nav-phone:hover { background: var(--ink); color: var(--bone); }
.nav-phone .phone-label { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); line-height: 1; margin-bottom: 2px; }
.nav-phone .phone-num { line-height: 1; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: transform 0.1s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); }
.btn-ink { background: var(--ink); color: var(--bone); }
.btn-ink:hover { background: var(--ink-2); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bone); }
.btn-bone-out { background: transparent; color: var(--bone); border: 1px solid var(--bone); }
.btn-bone-out:hover { background: var(--bone); color: var(--ink); }

.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-xl { padding: 20px 36px; font-size: 16px; }

/* ======================= HERO ======================= */
/* Photo + overlay — strong scrim so photography stays legible behind type */
.hero {
  background-color: #050709;
  color: var(--bone);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  background-image:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.97) 0%,
      rgba(0, 0, 0, 0.88) 22%,
      rgba(0, 0, 0, 0.68) 48%,
      rgba(4, 6, 10, 0.78) 100%
    ),
    url('images/hero.webp');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 48%);
}
.hero-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 72px 32px 0;
  display: grid;
  /* Wider copy column nudges the form column toward the right */
  grid-template-columns: minmax(0, 1.42fr) minmax(0, 0.88fr);
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.hero-kicker {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 28px;
  opacity: 0.7;
}
.hero-kicker .line { flex: 0 0 48px; height: 1px; background: var(--bone); opacity: 0.4; }
.hero-kicker-short { display: none; }

.hero h1 {
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 32px;
}
.hero h1 .red { color: var(--red); }
.hero h1 .accent { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }

.hero-sub {
  font-size: 18px; line-height: 1.5;
  max-width: 640px;
  color: var(--bone); opacity: 0.78;
  margin-bottom: 36px;
}

.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero-ctas--stack { flex-direction: column; align-items: stretch; gap: 4px; margin-bottom: 28px; }
.hero-ctas--stack > .hero-contact-rail,
.hero-ctas--stack > .hero-contact-helper {
  align-self: flex-start;
}
.hero-ctas-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* One rail: [ number | call | text ] — width hugs content (avoid stretch from parent column) */
.hero-contact-rail {
  display: flex;
  align-items: stretch;
  width: max-content;
  max-width: 100%;
  flex-wrap: nowrap;
  border: 1px solid rgba(245, 242, 236, 0.42);
  border-radius: 2px;
  overflow: hidden;
  background: rgba(10, 14, 20, 0.55);
  backdrop-filter: blur(8px);
  box-sizing: border-box;
}
.hero-contact-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  color: var(--bone);
  flex: 0 0 auto;
}
.hero-contact-seg + .hero-contact-seg {
  border-left: 1px solid rgba(245, 242, 236, 0.28);
}
.hero-contact-seg--num {
  flex: 0 1 auto;
  padding: 0 18px 0 20px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.hero-contact-seg--action {
  flex: 0 0 52px;
  width: 52px;
  max-width: 52px;
  min-width: 52px;
  padding: 0;
  box-sizing: border-box;
  transition: background 0.15s, color 0.15s;
}
.hero-contact-seg--action:hover {
  background: rgba(245, 242, 236, 0.12);
  color: #fff;
}
.hero-contact-seg--action:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
  z-index: 1;
}
.hero-contact-helper {
  margin-top: 0;
  color: rgba(245, 242, 236, 0.72) !important;
  max-width: 420px;
}
.sms-quote-block { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; max-width: 100%; }
.sms-quote-block .sms-btn { display: inline-flex; align-items: center; gap: 10px; }
.sms-quote-helper {
  font-size: 11px; line-height: 1.45; color: var(--ink-3); max-width: 420px; margin: 0;
}
.sms-btn--on-red {
  background: #fff !important;
  color: var(--red) !important;
  border: 2px solid rgba(255,255,255,0.95) !important;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.12);
}
.sms-btn--on-red:hover { background: var(--bone) !important; }
.sms-quote-block a:focus-visible,
.sms-btn:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
.hero-marquee--subtle .track { opacity: 0.55; }
.hero-marquee--subtle .star { opacity: 0.7; }
.why-warranty-note {
  margin-top: 20px; font-size: 14px; line-height: 1.5; color: var(--mute); max-width: 400px;
}
.services-warranty-lede { font-size: 15px; color: var(--ink-3); margin: -8px 0 24px; max-width: 720px; line-height: 1.5; }
.page-hero-trust { font-size: 15px; line-height: 1.55; color: var(--ink-3); max-width: 800px; margin: 12px 0 24px; }
.contact-hero-trust { font-size: 15px; line-height: 1.55; color: var(--ink-3); max-width: 720px; margin-top: 20px; }
.contact-sms-wrap .sms-quote-block { width: 100%; }
.contact-sms-wrap .sms-quote-block .btn { width: 100%; justify-content: center; }
.contact-sms-wrap .sms-quote-helper { font-size: 11px; }

.hero-visual {
  position: relative;
  z-index: 2;
  max-width: 520px;
  width: 100%;
  justify-self: end;
  align-self: start;
}
.hero-visual--form {
  max-width: min(100%, 560px);
}
.hero-form-stack {
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.35);
}
.hero-form-stack .form-wrap {
  padding: 28px 32px;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.hero-form-stack .form-wrap h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--ink);
}

/* Rolling marquee below hero */
.hero-marquee {
  position: relative;
  z-index: 2;
  background: var(--ink);
  color: var(--bone);
  border-top: 1px solid rgba(245,242,236,0.12);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.hero-marquee .track {
  display: inline-flex; gap: 40px;
  animation: marquee 40s linear infinite;
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}
.hero-marquee .track span { display: inline-flex; align-items: center; gap: 40px; }
.hero-marquee .star { color: var(--red); }
.hero-marquee-spacer { margin-top: 72px; }

/* ======================= STATS STRIP ======================= */
.stats {
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
}
.stats-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 56px 32px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat {
  padding: 0 32px;
  border-left: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat .big {
  font-size: clamp(64px, 8vw, 120px); line-height: 0.9;
  font-weight: 800; letter-spacing: -0.04em;
  color: var(--ink);
}
.stat .big sup { font-size: 0.35em; color: var(--red); vertical-align: top; margin-left: 4px; font-weight: 700; top: 0.3em; position: relative; }
.stat .k { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; color: var(--ink); }
.stat .v { font-size: 14px; color: var(--mute); line-height: 1.5; max-width: 280px; }

/* ======================= SECTION FRAME ======================= */
.section { padding: 96px 32px; }
.section-inner { max-width: 1440px; margin: 0 auto; }
.section-eye {
  display: flex; align-items: baseline; gap: 12px;
  flex-wrap: wrap;
  row-gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 20px;
}
.section-eye .num { color: var(--red); font-weight: 700; }
.section-eye .line { flex: 1; min-width: 48px; height: 1px; background: var(--rule); }

.contact-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 16px;
}
.em-form-section-kicker {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-h {
  font-size: clamp(36px, 5vw, 72px); line-height: 1;
  letter-spacing: -0.03em; font-weight: 800;
  margin-bottom: 24px;
  max-width: 900px;
}
.section-h .serif { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; color: var(--red); }

.section-lede {
  font-size: 18px; line-height: 1.6; color: var(--ink-3);
  max-width: 640px;
  margin-bottom: 56px;
}

/* ======================= WHY US ======================= */
.why {
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.why-left h2 {
  font-size: clamp(40px, 5vw, 80px); line-height: 1;
  letter-spacing: -0.035em; font-weight: 800;
}
.why-left h2 .quote { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; color: var(--red); }
.why-left .motto {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: 'Fraunces', serif;
  font-size: 22px; font-style: italic;
  line-height: 1.4;
  font-weight: 400;
}
.why-left .motto strong { font-style: normal; font-family: 'Inter', sans-serif; font-weight: 700; color: var(--red); }

.why-right { display: flex; flex-direction: column; gap: 1px; background: var(--rule); }
.why-item { background: var(--bone); padding: 24px 28px; display: grid; grid-template-columns: 60px 1fr auto; gap: 20px; align-items: center; }
.why-item .n { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--red); font-weight: 700; }
.why-item .t { font-weight: 600; font-size: 16px; }
.why-item .d { font-size: 14px; color: var(--mute); grid-column: 2; margin-top: -12px; line-height: 1.5; }
.why-item .k { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink); padding: 4px 8px; background: var(--bone-2); border-radius: 2px; }

/* ======================= SERVICE CARDS ======================= */
.services-preview {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.svc-card {
  position: relative; overflow: hidden;
  background: var(--ink);
  color: var(--bone);
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.svc-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) contrast(1.05); transition: transform 0.5s ease, filter 0.3s; }
.svc-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,14,20,0.9) 0%, rgba(10,14,20,0.1) 50%, transparent 100%);
  pointer-events: none;
}
.svc-card .body {
  position: absolute; inset: 0;
  padding: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.svc-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em;
  background: rgba(245,242,236,0.12);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  align-self: flex-start;
  border-radius: 2px;
}
.svc-card .info { position: relative; z-index: 2; }
.svc-card h3 {
  font-size: 22px; font-weight: 700; line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.svc-card .desc {
  font-size: 13px; line-height: 1.5;
  color: var(--bone); opacity: 0;
  max-height: 0; overflow: hidden;
  transition: opacity 0.3s, max-height 0.3s, margin 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .svc-card:hover img { transform: scale(1.06); filter: saturate(1) contrast(1.1) brightness(0.7); }
  .svc-card:hover .desc { opacity: 0.85; max-height: 100px; margin-top: 8px; margin-bottom: 12px; }
  .svc-card:hover .arrow svg { transform: translateX(4px); }
}
/* Phones / tablets: show card copy without relying on hover */
@media (hover: none), (pointer: coarse) {
  .svc-card .desc {
    opacity: 0.88;
    max-height: 120px;
    margin-top: 6px;
    margin-bottom: 8px;
  }
}
.svc-card .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--red);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.svc-card .arrow svg { transition: transform 0.2s; }

/* ======================= PORTFOLIO ======================= */
.work {
  background: var(--ink);
  color: var(--bone);
  border-bottom: 1px solid var(--ink);
}
.work .section-h { color: var(--bone); }
.work .section-lede { color: var(--bone); opacity: 0.7; }
.work .section-eye { color: var(--bone); opacity: 0.5; }
.work .section-eye .line { background: rgba(245,242,236,0.2); }
.work .section-eye .num { color: var(--red); opacity: 1; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.work-item { position: relative; }
.work-frame {
  aspect-ratio: 4/3;
  background: var(--ink-2);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(245,242,236,0.08);
}
.work-frame img,
.work-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-frame video:not(.is-playing) { pointer-events: none; }
.work-frame .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(10,14,20,0.2);
  transition: background 0.2s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .work-frame .play:hover { background: rgba(10,14,20,0.4); }
}
.work-frame .play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.work-item .meta {
  padding-top: 16px;
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  flex-wrap: wrap;
}
.work-item .meta .idx { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--red); font-weight: 700; }
.work-item .meta .loc { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--bone); opacity: 0.5; letter-spacing: 0.1em; text-transform: uppercase; }
.work-item h3 { font-size: 22px; font-weight: 700; margin: 8px 0 6px; letter-spacing: -0.02em; }
.work-item .cat { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.work-item p { font-size: 14px; color: var(--bone); opacity: 0.7; line-height: 1.5; }

/* ======================= REVIEWS ======================= */
.reviews { background: var(--bone); border-bottom: 1px solid var(--rule); }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.review {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.review .stars { color: var(--red); font-size: 16px; letter-spacing: 2px; }
.review .text { font-size: 16px; line-height: 1.55; color: var(--ink); flex: 1; font-family: 'Fraunces', serif; }
.review .who { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--rule); }
.review .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--bone); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.review .who .name { font-weight: 600; font-size: 14px; }
.review .who .meta { font-size: 11px; color: var(--mute); font-family: 'JetBrains Mono', monospace; }

.reviews-summary {
  display: flex; align-items: stretch; gap: 40px;
  padding: 36px 40px;
  background: var(--ink); color: var(--bone);
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.reviews-summary--hero { align-items: center; }
.reviews-summary-main { display: flex; flex-direction: column; gap: 8px; min-width: 200px; }
.reviews-summary .rating-big { font-size: 72px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.reviews-summary .rating-big sub { font-size: 0.35em; color: var(--bone); opacity: 0.5; font-weight: 500; }
.reviews-stars-row { display: flex; flex-direction: column; gap: 4px; }
.reviews-star-burst { color: var(--red); font-size: 22px; letter-spacing: 3px; line-height: 1; }
.reviews-count-label {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace; color: var(--bone); opacity: 0.65; font-weight: 600;
}
.reviews-summary .platforms { display: flex; gap: 20px; margin-left: auto; flex: 1; justify-content: flex-end; min-width: 280px; }
.reviews-summary .platforms--large { gap: 24px; }
.reviews-summary .platform {
  padding: 20px 24px;
  border: 1px solid rgba(245,242,236,0.22);
  display: flex; flex-direction: row;
  align-items: center; gap: 16px;
  min-width: 200px;
  flex: 1;
  max-width: 320px;
}
.reviews-summary .platform-body { display: flex; flex-direction: column; gap: 4px; }
.reviews-summary .platform-logo {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviews-summary .platform-logo svg { display: block; }
.reviews-summary .platform-logo--g {
  background: #fff;
}
.reviews-summary .platform-logo--f {
  background: transparent;
}
.reviews-summary .platform .name { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bone); opacity: 0.55; }
.reviews-summary .platform .val { font-size: 22px; font-weight: 700; }
.reviews-summary .platform .val .red { color: var(--red); }

/* ======================= SEO LINK CLUSTER ======================= */
.seo-cluster {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 56px 32px;
}
.seo-cluster .inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: center; }
.seo-cluster .label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mute); margin-bottom: 8px; }
.seo-cluster h3 { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.seo-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.seo-chip {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  font-size: 13px; font-weight: 500;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
  text-align: left;
  line-height: 1.35;
  color: var(--ink);
  -webkit-tap-highlight-color: rgba(10, 14, 20, 0.06);
}
.seo-chip:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.seo-chip-label { flex: 1; min-width: 0; text-align: left; }
@media (hover: hover) and (pointer: fine) {
  .seo-chip:hover { background: var(--ink); color: var(--bone); }
}
.seo-chip .arrow { opacity: 0.5; flex-shrink: 0; }
@media (hover: none), (pointer: coarse) {
  .seo-chip:active {
    background: var(--ink);
    color: var(--bone);
  }
  .seo-chip:active .arrow { opacity: 0.85; }
}

/* ======================= FINAL CTA ======================= */
.cta-final {
  background: var(--red);
  color: #fff;
  padding: 120px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final .inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
.cta-final h2 { font-size: clamp(44px, 6vw, 96px); font-weight: 800; letter-spacing: -0.035em; line-height: 1; margin-bottom: 24px; }
.cta-final h2 .serif { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }
.cta-final p { font-size: 18px; margin-bottom: 40px; opacity: 0.9; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.5; }
.cta-final .ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cta-final .ctas .btn {
  flex: 1 1 160px;
  justify-content: center;
  min-width: 0;
}
.cta-final .btn-white { background: #fff; color: var(--red); }
.cta-final .btn-white:hover { background: var(--ink); color: #fff; }
.cta-final::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,0.03) 20px 21px);
}

/* ======================= FOOTER ======================= */
.footer { background: var(--ink); color: var(--bone); padding: 80px 32px 32px; }
.footer-inner { max-width: 1440px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(245,242,236,0.12); }
.footer .brand-col img { height: 48px; width: auto; }
.footer-logo {
  height: 48px;
  width: auto;
  display: block;
  /* logo-dark.png is on a black matte; lighten drops black against the dark footer */
  mix-blend-mode: lighten;
}
.footer-trust-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bone); opacity: 0.88;
  border: 1px solid rgba(245,242,236,0.22);
  padding: 8px 12px; display: inline-block; margin: 16px 0 0; border-radius: 2px;
}
.footer-bottom-trust { text-align: right; max-width: min(520px, 55vw); line-height: 1.45; opacity: 0.65 !important; }
.footer .brand-col p { margin: 20px 0; font-size: 14px; color: var(--bone); opacity: 0.6; line-height: 1.6; max-width: 320px; }
.footer h4 { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 20px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: var(--bone); opacity: 0.7; transition: all 0.15s; }
.footer ul a:hover { opacity: 1; color: var(--red); }
.footer .contact-info { font-size: 14px; color: var(--bone); opacity: 0.7; }
.footer .contact-info .item { margin-bottom: 14px; }
.footer .contact-info .item strong { display: block; color: var(--bone); opacity: 1; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }
.footer-bottom { padding-top: 32px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--bone); opacity: 0.5; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.05em; }
.footer-bottom .socials { display: flex; gap: 16px; }

/* ======================= FLOAT CALL (MOBILE + DESKTOP SCROLL) ======================= */
.float-call {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: calc(24px + env(safe-area-inset-right, 0px));
  left: auto;
  max-width: calc(100vw - 32px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
  z-index: 40;
  background: var(--red); color: #fff;
  padding: 14px 20px;
  border-radius: 2px;
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  min-height: 48px;
  min-width: 48px;
  border: 1px solid transparent;
  box-shadow: 0 8px 32px -8px rgba(229,50,45,0.5), 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s, background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.float-call.visible { transform: translateY(0); opacity: 1; }
.float-call .dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: pulse 1.4s infinite; transition: background 0.25s; }

/* Solid red FAB reads as “lost” on red sections — invert to light card + halo */
.float-call.on-red-bg {
  background: #fff;
  color: var(--red);
  border-color: rgba(255,255,255,0.95);
  box-shadow:
    0 0 0 3px rgba(255,255,255,1),
    0 0 0 5px rgba(229,50,45,0.35),
    0 0 0 8px rgba(0,0,0,0.12),
    0 14px 44px -8px rgba(0,0,0,0.4),
    0 4px 14px rgba(0,0,0,0.15);
}
.float-call.on-red-bg .dot { background: var(--red); }
.float-call:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}
.float-call.on-red-bg:focus-visible {
  outline-color: var(--ink);
  outline-offset: 5px;
}
@media (hover: hover) and (pointer: fine) {
  .float-call.on-red-bg:hover {
    background: var(--bone);
    color: var(--red-deep);
  }
}

/* ======================= BREADCRUMB ======================= */
.crumb {
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
  padding: 14px 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mute);
}
.crumb .inner { max-width: 1440px; margin: 0 auto; display: flex; gap: 8px; align-items: center; }
.crumb a { color: var(--mute); transition: color 0.15s; }
.crumb a:hover { color: var(--red); }
.crumb .current { color: var(--ink); font-weight: 600; }

/* ======================= FORM ======================= */
.form-section { background: var(--bone-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.form-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.form-wrap {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 40px;
  color: var(--ink);
}
.form-wrap .tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 8px; }
.form-wrap h3 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.05;
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); font-weight: 600; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  padding: 12px 14px;
  background: var(--bone);
  border: 1px solid var(--rule);
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color 0.15s, background 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: var(--paper);
}
.field textarea { min-height: 100px; resize: vertical; }
.field.error input, .field.error select, .field.error textarea { border-color: var(--red); background: rgba(229,50,45,0.04); }
.field .err-msg { font-size: 11px; color: var(--red); font-family: 'JetBrains Mono', monospace; }

.form-submit { width: 100%; justify-content: center; margin-top: 16px; }
.form-note { font-size: 12px; color: var(--ink-3); margin-top: 16px; line-height: 1.5; }

.form-success {
  padding: 40px;
  background: var(--ink); color: var(--bone);
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
}
.form-success .check { width: 56px; height: 56px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; }
.form-success h3 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.form-success p { font-size: 15px; opacity: 0.75; line-height: 1.5; }

/* Inline form (when embedded in hero/etc) */
.inline-form { padding: 0; }

/* ======================= SERVICES PAGE ======================= */
.page-hero {
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
  padding: 80px 32px 64px;
}
.page-hero .inner { max-width: 1440px; margin: 0 auto; }
.page-hero .eye { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(48px, 7vw, 120px); line-height: 0.95; letter-spacing: -0.035em; font-weight: 800; max-width: 1200px; margin-bottom: 24px; }
.page-hero h1 .serif { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; color: var(--red); }
.page-hero .sub { font-size: 18px; line-height: 1.55; color: var(--ink-3); max-width: 720px; margin-bottom: 40px; }
.page-hero .phones { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--rule); margin-top: 32px; }
.page-hero .phones-cta { margin-left: auto; }
.page-hero .phone-grp { display: flex; flex-direction: column; gap: 4px; }
.page-hero .phone-grp .k { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); font-family: 'JetBrains Mono', monospace; }
.page-hero .phone-grp .v { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.page-hero .phone-grp .v .red { color: var(--red); }

.svc-category {
  padding: 80px 32px;
  border-bottom: 1px solid var(--rule);
}
.svc-category:nth-child(even) { background: var(--paper); }
.svc-category .inner { max-width: 1440px; margin: 0 auto; }
.cat-header { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; margin-bottom: 48px; align-items: end; }
.cat-header .num { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.15em; color: var(--red); font-weight: 700; margin-bottom: 8px; }
.cat-header h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 800; letter-spacing: -0.025em; line-height: 1; }
.cat-header .desc { font-size: 16px; line-height: 1.55; color: var(--ink-3); max-width: 520px; }

.svc-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-list .svc-item {
  padding: 24px;
  background: var(--bone);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.2s;
  cursor: pointer;
  position: relative; overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .svc-list .svc-item:hover {
    background: var(--ink); color: var(--bone); border-color: var(--ink); transform: translateY(-2px);
  }
  .svc-list .svc-item:hover .arrow { color: var(--red); }
  .svc-list .svc-item:hover .badge { background: rgba(229,50,45,0.2); }
  .svc-list .svc-item:hover .badge.b-ink { color: var(--bone); background: rgba(245,242,236,0.08); border-color: rgba(245,242,236,0.2); }
  .svc-list .svc-item:hover p { color: var(--bone); opacity: 0.75; }
}
@media (hover: none), (pointer: coarse) {
  .svc-list .svc-item:active {
    background: var(--ink); color: var(--bone); border-color: var(--ink);
  }
  .svc-list .svc-item:active .arrow { color: var(--red); }
  .svc-list .svc-item:active p { color: var(--bone); opacity: 0.75; }
  .svc-list .svc-item:active .badge { background: rgba(229,50,45,0.2); }
  .svc-list .svc-item:active .badge.b-ink { color: var(--bone); background: rgba(245,242,236,0.08); border-color: rgba(245,242,236,0.2); }
}
.svc-list .svc-item .badge {
  display: inline-block;
  padding: 4px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--red);
  background: rgba(229,50,45,0.08);
  border: 1px solid rgba(229,50,45,0.2);
  border-radius: 2px;
  width: max-content;
}
.svc-list .svc-item .badge.b-ink { color: var(--ink); background: var(--bone-2); border-color: var(--rule); }
.svc-list .svc-item h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.15; }
.svc-list .svc-item p { font-size: 13px; line-height: 1.5; color: var(--mute); flex: 1; }
.svc-list .svc-item .arrow {
  display: inline-flex; gap: 8px; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); font-weight: 700;
}

/* Area selector */
.areas {
  background: var(--ink); color: var(--bone);
  padding: 80px 32px;
  border-bottom: 1px solid var(--ink);
}
.areas .inner { max-width: 1440px; margin: 0 auto; }
.areas .lead { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; margin-bottom: 48px; align-items: end; }
.areas h2 { font-size: clamp(32px, 4vw, 64px); font-weight: 800; letter-spacing: -0.025em; line-height: 1; }
.areas h2 .serif { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; color: var(--red); }
.areas .lead p { font-size: 16px; line-height: 1.55; color: var(--bone); opacity: 0.7; max-width: 560px; }

.area-chip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.area-desktop-picker .area-chip-grid { margin-bottom: 48px; }

.area-mobile-list {
  display: none;
  flex-direction: column;
  gap: 10px;
}
.area-chip-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.area-chip--mobile {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
}
.area-chip-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  min-width: 0;
  flex: 1;
}
.area-chip-expand-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.38;
  transition: transform 0.22s ease, opacity 0.2s ease;
  color: var(--bone);
}
.area-chip--mobile:hover .area-chip-expand-icon,
.area-chip--mobile.active .area-chip-expand-icon {
  opacity: 0.82;
}
.area-chip--mobile.active .area-chip-expand-icon {
  transform: rotate(180deg);
}
.area-detail--under-chip {
  margin-top: -1px;
  border-top: 1px solid rgba(245, 242, 236, 0.12);
  border-radius: 0 0 2px 2px;
}
.area-detail-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.area-chip {
  padding: 24px;
  border: 1px solid rgba(245,242,236,0.15);
  background: transparent;
  color: var(--bone);
  text-align: left;
  display: flex; flex-direction: column; gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative; overflow: hidden;
  min-height: 48px;
}
.area-chip:hover, .area-chip.active {
  background: var(--red); border-color: var(--red);
}
@media (hover: none), (pointer: coarse) {
  .area-chip:active { background: var(--red); border-color: var(--red); }
  .area-chip:active .num { color: rgba(255,255,255,0.6); }
  .area-chip:active .sub { opacity: 0.9; color: #fff; }
}
.area-chip .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--red); font-weight: 700; letter-spacing: 0.1em; }
.area-chip:hover .num, .area-chip.active .num { color: rgba(255,255,255,0.6); }
.area-chip .name { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; }
.area-chip .sub { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bone); opacity: 0.5; }
.area-chip:hover .sub, .area-chip.active .sub { opacity: 0.9; color: #fff; }

.area-detail {
  padding: 24px;
  background: rgba(245,242,236,0.04);
  border: 1px solid rgba(245,242,236,0.1);
  border-left: 4px solid var(--red);
}
.area-detail .k { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--red); letter-spacing: 0.12em; font-weight: 700; margin-bottom: 6px; }
.area-detail h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.area-detail p { font-size: 14px; color: var(--bone); opacity: 0.8; line-height: 1.55; margin-bottom: 16px; }
.area-detail .stats-row { display: flex; gap: 32px; flex-wrap: wrap; }
.area-detail .ar-stat { display: flex; flex-direction: column; gap: 2px; }
.area-detail .ar-stat .v { font-size: 20px; font-weight: 800; color: var(--bone); }
.area-detail .ar-stat .k { font-size: 10px; color: var(--bone); opacity: 0.5; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

/* ======================= EMERGENCY PAGE ======================= */
.em-hero {
  background: var(--red);
  color: #fff;
  padding: 64px 32px 80px;
  position: relative;
  overflow: hidden;
}
.em-hero .inner { max-width: 1440px; margin: 0 auto; position: relative; z-index: 2; }
.em-hero .badge-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.em-hero .big-badge {
  padding: 8px 14px; background: #fff; color: var(--red);
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 2px;
}
.em-hero .big-badge .dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: pulse 1.4s infinite; }
.em-hero .big-badge.outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.em-hero h1 { font-size: clamp(48px, 7vw, 112px); line-height: 0.95; letter-spacing: -0.035em; font-weight: 800; max-width: 1200px; margin-bottom: 32px; }
.em-hero h1 .serif { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }
.em-hero .intro { font-size: 18px; line-height: 1.55; max-width: 720px; opacity: 0.92; margin-bottom: 40px; }
.em-hero .call-panel {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 24px;
  background: rgba(10,14,20,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  max-width: min(620px, 100%);
}
.em-hero .call-panel-cta { margin-left: auto; }
.em-hero .call-panel .k { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }
.em-hero .call-panel .v { font-size: 28px; font-weight: 800; letter-spacing: -0.01em; }
.em-hero-phone-link { color: inherit; text-decoration: none; }
.em-hero-phone-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.em-hero-insurance {
  font-size: 16px; line-height: 1.5; max-width: 720px; opacity: 0.95; margin-bottom: 28px;
}
.em-hero-sms { margin-top: 24px; max-width: 520px; }
.em-hero-sms .sms-quote-helper { color: rgba(255,255,255,0.85); }
.em-hero .call-panel .sep { width: 1px; align-self: stretch; background: rgba(255,255,255,0.2); }
.em-hero .big-badge.trust-badge-hero {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.55);
  font-weight: 600; letter-spacing: 0.1em;
}
.em-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(105deg, transparent 50%, rgba(255,255,255,0.08) 50.1%, rgba(255,255,255,0.08) 50.3%, transparent 50.5%),
    linear-gradient(115deg, transparent 70%, rgba(255,255,255,0.05) 70.1%, rgba(255,255,255,0.05) 70.4%, transparent 70.6%);
  opacity: 0.6;
}

.section-plain { background: var(--bone); padding: 80px 32px; border-bottom: 1px solid var(--rule); }
.section-plain:nth-child(even) { background: var(--paper); }
.section-plain .inner { max-width: 1200px; margin: 0 auto; }

.em-form-callout { flex-wrap: wrap; }
.em-form-callout a { overflow-wrap: anywhere; }

.em-section-head { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: end; margin-bottom: 48px; }
.em-section-head .num { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.15em; color: var(--red); font-weight: 700; margin-bottom: 12px; }
.em-section-head h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; }
.em-section-head h2 .serif { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; color: var(--red); }
.em-section-head .sub { font-size: 16px; line-height: 1.55; color: var(--ink-3); }

/* Safety checklist */
.checklist { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--ink); }
.checklist .item { padding: 20px 0; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: baseline; }
.checklist .item .n { font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--red); font-weight: 700; letter-spacing: 0.05em; }
.checklist .item .c strong { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; display: block; margin-bottom: 6px; }
.checklist .item .c p { font-size: 15px; line-height: 1.55; color: var(--ink-3); max-width: 680px; }

/* 5-step process */
.process-timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 2px solid var(--ink); }
.process-timeline .step { padding: 24px 20px 24px 0; border-right: 1px solid var(--rule); position: relative; }
.process-timeline .step:last-child { border-right: none; }
.process-timeline .step::before {
  content: ''; position: absolute; top: -7px; left: 0; width: 12px; height: 12px; background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(229,50,45,0.22);
  z-index: 1;
}
.process-timeline .step::after {
  content: ''; position: absolute; top: -2px; left: 12px; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--rule) 100%);
  opacity: 0.85;
}
.process-timeline .step:last-child::after { display: none; }
.process-timeline .step .n { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; color: var(--red); font-weight: 700; margin-bottom: 12px; }
.process-timeline .step .t { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 8px; line-height: 1.2; }
.process-timeline .step .d { font-size: 13px; line-height: 1.5; color: var(--ink-3); }

/* Emergency types grid */
.em-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--rule); }
.em-type { padding: 28px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); display: flex; gap: 20px; align-items: start; background: var(--bone); }
.em-type:nth-child(2n) { border-right: none; }
.em-type:nth-last-child(-n+2) { border-bottom: none; }
.em-type .ic { width: 40px; height: 40px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.em-type strong { font-size: 16px; font-weight: 700; display: block; margin-bottom: 6px; letter-spacing: -0.01em; }
.em-type p { font-size: 14px; line-height: 1.55; color: var(--ink-3); }

/* Board-up callout */
.boardup-callout {
  background: var(--ink); color: var(--bone);
  padding: 56px 48px 56px 160px;
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: visible;
  border-left: 6px solid var(--red);
}
.boardup-seal {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  border: 3px solid rgba(255,255,255,0.25);
}
.boardup-seal-inner { display: flex; flex-direction: column; gap: 2px; align-items: center; }
.boardup-seal-zero { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.boardup-seal-cap {
  font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; opacity: 0.95;
}
.boardup-callout .tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 12px; }
.boardup-callout h3 { font-size: 40px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; }
.boardup-callout h3 .serif { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; color: var(--red); }
.boardup-callout p { font-size: 16px; line-height: 1.6; color: var(--bone); opacity: 0.85; margin-bottom: 16px; }
.boardup-callout ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-size: 14px; color: var(--bone); opacity: 0.85; }
.boardup-callout li { display: flex; gap: 10px; align-items: start; line-height: 1.5; }
.boardup-callout li::before { content: '→'; color: var(--red); font-weight: 700; }

.free-banner {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; gap: 16px;
  font-weight: 700;
}
.free-banner .free-big { font-size: 24px; letter-spacing: -0.01em; }
.free-banner .t { font-size: 13px; line-height: 1.4; opacity: 0.95; font-weight: 500; }

.em-faq-section .faq-list { max-width: 800px; border-top: 1px solid var(--ink); }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 20px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--red);
  font-weight: 700;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }
.faq-item p {
  font-size: 15px; line-height: 1.6; color: var(--ink-3);
  margin: 0 0 20px; padding-right: 32px;
}

/* ======================= CONTACT PAGE ======================= */
.contact-hero { padding: 80px 32px 64px; background: var(--bone); border-bottom: 1px solid var(--rule); }
.contact-hero .inner { max-width: 1440px; margin: 0 auto; }
.contact-hero h1 { font-size: clamp(48px, 7vw, 120px); line-height: 0.95; letter-spacing: -0.035em; font-weight: 800; }
.contact-hero h1 .serif { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; color: var(--red); }
.contact-hero .sub { font-size: 18px; line-height: 1.55; color: var(--ink-3); max-width: 720px; margin-top: 24px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 80px 32px; max-width: 1440px; margin: 0 auto; }
.contact-info-block { display: flex; flex-direction: column; gap: 0; }
.contact-info-block .item {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 120px 1fr; gap: 24px;
  align-items: baseline;
}
.contact-info-block .item:first-child { border-top: 1px solid var(--ink); }
.contact-info-block .k { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }
.contact-info-block .v { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
.contact-info-block .v a { color: var(--ink); transition: color 0.15s; }
.contact-info-block .v a:hover { color: var(--red); }
.contact-info-block .v .sub { font-size: 14px; color: var(--mute); font-weight: 500; display: block; margin-top: 4px; }

.map-embed {
  margin-top: 32px;
  aspect-ratio: 16/9;
  background: var(--ink-2);
  position: relative;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.map-embed .overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1a2030 0%, #0f131a 100%); }
.map-embed svg.bg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.15; }
.map-embed .pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); width: 40px; height: 40px; background: var(--red); border-radius: 50% 50% 50% 0; transform: translate(-50%, -100%) rotate(-45deg); box-shadow: 0 8px 24px rgba(229,50,45,0.4); }
.map-embed .pin::after { content: ''; position: absolute; top: 12px; left: 12px; width: 16px; height: 16px; background: #fff; border-radius: 50%; }
.map-embed .pin-label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -180%);
  background: var(--ink); color: #fff; padding: 6px 10px; font-size: 11px;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px;
  max-width: min(280px, 85vw);
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}
.map-embed .open-maps {
  position: absolute; bottom: 16px; right: 16px;
  background: #fff; color: var(--ink);
  padding: 10px 16px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px;
}

/* ======================= TWEAKS PANEL ======================= */
.tweaks-panel {
  position: fixed; bottom: 24px; left: 24px;
  z-index: 60;
  background: var(--ink); color: var(--bone);
  border: 1px solid var(--rule-2);
  border-radius: 4px;
  width: 320px;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.5);
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-head { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; }
.tweaks-head h4 { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bone); }
.tweaks-head .close { color: var(--bone); opacity: 0.5; cursor: pointer; }
.tweaks-body { padding: 20px; }
.tweak-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.tweak-row label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bone); opacity: 0.7; display: flex; justify-content: space-between; }
.tweak-row label .val { color: var(--red); font-weight: 700; }
.tweak-row .slider {
  width: 100%; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px;
  -webkit-appearance: none; appearance: none; cursor: pointer;
}
.tweak-row .slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 16px; height: 16px; background: var(--red); border-radius: 50%; cursor: pointer;
  border: 2px solid var(--bone);
}
.tweak-row .slider::-moz-range-thumb {
  width: 16px; height: 16px; background: var(--red); border-radius: 50%; cursor: pointer;
  border: 2px solid var(--bone);
}
.tweak-row .ticks { display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 9px; opacity: 0.5; margin-top: 4px; }

/* ======================= MISC ======================= */
.placeholder-img {
  background:
    repeating-linear-gradient(45deg, #d8d2c6 0 12px, #cfc9bc 12px 13px);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em;
  color: var(--ink); opacity: 0.55;
  text-transform: uppercase;
}

/* ======================= MOBILE NAV ======================= */
.hamburger { display: none; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--bone);
  padding: calc(24px + env(safe-area-inset-top, 0px)) calc(24px + env(safe-area-inset-right, 0px)) calc(24px + env(safe-area-inset-bottom, 0px)) calc(24px + env(safe-area-inset-left, 0px));
  flex-direction: column;
  display: none;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}
/* Only show mobile menu at mobile breakpoints */
@media (max-width: 960px) {
  .mobile-menu.open { display: flex; }
}
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(245,242,236,0.12); flex-shrink: 0; }
.mobile-menu-top img { height: 40px; width: auto; }
.mobile-menu-close { color: var(--bone); padding: 8px; }
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu-links button {
  text-align: left;
  padding: 20px 0;
  color: var(--bone);
  font-size: 24px; font-weight: 700; letter-spacing: -0.015em;
  border-bottom: 1px solid rgba(245,242,236,0.1);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu-links button.active { color: var(--red); }
.mobile-menu-links .arr { color: var(--red); opacity: 0.5; }
.mobile-menu-cta { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.mobile-menu-cta .btn { justify-content: center; padding: 18px; font-size: 16px; }

/* Responsive */
@media (max-width: 1100px) {
  .svc-grid, .work-grid, .reviews-grid, .svc-list { grid-template-columns: repeat(2, 1fr) !important; }
  .area-chip-grid { grid-template-columns: repeat(3, 1fr); }
  .process-timeline { grid-template-columns: repeat(3, 1fr); }
  .process-timeline .step:nth-child(3) { border-right: none; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; flex-shrink: 0; align-items: center; }
  .brand { flex-shrink: 0; }
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: var(--ink);
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
  }
  .nav-phone { display: none; }
  .nav-cta .btn { padding: 10px 14px; font-size: 13px; }
  .nav-cta .btn span:first-child { display: none; }
  .nav-cta .btn::before { content: 'Quote'; font-weight: 700; }
  .hero-inner, .why-grid, .cat-header, .areas .lead, .em-section-head, .contact-grid, .boardup-callout { grid-template-columns: 1fr !important; gap: 32px; }
  .boardup-callout { padding: 108px 32px 40px !important; }
  .boardup-seal { left: 50% !important; transform: translateX(-50%) !important; top: 24px !important; }
  .form-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .stats-inner { grid-template-columns: 1fr; gap: 0; padding: 40px 20px; }
  .stat { border-left: none; padding: 24px 0; border-top: 1px solid var(--rule); }
  .stat:first-child { border-top: none; padding-top: 0; }
  .stat .big { font-size: 88px; }
  .stat .v { max-width: none; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .process-timeline .step:nth-child(3) { border-right: 1px solid var(--rule); }
  .process-timeline .step { padding: 20px 16px 20px 0; }
  .process-timeline .step:nth-child(2n) { border-right: none; padding-right: 0; }
  .process-timeline .step::after { display: none; }
  .hero-visual { max-width: 100%; justify-self: stretch; }
  .hero {
    padding-top: 0;
    background-image: none;
    background-color: #050709;
  }
  .hero::after {
    display: none;
  }
  .hero-inner { padding: 48px 20px 0; }
  .hero-kicker-full { display: none; }
  .hero-kicker-short { display: inline; }
  .hero h1 { font-size: clamp(40px, 11vw, 72px); }
  .hero-sub { font-size: 16px; }
  .hero-ctas .btn { flex: 1; justify-content: center; min-width: 140px; }
  .hero-ctas { width: 100%; }
  .section, .em-hero, .svc-category, .section-plain, .areas { padding: 56px 20px; }
  .section-h { font-size: clamp(32px, 7vw, 48px); }
  .section-lede { font-size: 16px; margin-bottom: 40px; }
  /* Section eyebrows — one compact line (no rule, no trailing meta) */
  .section-eye {
    margin-bottom: 12px;
    gap: 6px;
    row-gap: 0;
    font-size: 10px;
    letter-spacing: 0.08em;
    flex-wrap: nowrap;
    align-items: baseline;
  }
  .section-eye .line { display: none; }
  .section-eye > span:nth-child(4) { display: none; }
  .section-eye > span:nth-child(2) {
    flex: 1;
    min-width: 0;
    line-height: 1.25;
  }
  .page-hero .eye {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
  }
  .em-section-head { margin-bottom: 28px; }
  .em-section-head .num {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }
  .em-section-head .sub { font-size: 15px; line-height: 1.45; }
  .cat-header .num {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
  }
  .seo-cluster .label {
    font-size: 10px;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
  }
  .contact-hero-eyebrow,
  .em-form-section-kicker {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
  .nav-inner { padding: 12px 16px; gap: 12px; }
  .brand img { height: 32px; }
  .seo-cluster .inner { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .seo-cluster { padding: 40px 20px; }
  .seo-cluster h3 { font-size: clamp(22px, 5.5vw, 28px); }
  .seo-chips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-width: 100%;
  }
  .seo-chip {
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: 48px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    justify-content: space-between;
    gap: 12px;
  }
  .footer { padding: 56px 20px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-bottom-trust { text-align: left; max-width: none; }
  .page-hero { padding: 56px 20px 48px; }
  .page-hero .phones { gap: 24px; flex-direction: column; align-items: stretch; }
  .page-hero .phones-cta { margin-left: 0; width: 100%; }
  .page-hero .phones-cta .btn { width: 100%; justify-content: center; }
  .page-hero .phone-grp .v { font-size: clamp(18px, 4.5vw, 22px); }
  .contact-grid { padding: 48px 20px; gap: 48px; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .hero-marquee-spacer { margin-top: 40px; }
  .em-hero { padding: 40px 20px 56px; }
  .em-hero .call-panel { flex-wrap: wrap; gap: 16px; padding: 16px; }
  .em-hero .call-panel .sep { display: none; }
  .em-hero .call-panel-cta { margin-left: 0; width: 100%; }
  .em-hero .call-panel-cta .btn { width: 100%; justify-content: center; }
  .em-hero .big-badge { font-size: 10px; padding: 6px 10px; }
  .boardup-callout { padding: 108px 24px 32px; }
  .boardup-seal { left: 50%; transform: translateX(-50%); top: 20px; }
  .boardup-callout h3 { font-size: 32px; }
  .free-banner { flex-wrap: wrap; gap: 8px; padding: 14px 16px; }
  .checklist .item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .reviews-summary { flex-wrap: wrap; gap: 20px; padding: 24px 20px; }
  .reviews-summary .platforms,
  .reviews-summary .platforms--large { margin-left: 0; width: 100%; flex-direction: column; align-items: stretch; }
  .reviews-summary .platform { flex: none; max-width: none; width: 100%; }
  .reviews-summary .rating-big { font-size: 48px; }
  .contact-info-block .item { grid-template-columns: 100px 1fr; gap: 16px; padding: 20px 0; }
  .contact-info-block .v { font-size: 18px; }
  .form-wrap { padding: 24px; }
  .form-wrap h3 { font-size: 26px; }
  .cta-final { padding: 72px 20px; }
  .cta-final .ctas { flex-wrap: wrap; gap: 8px; }
  .cta-final .ctas .btn {
    flex: 1 1 160px;
    min-width: 140px;
    justify-content: center;
    padding: 12px 18px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    min-height: 0;
  }
  .float-call { padding: 14px 18px; font-size: 14px; min-height: 48px; min-width: 48px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); right: calc(16px + env(safe-area-inset-right, 0px)); }
  .float-call .fc-label { font-size: 13px; }
  .tweaks-panel { left: 16px; right: 16px; width: auto; bottom: 80px; }
  .crumb { font-size: 10px; padding: 12px 20px; overflow-x: auto; white-space: nowrap; }
  .crumb .inner { flex-wrap: nowrap; }
  .e-bar { font-size: 10px; padding: 6px 16px; gap: 8px; flex-wrap: wrap; justify-content: center; text-align: center; }
  .e-bar .sep { display: none; }
  .contact-hero { padding: 56px 20px 48px; }
  .area-chip-grid { grid-template-columns: repeat(2, 1fr); }
  .area-mobile-list { display: flex; }
  .area-desktop-picker { display: none; }
  .tweaks-panel { bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 640px) {
  .svc-grid, .work-grid, .reviews-grid, .svc-list, .em-types, .area-chip-grid { grid-template-columns: 1fr !important; }
  .em-types { border-left: none; border-right: none; }
  .em-type { border-right: none !important; border-bottom: 1px solid var(--rule) !important; }
  .em-type:last-child { border-bottom: none !important; }
  .process-timeline { grid-template-columns: 1fr; border-top: 2px solid var(--ink); }
  .process-timeline .step { border-right: none !important; padding: 20px 0 !important; border-bottom: 1px solid var(--rule); }
  .process-timeline .step:last-child { border-bottom: none; }
  .process-timeline .step::before { width: 8px; height: 8px; top: -5px; }
  .process-timeline .step::after { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .boardup-callout ul { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; line-height: 0.98; }
  .hero-ctas .btn { font-size: 14px; padding: 14px 18px; }
  .cta-final h2 { font-size: 40px; }
  .page-hero h1 { font-size: 44px; }
  .em-hero h1 { font-size: 40px; }
  .contact-hero h1 { font-size: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-cta .btn span, .nav-cta .btn svg { display: none; }
  .nav-cta .btn::before { content: 'Quote'; font-weight: 700; display: inline; }
  .why-item { grid-template-columns: 36px 1fr; gap: 10px 14px; padding: 20px; align-items: start; }
  .why-item .k { display: none; }
  .why-item .n { grid-column: 1; grid-row: 1; }
  .why-item .t { grid-column: 2; grid-row: 1; }
  .why-item .d { grid-column: 2; grid-row: 2; margin-top: 0; }
  .hero-marquee { padding: 12px 0; }
  .hero-marquee .track { font-size: 11px; gap: 24px; }
  .area-detail h3 { font-size: 20px; }
  .area-detail .stats-row { gap: 20px; }
  .area-detail .ar-stat .v { font-size: 16px; }
  .area-detail-actions { flex-direction: column; align-items: stretch; }
  .area-detail-actions .btn { width: 100%; justify-content: center; }
  .map-embed { aspect-ratio: 4/3; }
  .seo-chips { grid-template-columns: 1fr; gap: 8px; }
  .seo-chip { padding: 16px 18px; font-size: 15px; min-height: 52px; }
  .cta-final .ctas { flex-direction: column; align-items: stretch; gap: 8px; }
  .cta-final .ctas .btn {
    width: 100%;
    max-width: none;
    flex: none;
    padding: 10px 16px;
    font-size: 13px;
    min-height: 44px;
    gap: 8px;
  }
  .contact-info-block .item { grid-template-columns: 1fr; gap: 8px; }
  .contact-info-block .k { margin-bottom: 0; }
  .form-success { padding: 28px 20px; }
  .work-frame .play-btn { width: 64px; height: 64px; }
  .work .section-inner > div:last-child .btn.btn-lg { width: 100%; justify-content: center; text-align: center; white-space: normal; min-height: 48px; }
}

@media (max-width: 480px) {
  .page-hero .phone-grp .v { word-break: break-word; }
  .em-hero .call-panel .v { font-size: clamp(20px, 6vw, 26px); word-break: break-word; }
}
