/*
  PROJECT: Local Locksmith Houston TX — Houston Dispatch
  COLOR SCHEME: Dispatch Blue #173fdb + Midnight #10172d + Coral #ff6b4a + Warm Cream #f6f2e8
  FONTS: Manrope + DM Sans
  LAYOUT: Full-bleed photographic dispatch dashboard with asymmetric bento sections
*/

:root {
  --blue: #173fdb;
  --blue-dark: #0f2da6;
  --night: #10172d;
  --coral: #ff6b4a;
  --cream: #f6f2e8;
  --paper: #fffefa;
  --ice: #eef2ff;
  --ink: #171b26;
  --muted: #686b73;
  --line: rgba(16, 23, 45, .13);
  --white: #fff;
  --radius-sm: 14px;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(16, 23, 45, .14);
  --heading: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
  --heading-1: clamp(2.75rem, 5vw, 5.25rem);
  --heading-2: clamp(2rem, 3.4vw, 3.5rem);
  --heading-3: clamp(1.35rem, 1.8vw, 1.8rem);
  --heading-4: clamp(1.15rem, 1.35vw, 1.35rem);
  --heading-5: clamp(1.05rem, 1.15vw, 1.18rem);
  --heading-6: 1rem;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: var(--body); font-size: 17px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .25s ease, transform .25s ease; }
a:hover { color: var(--coral); }
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  color: var(--night);
  font-family: var(--heading);
  font-weight: 800;
  text-wrap: balance;
}
h1 { margin-bottom: 1.5rem; font-size: var(--heading-1); line-height: .98; letter-spacing: -.05em; }
h2 { max-width: 900px; margin-bottom: 1.5rem; font-size: var(--heading-2); line-height: 1.05; letter-spacing: -.04em; }
h3 { margin-bottom: .875rem; font-size: var(--heading-3); line-height: 1.15; letter-spacing: -.03em; }
h4 { margin-bottom: .75rem; font-size: var(--heading-4); line-height: 1.2; letter-spacing: -.02em; }
h5 { margin-bottom: .625rem; font-size: var(--heading-5); line-height: 1.25; letter-spacing: -.015em; }
h6 { margin-bottom: .5rem; font-size: var(--heading-6); line-height: 1.3; letter-spacing: .01em; }
p { margin-top: 0; }
.container { width: min(100% - 44px, 1280px); max-width: 1280px; }
.narrow { max-width: 920px; }
.section { position: relative; padding: clamp(86px, 10vw, 150px) 0; }
.gtm-frame { display: none; visibility: hidden; }
.scroll-progress { position: fixed; z-index: 1100; top: 0; left: 0; width: 100%; height: 3px; pointer-events: none; transform: scaleX(0); transform-origin: left; background: var(--coral); }

.contact-strip { position: relative; z-index: 1032; color: var(--white); background: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.contact-strip-inner { min-height: 34px; display: flex; align-items: center; justify-content: flex-end; gap: 30px; }
.contact-strip-inner span:first-child { margin-right: auto; }
.contact-strip-inner span:first-child::before { content: ""; width: 8px; height: 8px; display: inline-block; margin-right: 10px; border: 2px solid var(--white); border-radius: 50%; background: #43dc9e; animation: ping 2.3s infinite; }
@keyframes ping { 55% { box-shadow: 0 0 0 7px rgba(255,255,255,0); } }

.navbar { min-height: 86px; z-index: 1031; padding: 0; border-bottom: 1px solid var(--line); background: rgba(255, 254, 250, .94); backdrop-filter: blur(18px); transition: min-height .3s ease, box-shadow .3s ease; }
.navbar.scrolled { min-height: 72px; box-shadow: 0 14px 35px rgba(16,23,45,.08); }
.navbar-brand { display: flex; align-items: center; gap: 12px; color: var(--night); }
.navbar-brand:hover { color: var(--night); }
.navbar-brand img { width: 55px; height: 55px; object-fit: contain; }
.navbar-brand span { display: grid; line-height: 1; }
.navbar-brand strong { font-family: var(--heading); font-size: 17px; letter-spacing: -.035em; }
.navbar-brand small { margin-top: 5px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.navbar-nav { align-items: center; gap: 2px; }
.navbar .nav-link { position: relative; padding: 12px 12px !important; color: var(--night); font-size: 14px; font-weight: 700; white-space: nowrap; }
.navbar .nav-link:not(.dropdown-toggle)::before { content: ""; position: absolute; right: 12px; bottom: 7px; left: 12px; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.navbar .nav-link:hover::before, .navbar .nav-link.active::before { transform: scaleX(1); }
.dropdown-menu { padding: 10px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); box-shadow: var(--shadow); }
.dropdown-item { min-height: 44px; display: flex; align-items: center; padding: 9px 12px; border-radius: 11px; color: var(--night); font-size: 14px; font-weight: 600; }
.dropdown-item:hover { color: var(--blue); background: var(--ice); }
.navbar-toggler { width: 48px; height: 48px; padding: 0; border: 1px solid var(--line); border-radius: 15px; box-shadow: none !important; }

.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 23px; border: 1px solid transparent; border-radius: 12px; font-size: 14px; font-weight: 800; transition: transform .25s ease, color .25s ease, background .25s ease, box-shadow .25s ease; }
.btn:hover { transform: translateY(-3px); }
.btn-accent { color: var(--white); border-color: var(--coral); background: var(--coral); box-shadow: 0 12px 28px rgba(255,107,74,.26); }
.btn-accent:hover { color: var(--white); border-color: var(--blue); background: var(--blue); box-shadow: 0 14px 32px rgba(23,63,219,.24); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.42); background: rgba(16,23,45,.26); backdrop-filter: blur(12px); }
.btn-ghost:hover { color: var(--night); background: var(--white); }
.btn-light { color: var(--night); background: var(--white); }
.header-phone { min-width: 175px; flex-direction: column; gap: 0; padding: 8px 18px; border-radius: 14px; line-height: 1.1; }
.header-phone span { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }

.hero-section { min-height: 780px; position: relative; isolation: isolate; display: flex; align-items: flex-end; overflow: hidden; padding: clamp(95px, 10vw, 145px) 0 94px; color: var(--white); background: var(--night); }
.hero-media-wrap { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.035); animation: heroDrift 14s ease-in-out infinite alternate; }
@keyframes heroDrift { to { transform: scale(1.09) translate3d(1.3%, -.7%, 0); } }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,16,35,.93) 0%, rgba(10,16,35,.75) 42%, rgba(10,16,35,.28) 72%, rgba(10,16,35,.42) 100%), linear-gradient(0deg, rgba(10,16,35,.78), transparent 50%); }
.hero-stage { display: grid; grid-template-columns: minmax(0, 1fr) minmax(350px, 430px); gap: clamp(55px, 8vw, 120px); align-items: end; }
.hero-copy { max-width: 760px; padding-bottom: 40px; }
.availability { width: fit-content; display: flex; align-items: center; gap: 10px; margin-bottom: 24px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: rgba(255,255,255,.9); background: rgba(16,23,45,.28); backdrop-filter: blur(12px); font-size: 12px; font-weight: 700; }
.status-dot { width: 9px; height: 9px; flex: 0 0 9px; border-radius: 50%; background: #43dc9e; box-shadow: 0 0 0 0 rgba(67,220,158,.42); animation: dotPulse 2s infinite; }
@keyframes dotPulse { 65% { box-shadow: 0 0 0 10px rgba(67,220,158,0); } }
.eyebrow { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.eyebrow span { padding: 7px 10px; border-radius: 7px; color: var(--white); background: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span + span { color: var(--night); background: var(--cream); }
.hero-copy h1 { max-width: 820px; margin-bottom: 24px; color: var(--white); font-size: clamp(3.25rem, 5.7vw, 5.75rem); line-height: .94; }
.hero-lead { max-width: 620px; margin-bottom: 32px; color: rgba(255,255,255,.73); font-size: clamp(1.08rem, 1.55vw, 1.3rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-actions .btn { min-height: 56px; }
.hero-dispatch { overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 26px; color: var(--night); background: rgba(255,254,250,.95); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.dispatch-top { display: grid; gap: 6px; padding: 26px 26px 20px; border-bottom: 1px solid var(--line); }
.dispatch-top span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.dispatch-top strong { font-family: var(--heading); font-size: 25px; letter-spacing: -.04em; }
.dispatch-links { display: grid; grid-template-columns: 1fr 1fr; }
.dispatch-links a { min-height: 116px; position: relative; display: grid; align-content: end; padding: 18px; color: var(--night); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .3s ease, background .3s ease; }
.dispatch-links a:nth-child(even) { border-right: 0; }
.dispatch-links a:nth-child(n+3) { border-bottom: 0; }
.dispatch-links a:hover { color: var(--white); background: var(--blue); }
.dispatch-links a > span { position: absolute; top: 14px; right: 15px; color: var(--coral); font-family: var(--heading); font-size: 11px; font-weight: 800; }
.dispatch-links a:hover > span { color: var(--white); }
.dispatch-links strong { font-family: var(--heading); font-size: 18px; letter-spacing: -.035em; }
.dispatch-links small { color: var(--muted); font-size: 11px; }
.dispatch-links a:hover small { color: rgba(255,255,255,.7); }
.dispatch-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 17px 26px; color: var(--white); background: var(--night); font-size: 11px; }
.dispatch-bottom strong { color: var(--coral); }
.hero-edge { position: absolute; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); background: rgba(16,23,45,.52); backdrop-filter: blur(14px); }
.hero-edge span { padding: 18px 24px; border-right: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.68); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-align: center; text-transform: uppercase; }

.trust-strip { position: relative; z-index: 4; margin-top: -1px; background: var(--cream); }
.trust-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); padding: 28px 0; }
.trust-intro, .trust-item { min-height: 74px; display: flex; flex-direction: column; justify-content: center; padding: 0 23px; border-right: 1px solid var(--line); }
.trust-intro { flex-direction: row; align-items: center; justify-content: flex-start; gap: 12px; padding-left: 0; }
.trust-intro strong { font-family: var(--heading); font-size: 15px; line-height: 1.3; }
.trust-item:last-child { border-right: 0; }
.trust-item > span { color: var(--blue); font-family: var(--heading); font-size: 10px; font-weight: 800; }
.trust-item strong { color: var(--night); font-family: var(--heading); font-size: 16px; line-height: 1.25; }
.trust-item small { color: var(--muted); font-size: 10px; }

.section-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-kicker::before { content: ""; width: 26px; height: 2px; background: var(--coral); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 45px; margin-bottom: 55px; }
.section-heading h2 { margin: 10px 0 0; }
.section-heading > p { max-width: 390px; margin: 0 0 12px; color: var(--muted); }

.services-overview { overflow: hidden; background: var(--paper); }
.services-overview::before { content: "SERVICES"; position: absolute; right: -20px; top: 30px; z-index: 0; color: rgba(23,63,219,.035); font-family: var(--heading); font-size: clamp(7rem, 18vw, 18rem); font-weight: 800; line-height: 1; }
.services-overview .container { position: relative; z-index: 1; }
.service-card { min-height: 520px; height: 100%; position: relative; overflow: hidden; border-radius: 26px; background: var(--night); box-shadow: 0 15px 45px rgba(16,23,45,.08); transform-style: preserve-3d; transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease; }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-8px); }
.service-image { position: absolute; inset: 0; display: block; }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,16,35,.96) 0%, rgba(10,16,35,.12) 70%); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.service-card:hover .service-image img { transform: scale(1.07); }
.service-image > span { position: absolute; z-index: 2; top: 20px; right: 20px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: var(--white); font-family: var(--heading); font-size: 11px; font-weight: 800; backdrop-filter: blur(10px); }
.service-card > div { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; padding: 28px; color: rgba(255,255,255,.72); transform: translateZ(25px); }
.card-type { color: var(--coral); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.service-card h3 { max-width: 390px; margin: 7px 0 10px; color: var(--white); }
.service-card p { max-width: 330px; margin-bottom: 18px; font-size: 14px; }
.service-link { display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-link span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); }

.page-intro { background: var(--cream); }
.intro-copy { max-width: 1070px; margin: auto; columns: 2; column-gap: 80px; color: #50535b; font-size: clamp(1.04rem, 1.45vw, 1.22rem); }
.intro-copy p:first-child::first-letter { float: left; margin: 9px 12px 0 0; color: var(--blue); font-family: var(--heading); font-size: 70px; font-weight: 800; line-height: .68; }
.content-section { overflow: hidden; }
.content-section:nth-of-type(even) { background: var(--paper); }
.content-section:nth-of-type(odd) { background: var(--ice); }
.content-grid { display: grid; grid-template-columns: 60px minmax(0, 1.08fr) minmax(320px, .92fr); align-items: center; gap: clamp(28px, 5vw, 76px); }
.content-copy { grid-column: 2; min-width: 0; }
.content-section.is-reverse .content-copy { grid-column: 3; }
.section-number { grid-column: 1; grid-row: 1; align-self: start; width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--blue); border-radius: 50%; color: var(--blue); font-family: var(--heading); font-size: 11px; font-weight: 800; }
.content-copy > p { max-width: 760px; color: var(--muted); }
.content-photo { grid-column: 3; grid-row: 1; position: relative; margin: 0; }
.content-section.is-reverse .content-photo { grid-column: 2; }
.content-photo::after { content: ""; position: absolute; right: -16px; bottom: -16px; width: 68%; height: 55%; z-index: -1; border-radius: 18px; background: var(--coral); }
.content-section.is-reverse .content-photo::after { right: auto; left: -16px; }
.content-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow); transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.content-photo:hover img { transform: scale(1.025); }
.content-photo figcaption { position: absolute; right: 18px; bottom: 18px; left: 18px; display: flex; align-items: end; justify-content: space-between; gap: 16px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.28); border-radius: 14px; color: var(--white); background: rgba(10,16,35,.78); backdrop-filter: blur(12px); }
.content-photo figcaption strong { font-family: var(--heading); font-size: 13px; line-height: 1.25; }
.content-photo figcaption span { flex: 0 0 auto; color: var(--coral); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin: 25px 0 32px; padding: 0; list-style: none; }
.service-list li { position: relative; padding: 14px 16px 14px 45px; border: 1px solid var(--line); border-radius: 12px; color: var(--night); background: rgba(255,255,255,.65); font-size: 14px; font-weight: 600; }
.service-list li::before { content: "↗"; position: absolute; left: 16px; top: 12px; color: var(--coral); font-family: var(--heading); font-weight: 800; }

.vehicle-brands { color: var(--white); background: var(--blue); }
.vehicle-brands h2 { color: var(--white); }
.vehicle-brands p { max-width: 900px; color: rgba(255,255,255,.72); }
.vehicle-brands .section-kicker { color: var(--white); }

.faq-section { background: var(--cream); }
.faq-section h2 { margin-top: 10px; }
.accordion { border-top: 2px solid var(--night); }
.accordion-item { border: 0; border-bottom: 1px solid var(--line); background: transparent; }
.accordion-button { min-height: 76px; padding: 21px 58px 21px 0; color: var(--night); background: transparent !important; box-shadow: none !important; font-family: var(--heading); font-size: 18px; font-weight: 800; letter-spacing: -.025em; }
.accordion-button::after {
  width: 34px;
  height: 34px;
  position: absolute;
  right: 0;
  flex: 0 0 34px;
  border-radius: 10px;
  background-color: var(--blue);
  background-image:
    linear-gradient(var(--white), var(--white)),
    linear-gradient(var(--white), var(--white));
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px 2px, 2px 13px;
  filter: none;
  transform: none;
  transition: background-color .25s ease, transform .25s ease;
}
.accordion-button:not(.collapsed)::after {
  background-color: var(--coral);
  background-image: linear-gradient(var(--white), var(--white));
  background-size: 13px 2px;
  transform: none;
}
.accordion-body { max-width: 780px; padding: 0 0 28px; color: var(--muted); }

.coupon-section { overflow: hidden; background: var(--ice); }
.coupon-section::after { content: ""; position: absolute; right: -130px; top: -130px; width: 430px; height: 430px; border: 90px solid var(--coral); border-radius: 50%; opacity: .14; }
.coupon-shell { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; align-items: stretch; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: var(--paper); box-shadow: var(--shadow); }
.coupon-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 80px); color: var(--muted); background: var(--cream); }
.coupon-copy h2 { margin: 11px 0 20px; }
.coupon-copy .btn { width: fit-content; margin-top: 12px; }
.coupon-link { min-height: 460px; position: relative; display: block; overflow: hidden; }
.coupon-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.coupon-link:hover img { transform: scale(1.04); }

.contact-panel { background: var(--paper); }
.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(45px, 8vw, 105px); align-items: start; }
.contact-layout > div { position: sticky; top: 120px; }
.contact-layout h2 { margin: 11px 0 25px; }
.contact-layout > div p { color: var(--muted); }
.big-phone { display: block; margin-bottom: 22px; color: var(--blue); font-family: var(--heading); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -.055em; }
.CUS { margin: 0; padding: clamp(28px, 4.5vw, 52px); border: 1px solid var(--line); border-radius: 28px; background: var(--cream); box-shadow: 18px 18px 0 var(--blue); }
.CUS fieldset { min-width: 0; padding: 0; }
.CUS legend { margin-bottom: 26px; color: var(--night); font-family: var(--heading); font-size: 28px; font-weight: 800; letter-spacing: -.04em; }
.form-control { min-height: 54px; padding: 14px 16px; border: 1px solid rgba(16,23,45,.16); border-radius: 10px; color: var(--night); background-color: var(--white); font-size: 15px; box-shadow: none !important; }
.form-control:focus { border-color: var(--blue); }
.service-textarea { min-height: 120px; resize: vertical; }
.btn-submit { width: 100%; }

.utility-hero { position: relative; overflow: hidden; padding: clamp(95px, 12vw, 170px) 0; background: var(--cream); }
.utility-hero::before { content: ""; position: absolute; right: -120px; top: -190px; width: 470px; height: 470px; border: 100px solid var(--blue); border-radius: 50%; opacity: .11; }
.utility-hero .container { position: relative; z-index: 1; }
.utility-hero h1 { max-width: 920px; margin: 18px 0 24px; font-size: clamp(3rem, 5.6vw, 5.5rem); }
.utility-hero p { max-width: 700px; color: var(--muted); font-size: 1.14rem; }
.utility-photo { position: relative; overflow: hidden; margin: 30px 0 34px; border-radius: 22px; box-shadow: var(--shadow); }
.utility-photo img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.utility-photo-wide img { aspect-ratio: 16 / 6; }
.utility-photo-centered { max-width: 720px; margin-right: auto; margin-left: auto; }
.contact-photo { overflow: hidden; margin: 25px 0 28px; border-radius: 18px; box-shadow: 10px 10px 0 var(--coral); }
.contact-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.location-grid, .sitemap-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; padding: 0; list-style: none; }
.location-grid li, .sitemap-list li { padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); font-weight: 600; }
.error-code { display: block; color: var(--blue); font-family: var(--heading); font-size: clamp(7rem, 18vw, 15rem); font-weight: 800; line-height: .8; }

.site-footer { padding: 94px 0 32px; color: var(--muted); background: var(--cream); }
.footer-map { display: grid; grid-template-columns: 1.25fr .75fr; overflow: hidden; margin-bottom: 65px; border: 1px solid var(--line); border-radius: 28px; background: var(--paper); box-shadow: var(--shadow); }
.footer-map iframe { width: 100%; height: 100%; min-height: 390px; border: 0; filter: grayscale(.55) contrast(.95); }
.footer-contact { padding: clamp(36px, 5vw, 62px); color: rgba(255,255,255,.68); background: var(--night); }
.footer-contact img { margin-bottom: 20px; }
.footer-contact h2 { margin-bottom: 15px; color: var(--white); font-size: 1.55rem; line-height: 1.15; letter-spacing: -.03em; }
.footer-phone { display: block; margin-bottom: 5px; color: var(--coral); font-family: var(--heading); font-size: 27px; font-weight: 800; letter-spacing: -.04em; }
.footer-contact address { margin: 20px 0; }
.footer-contact a { color: rgba(255,255,255,.76); }
.footer-links { display: grid; grid-template-columns: 1fr .7fr 1.4fr; gap: 60px; }
.footer-links h3 { margin-bottom: 16px; color: var(--night); font-size: .875rem; line-height: 1.3; letter-spacing: .08em; text-transform: uppercase; }
.footer-links ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--blue); }
.footer-links p { font-size: 13px; }
.footer-bottom { margin-top: 60px; padding-top: 25px; border-top: 1px solid var(--line); font-size: 12px; text-align: center; }
.mobile-call { display: none; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .85s cubic-bezier(.2,.8,.2,1), transform .85s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.row > div:nth-child(2) .reveal { transition-delay: .08s; }
.row > div:nth-child(3) .reveal { transition-delay: .16s; }
.page-ready .hero-copy { animation: enterLeft .9s cubic-bezier(.2,.8,.2,1) both; }
.page-ready .hero-dispatch { animation: enterRight .95s .13s cubic-bezier(.2,.8,.2,1) both; }
@keyframes enterLeft { from { opacity: 0; transform: translateX(-34px); } to { opacity: 1; transform: none; } }
@keyframes enterRight { from { opacity: 0; transform: translateX(34px); } to { opacity: 1; transform: none; } }

@media (max-width: 1199.98px) {
  .navbar-collapse { margin-top: 12px; padding: 16px 0 22px; border-top: 1px solid var(--line); }
  .navbar-nav { align-items: stretch; }
  .navbar .nav-link { padding: 13px 4px !important; }
  .header-actions { margin-top: 12px; }
  .header-phone { width: 100%; }
  .hero-stage { grid-template-columns: minmax(0, 1fr) minmax(340px, 390px); gap: 45px; }
  .hero-copy h1 { font-size: clamp(3.2rem, 6vw, 5.2rem); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-intro { grid-column: 1 / -1; min-height: 48px; padding: 0 0 14px; border-right: 0; }
}

@media (max-width: 991.98px) {
  .contact-strip-inner span:last-child { display: none; }
  .hero-section { min-height: auto; padding-top: 85px; }
  .hero-stage { grid-template-columns: 1fr; align-items: start; }
  .hero-copy { max-width: 760px; padding-bottom: 0; }
  .hero-dispatch { max-width: 600px; }
  .hero-edge { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 17px 22px; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(3), .trust-item:nth-child(5) { border-right: 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .service-card { min-height: 460px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-layout > div { position: static; }
  .footer-map { grid-template-columns: 1fr; }
  .footer-map iframe { min-height: 300px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
  body { padding-bottom: 76px; font-size: 16px; }
  .container { width: min(100% - 28px, 1280px); }
  .section { padding: 78px 0; }
  .contact-strip-inner { justify-content: center; gap: 18px; }
  .contact-strip-inner span:first-child { margin-right: 0; }
  .navbar { min-height: 76px; }
  .navbar-brand img { width: 48px; height: 48px; }
  .navbar-brand strong { font-size: 15px; }
  .hero-section { padding: 60px 0 76px; }
  .hero-shade { background: linear-gradient(90deg, rgba(10,16,35,.93), rgba(10,16,35,.62)), linear-gradient(0deg, rgba(10,16,35,.88), transparent 60%); }
  .hero-stage { gap: 42px; }
  .hero-copy h1 { font-size: clamp(2.65rem, 11.5vw, 3.75rem); }
  .hero-lead { font-size: 1.03rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-dispatch { border-radius: 20px; }
  .dispatch-top { padding: 22px 20px 17px; }
  .dispatch-links a { min-height: 105px; padding: 15px; }
  .dispatch-links strong { font-size: 16px; }
  .dispatch-bottom { padding: 15px 18px; flex-direction: column; gap: 2px; }
  h2 { font-size: clamp(1.85rem, 7.5vw, 2.65rem); }
  h3 { font-size: clamp(1.3rem, 5vw, 1.6rem); }
  .trust-grid { padding: 20px 0; }
  .trust-item { padding: 15px 12px; }
  .trust-item strong { font-size: 14px; }
  .intro-copy { columns: 1; font-size: 1rem; }
  .content-grid { display: flex; flex-direction: column; align-items: stretch; gap: 20px; }
  .content-copy, .content-section.is-reverse .content-copy { order: 2; }
  .section-number { order: 1; width: 44px; height: 44px; }
  .content-photo, .content-section.is-reverse .content-photo { order: 3; width: 100%; margin: 4px 0 18px; }
  .content-photo::after, .content-section.is-reverse .content-photo::after { right: -8px; bottom: -8px; left: auto; }
  .content-photo figcaption { right: 10px; bottom: 10px; left: 10px; }
  .utility-photo img, .utility-photo-wide img { aspect-ratio: 4 / 3; }
  .service-list { grid-template-columns: 1fr; }
  .coupon-shell { grid-template-columns: 1fr; }
  .coupon-copy { padding: 38px 25px; }
  .coupon-link { min-height: 330px; }
  .CUS { padding: 25px 20px; box-shadow: 10px 10px 0 var(--blue); }
  .location-grid, .sitemap-list { grid-template-columns: 1fr; }
  .utility-hero { padding: 86px 0; }
  .utility-hero h1 { font-size: clamp(2.55rem, 10.5vw, 3.75rem); }
  .footer-links h3 { font-size: .9375rem; }
  .footer-links { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { margin-bottom: 8px; }
  .mobile-call { position: fixed; z-index: 1045; right: 12px; bottom: 10px; left: 12px; min-height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 10px 22px; border-radius: 15px; color: var(--white); background: var(--blue); box-shadow: 0 16px 35px rgba(16,23,45,.3); font-family: var(--heading); font-size: 18px; font-weight: 800; }
  .mobile-call span { font-family: var(--body); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
  .mobile-call:hover { color: var(--white); }
}

@media (max-width: 374px) {
  .contact-strip-inner span:nth-child(2) { display: none; }
  .navbar-brand span { display: none; }
  .hero-copy h1 { font-size: 2.45rem; }
  .dispatch-links { grid-template-columns: 1fr; }
  .dispatch-links a { min-height: 86px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .dispatch-links a:last-child { border-bottom: 0 !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
