:root {
  --navy-950: #061724;
  --navy-900: #071c2c;
  --navy-800: #0b2940;
  --blue-600: #0773d3;
  --blue-500: #0c8cf0;
  --blue-100: #dcefff;
  --paper: #f4f7f9;
  --white: #ffffff;
  --ink: #0b1d2b;
  --muted: #607181;
  --line: #d9e2e8;
  --gold: #f5b941;
  --danger: #c53b3b;
  --shadow-sm: 0 12px 35px rgba(7, 28, 44, .08);
  --shadow-lg: 0 28px 80px rgba(2, 15, 26, .22);
  --container: 1180px;
  --header-h: 86px;
  --ease: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
address { font-style: normal; }
button { border: 0; cursor: pointer; }
:focus-visible { outline: 3px solid #55b8ff; outline-offset: 3px; }
::selection { color: #fff; background: var(--blue-600); }

.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-150%); padding: 10px 16px; color: #fff; background: var(--navy-950); border-radius: 4px; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--blue-600); font-size: 11px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow.light { color: #8bcbff; }
.eyebrow.centered { justify-content: center; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; line-height: 1.03; letter-spacing: -.045em; }
h1 em, h2 em { color: var(--blue-500); font-style: italic; }
h2 { margin-bottom: 24px; font-size: clamp(42px, 5vw, 68px); }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 12px; padding: 13px 22px; border: 1px solid transparent; border-radius: 3px; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: transform var(--ease), box-shadow var(--ease), color var(--ease), background var(--ease); }
.button:hover { transform: translateY(-2px); }
.button-large { min-height: 58px; padding-inline: 27px; }
.button-primary { color: #fff; background: var(--blue-600); box-shadow: 0 12px 30px rgba(7, 115, 211, .27); }
.button-primary:hover { background: #0867ba; box-shadow: 0 15px 36px rgba(7, 115, 211, .35); }
.button-dark { color: #fff; background: var(--navy-900); }
.button-dark:hover { background: var(--blue-600); }
.button-white { color: var(--navy-900); background: #fff; }
.button-white:hover { background: var(--paper); }
.button-ghost { color: #fff; background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.button-ghost:hover { background: #fff; color: var(--navy-900); }
.button-icon { font-size: 17px; }
.button[disabled] { cursor: not-allowed; opacity: .62; transform: none; }
.text-button { display: inline-flex; align-items: center; gap: 9px; padding: 8px 0; color: var(--navy-900); background: transparent; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.text-button-light { color: #fff; }

/* Header */
.site-header { position: sticky; z-index: 100; top: 0; height: var(--header-h); color: var(--navy-900); background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(7,28,44,.08); box-shadow: 0 5px 24px rgba(7,28,44,.04); backdrop-filter: blur(16px); }
.header-inner { display: grid; width: min(calc(100% - 48px), 1380px); height: 100%; margin-inline: auto; grid-template-columns: auto 1fr auto; align-items: center; gap: 46px; }
.brand { display: inline-flex; align-items: center; gap: 11px; line-height: 1; }
.brand-mark { position: relative; display: grid; width: 32px; height: 38px; place-items: center; overflow: hidden; background: var(--blue-600); border-radius: 50% 50% 50% 3px; transform: rotate(-45deg); }
.brand-mark::before { width: 17px; height: 17px; content: ''; border: 3px solid #fff; border-radius: 50%; }
.brand-mark span { position: absolute; width: 3px; height: 15px; background: #fff; transform: rotate(45deg) translate(7px, 5px); transform-origin: center; }
.brand-text { display: grid; gap: 3px; font-size: 13px; letter-spacing: .08em; }
.brand-text strong:last-child { color: var(--blue-600); font-size: 18px; letter-spacing: .17em; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2vw, 30px); }
.desktop-nav a { position: relative; padding: 30px 0; color: #334b5e; font-size: 12px; font-weight: 700; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 22px; left: 0; height: 2px; content: ''; background: var(--blue-600); transform: scaleX(0); transition: transform var(--ease); }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.emergency-label { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.emergency-label span, .footer-contact p span, .contact-details strong span { width: 7px; height: 7px; background: #24b46a; border-radius: 50%; box-shadow: 0 0 0 4px rgba(36,180,106,.12); }
.header-phone { padding-left: 20px; border-left: 1px solid var(--line); line-height: 1.15; }
.header-phone small { display: block; margin-bottom: 5px; color: var(--blue-600); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.header-phone strong { font-size: 16px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; background: transparent; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy-900); transition: var(--ease); }
.mobile-menu { position: absolute; top: 100%; right: 0; left: 0; padding: 12px 24px 24px; color: var(--navy-900); background: #fff; border-top: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.mobile-menu a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.mobile-menu .mobile-menu-phone { margin-top: 14px; padding: 14px; color: #fff; text-align: center; background: var(--blue-600); border: 0; }

/* Hero */
.hero { position: relative; display: flex; min-height: calc(92svh - var(--header-h)); align-items: center; overflow: hidden; color: #fff; background: var(--navy-950); }
.hero-media, .hero-scrim { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-scrim { background: linear-gradient(90deg, rgba(3,17,28,.97) 0%, rgba(3,17,28,.84) 36%, rgba(3,17,28,.3) 65%, rgba(3,17,28,.1) 100%), linear-gradient(0deg, rgba(3,17,28,.55), transparent 45%); }
.hero-content { position: relative; z-index: 2; padding: 90px 0 110px; }
.hero h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(54px, 7vw, 96px); }
.hero-copy { max-width: 630px; margin-bottom: 34px; color: rgba(255,255,255,.78); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-trust { display: flex; max-width: 640px; margin-top: 56px; padding-top: 27px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-trust > div { display: grid; min-width: 145px; padding-right: 30px; }
.hero-trust > div + div { padding-left: 30px; border-left: 1px solid rgba(255,255,255,.18); }
.hero-trust strong { font-family: Georgia, serif; font-size: 24px; font-weight: 400; line-height: 1; }
.hero-trust strong span { color: var(--gold); font-family: Arial, sans-serif; font-size: 14px; }
.hero-trust small { margin-top: 8px; color: rgba(255,255,255,.55); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.hero-scroll { position: absolute; z-index: 3; right: 36px; bottom: 35px; display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.58); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; transform: rotate(-90deg) translateX(100%); transform-origin: bottom right; }
.hero-scroll span { width: 34px; height: 1px; background: currentColor; }

/* Emergency and trust */
.emergency-bar { padding: 32px 0; color: #fff; background: var(--blue-600); }
.emergency-inner { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 26px; }
.emergency-symbol { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-family: Georgia, serif; font-size: 28px; }
.emergency-copy h2 { margin: 0 0 6px; font-size: 27px; letter-spacing: -.025em; }
.emergency-copy h2 em { color: #fff; }
.emergency-copy p { margin: 0; color: rgba(255,255,255,.78); font-size: 13px; }
.emergency-actions { display: flex; align-items: center; gap: 24px; }
.trust-strip { padding: 42px 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 4px 36px; text-align: center; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { font-family: Georgia, serif; font-size: clamp(34px, 4vw, 48px); font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.trust-item strong span { color: var(--blue-600); font-family: Arial, sans-serif; font-size: .44em; }
.trust-item p { margin: 9px 0 0; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.trust-item p small { display: block; margin-top: 3px; color: #8a9aa7; font-size: 8px; font-weight: 500; letter-spacing: .08em; }

/* Services */
.services { background: #fff; }
.split-heading { display: grid; margin-bottom: 58px; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 80px; }
.section-heading h2 { margin-bottom: 0; }
.split-heading > p { max-width: 390px; margin: 0 0 7px; color: var(--muted); font-size: 15px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 300px; padding: 34px; overflow: hidden; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background var(--ease), transform var(--ease), box-shadow var(--ease); }
.service-card::before { position: absolute; inset: auto 0 0; height: 3px; content: ''; background: var(--blue-600); transform: scaleX(0); transform-origin: left; transition: transform var(--ease); }
.service-card:hover { z-index: 2; background: #fbfdff; box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.featured-service { background: var(--paper); }
.service-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 48px; }
.service-icon { display: grid; width: 49px; height: 49px; place-items: center; color: var(--blue-600); background: var(--blue-100); border-radius: 50%; font-family: Georgia, serif; font-size: 14px; font-style: italic; }
.service-icon.emergency-icon { color: #fff; background: var(--blue-600); font-size: 23px; }
.service-arrow { color: #8b9ba8; font-size: 20px; transition: transform var(--ease), color var(--ease); }
.service-card:hover .service-arrow { color: var(--blue-600); transform: translate(3px, -3px); }
.service-card h3 { margin: 0 0 11px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; letter-spacing: -.02em; }
.service-card > p { min-height: 48px; margin-bottom: 24px; color: var(--muted); font-size: 14px; }
.card-actions { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.card-actions a, .card-actions button { padding: 0 0 3px; color: var(--navy-900); background: transparent; border-bottom: 1px solid #95a5b1; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.card-actions button { color: var(--blue-600); border-color: var(--blue-600); }

/* About and why */
.about { background: var(--paper); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(60px, 8vw, 110px); }
.about-visual { position: relative; min-height: 500px; }
.about-blueprint { position: absolute; inset: 0 36px 30px 0; overflow: hidden; background-color: var(--navy-900); background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 28px 28px; box-shadow: var(--shadow-lg); }
.about-blueprint::before { position: absolute; top: 76px; left: 64px; width: 220px; height: 220px; content: ''; border: 16px solid rgba(12,140,240,.36); border-radius: 50%; box-shadow: inset 0 0 0 13px var(--navy-900), inset 0 0 0 15px rgba(255,255,255,.22); }
.pipe { position: absolute; display: block; background: rgba(255,255,255,.68); border-radius: 8px; }
.pipe-one { top: 178px; right: 55px; width: 145px; height: 15px; }
.pipe-two { top: 178px; right: 55px; width: 15px; height: 95px; }
.pipe-three { top: 114px; right: 123px; width: 15px; height: 80px; }
.blueprint-label { position: absolute; right: 38px; bottom: 38px; left: 38px; padding-top: 21px; color: #fff; border-top: 1px solid rgba(255,255,255,.25); }
.blueprint-label small { display: block; margin-bottom: 5px; color: #72bfff; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.blueprint-label strong { font-family: Georgia, serif; font-size: 23px; font-weight: 400; }
.about-badge { position: absolute; right: 0; bottom: 0; display: flex; width: 175px; height: 110px; align-items: center; justify-content: center; gap: 11px; color: #fff; background: var(--blue-600); box-shadow: 0 18px 45px rgba(7,115,211,.28); }
.about-badge strong { font-family: Georgia, serif; font-size: 54px; font-weight: 400; line-height: 1; }
.about-badge span { font-size: 9px; font-weight: 800; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }
.about-content > p:not(.eyebrow) { max-width: 590px; margin-bottom: 31px; color: var(--muted); font-size: 15px; line-height: 1.85; }
.why { padding-top: 105px; }
.centered-heading { margin-bottom: 55px; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-grid article { min-height: 235px; padding: 31px 26px; }
.why-grid article + article { border-left: 1px solid var(--line); }
.why-grid span { display: block; margin-bottom: 54px; color: var(--blue-600); font-family: Georgia, serif; font-size: 14px; font-style: italic; }
.why-grid h3 { margin-bottom: 11px; font-family: Georgia, serif; font-size: 19px; font-weight: 400; }
.why-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

/* Reviews */
.reviews { color: #fff; background: var(--navy-950); }
.reviews-header { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 55px; }
.reviews h2 { margin: 0; }
.google-score { display: grid; min-width: 180px; justify-items: end; padding-left: 40px; border-left: 1px solid rgba(255,255,255,.17); }
.google-score .stars { color: var(--gold); font-size: 15px; letter-spacing: .12em; }
.google-score strong { font-family: Georgia, serif; font-size: 48px; font-weight: 400; line-height: 1.1; }
.google-score small { color: rgba(255,255,255,.55); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.review-grid figure { min-height: 300px; margin: 0; padding: 34px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.quote-mark { height: 64px; color: var(--blue-500); font-family: Georgia, serif; font-size: 68px; line-height: 1; }
.review-grid blockquote { min-height: 115px; margin: 0 0 27px; font-family: Georgia, serif; font-size: 21px; font-weight: 400; line-height: 1.5; }
.review-grid figcaption { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.48); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.review-grid figcaption span { color: var(--gold); letter-spacing: .08em; }
.reviews-link { margin-top: 35px; }

/* Area and contact */
.service-area { background: var(--paper); }
.area-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.area-copy > p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); }
.area-location { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.area-location > span { display: grid; width: 42px; height: 42px; place-items: center; color: var(--blue-600); background: var(--blue-100); border-radius: 50%; font-size: 21px; }
.area-location small { display: block; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.area-location strong { font-family: Georgia, serif; font-size: 20px; font-weight: 400; }
.area-map { position: relative; min-height: 470px; padding: 13px; background: #fff; box-shadow: var(--shadow-sm); }
.area-map iframe { width: 100%; height: 444px; border: 0; filter: grayscale(1) contrast(.95) brightness(.96); }
.area-map a { position: absolute; right: 28px; bottom: 27px; padding: 11px 15px; color: #fff; background: var(--navy-900); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; box-shadow: var(--shadow-sm); }
.contact { padding: 92px 0; color: #fff; background: var(--blue-600); }
.contact-inner { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 55px 80px; }
.contact h2 { margin: 0; }
.contact h2 em { color: #fff; }
.contact-details { display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 28px; }
.contact-details > div { padding-left: 25px; border-left: 1px solid rgba(255,255,255,.3); }
.contact-details small { display: block; margin-bottom: 9px; color: rgba(255,255,255,.66); font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.contact-details a, .contact-details address, .contact-details strong { font-family: Georgia, serif; font-size: 17px; font-weight: 400; line-height: 1.55; }
.contact-details strong { display: flex; align-items: center; gap: 10px; }
.contact-details strong span { background: #76f2b0; box-shadow: 0 0 0 4px rgba(118,242,176,.14); }
.contact-actions { grid-column: 2; display: flex; gap: 13px; }

/* Footer */
.site-footer { padding: 75px 0 0; color: rgba(255,255,255,.62); background: #04121c; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 80px; padding-bottom: 65px; }
.brand-light { color: #fff; }
.footer-brand p { max-width: 380px; margin: 25px 0 0; font-size: 13px; }
.site-footer h2 { margin: 0 0 19px; color: #fff; font-family: Arial, sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.site-footer nav a, .site-footer nav button { display: block; margin: 8px 0; padding: 0; color: rgba(255,255,255,.62); background: transparent; font-size: 12px; }
.site-footer a:hover, .site-footer button:hover { color: #fff; }
.footer-contact > a { display: block; margin-bottom: 8px; color: #fff; font-family: Georgia, serif; font-size: 20px; }
.footer-contact address { font-size: 12px; }
.footer-contact p { display: flex; align-items: center; gap: 9px; margin: 14px 0 0; font-size: 11px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.mobile-cta { display: none; }

/* Booking modal */
.booking-modal { width: min(900px, calc(100% - 28px)); max-width: 900px; max-height: min(900px, calc(100dvh - 28px)); padding: 0; overflow: hidden; color: var(--ink); background: #fff; border: 0; border-radius: 8px; box-shadow: var(--shadow-lg); }
.booking-modal::backdrop { background: rgba(1,13,23,.78); backdrop-filter: blur(5px); }
.booking-shell { display: flex; max-height: min(900px, calc(100dvh - 28px)); flex-direction: column; }
.booking-header { display: grid; padding: 21px 24px; grid-template-columns: auto 1fr auto; align-items: center; gap: 19px; border-bottom: 1px solid var(--line); }
.booking-brand { padding-right: 20px; border-right: 1px solid var(--line); transform: scale(.86); transform-origin: left center; }
.booking-header p { margin: 0 0 2px; color: var(--blue-600); font-size: 8px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.booking-header h2 { margin: 0; font-family: Arial, sans-serif; font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.modal-close { display: grid; width: 40px; height: 40px; place-items: center; color: var(--ink); background: var(--paper); border-radius: 50%; font-size: 27px; font-weight: 300; line-height: 1; }
.modal-close:hover { background: var(--blue-100); }
.booking-progress { display: flex; padding: 20px clamp(24px, 6vw, 70px); align-items: flex-start; background: var(--paper); border-bottom: 1px solid var(--line); }
.progress-item { display: grid; min-width: 64px; justify-items: center; color: #8b9aa6; }
.progress-item span { display: grid; width: 29px; height: 29px; place-items: center; margin-bottom: 6px; background: #fff; border: 1px solid #becbd4; border-radius: 50%; font-size: 10px; font-weight: 800; }
.progress-item small { white-space: nowrap; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.progress-item.active, .progress-item.complete { color: var(--blue-600); }
.progress-item.active span { color: #fff; background: var(--blue-600); border-color: var(--blue-600); box-shadow: 0 0 0 5px rgba(7,115,211,.1); }
.progress-item.complete span { color: #fff; background: var(--navy-900); border-color: var(--navy-900); }
.progress-line { flex: 1; height: 1px; margin: 14px 4px 0; overflow: hidden; background: #cbd5dc; }
.progress-line i { display: block; width: 0; height: 100%; background: var(--blue-600); transition: width 300ms ease; }
.progress-line.complete i { width: 100%; }
#booking-form { min-height: 0; overflow-y: auto; }
.booking-step { padding: 32px clamp(24px, 6vw, 65px) 30px; }
.booking-step[hidden] { display: none; }
.step-heading { margin-bottom: 25px; }
.step-heading > span { display: block; margin-bottom: 6px; color: var(--blue-600); font-size: 8px; font-weight: 800; letter-spacing: .17em; }
.step-heading h3 { margin: 0 0 5px; font-family: Georgia, serif; font-size: 28px; font-weight: 400; letter-spacing: -.025em; }
.step-heading p { margin: 0; color: var(--muted); font-size: 12px; }
.service-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.service-options button { display: grid; min-height: 110px; padding: 16px; grid-template-columns: 34px 1fr; align-content: center; align-items: center; gap: 2px 11px; text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 4px; transition: var(--ease); }
.service-options button:hover { border-color: #8abce5; box-shadow: 0 8px 18px rgba(7,28,44,.06); }
.service-options button.selected { background: #f4faff; border-color: var(--blue-600); box-shadow: inset 0 0 0 1px var(--blue-600); }
.service-options button > span { grid-row: 1 / 3; display: grid; width: 32px; height: 32px; place-items: center; color: var(--blue-600); background: var(--blue-100); border-radius: 50%; font-family: Georgia, serif; font-size: 10px; }
.service-options button strong { align-self: end; font-size: 11px; }
.service-options button small { align-self: start; color: var(--muted); font-size: 9px; }
.field-error { min-height: 18px; margin: 5px 0 0; color: var(--danger); font-size: 10px; font-weight: 700; }
.emergency-note, .booking-disclaimer { margin: 8px 0 0; padding: 12px 15px; color: #5d4a20; background: #fff9e9; border-left: 3px solid var(--gold); font-size: 11px; }
.emergency-note a { color: var(--blue-600); font-weight: 800; text-decoration: underline; }
.step-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.step-actions.align-right { justify-content: flex-end; }
.date-time-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 28px; }
.date-panel { padding-right: 28px; border-right: 1px solid var(--line); }
.date-panel label, .time-label span { display: block; margin-bottom: 8px; color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.date-input-wrap { position: relative; }
.date-input-wrap input { width: 100%; height: 48px; padding: 0 42px 0 13px; color: var(--ink); background: #fff; border: 1px solid #bdcbd5; border-radius: 3px; }
.date-input-wrap span { position: absolute; top: 50%; right: 13px; color: var(--blue-600); pointer-events: none; transform: translateY(-50%); }
.selected-date { min-height: 22px; margin: 10px 0 0; color: var(--blue-600); font-family: Georgia, serif; font-size: 15px; }
.time-label { display: flex; align-items: center; justify-content: space-between; }
.time-label small { color: var(--muted); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.time-slots button { min-height: 38px; color: #394e5e; background: #fff; border: 1px solid var(--line); border-radius: 3px; font-size: 10px; font-weight: 800; }
.time-slots button:hover { color: var(--blue-600); border-color: #8abce5; }
.time-slots button.selected { color: #fff; background: var(--blue-600); border-color: var(--blue-600); }
.booking-disclaimer { display: flex; gap: 9px; color: var(--muted); background: var(--paper); border: 0; }
.booking-disclaimer span { display: grid; width: 17px; height: 17px; flex: 0 0 auto; place-items: center; color: #fff; background: var(--blue-600); border-radius: 50%; font-family: Georgia, serif; font-size: 10px; }
.request-summary { display: flex; margin-bottom: 22px; padding: 11px 15px; color: #344d60; background: var(--paper); border: 1px solid var(--line); border-radius: 3px; gap: 18px; font-size: 10px; }
.request-summary span { display: flex; align-items: center; gap: 6px; }
.request-summary strong { color: var(--ink); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.form-field.full-width { grid-column: 1 / -1; }
.form-field label { display: block; margin-bottom: 6px; font-size: 10px; font-weight: 800; letter-spacing: .04em; }
.form-field label > span { color: var(--danger); }
.form-field label small { color: var(--muted); font-size: 9px; font-weight: 400; }
.form-field input, .form-field textarea { width: 100%; padding: 11px 12px; color: var(--ink); background: #fff; border: 1px solid #bdcbd5; border-radius: 3px; outline: 0; transition: border-color var(--ease), box-shadow var(--ease); }
.form-field input { height: 43px; }
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .date-input-wrap input:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(7,115,211,.1); }
.form-field input.invalid, .form-field textarea.invalid { border-color: var(--danger); }
.form-field input::placeholder, .form-field textarea::placeholder { color: #9aa8b3; font-size: 11px; }
.submit-status { min-height: 18px; margin-top: 5px; color: var(--danger); font-size: 11px; font-weight: 700; }
.loading-label { align-items: center; gap: 8px; }
.loading-label:not([hidden]) { display: inline-flex; }
.loading-label i { width: 13px; height: 13px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.confirmation-step { padding-top: 42px; text-align: center; }
.success-mark { display: grid; width: 62px; height: 62px; margin: 0 auto 18px; place-items: center; color: #fff; background: var(--blue-600); border-radius: 50%; box-shadow: 0 0 0 8px var(--blue-100); font-size: 27px; }
.confirmation-step h3 { margin: 0 0 10px; font-family: Georgia, serif; font-size: 31px; font-weight: 400; line-height: 1.15; }
.confirmation-step > p:not(.eyebrow) { max-width: 520px; margin: 0 auto 22px; color: var(--muted); font-size: 12px; }
.confirmation-details { display: grid; max-width: 620px; margin: 0 auto 14px; padding: 10px 20px; grid-template-columns: 1fr 1fr; text-align: left; background: var(--paper); border: 1px solid var(--line); }
.confirmation-details div { display: flex; padding: 9px 0; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); }
.confirmation-details div:nth-last-child(-n+2) { border-bottom: 0; }
.confirmation-details div:nth-child(odd) { padding-right: 16px; }
.confirmation-details div:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
.confirmation-details dt { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.confirmation-details dd { margin: 0; font-size: 11px; font-weight: 700; text-align: right; }
.email-status { max-width: 620px; margin: 0 auto 12px; padding: 9px 12px; color: #526979; background: #f4f7f9; font-size: 10px; }
.email-status.sent { color: #116337; background: #e9f8f0; }
.immediate-help { font-size: 12px; font-weight: 700; }
.immediate-help a { color: var(--blue-600); text-decoration: underline; }
.receipt-prompt { display: flex; max-width: 620px; margin: 14px auto 0; padding: 12px 15px; align-items: center; gap: 12px; text-align: left; color: #385164; background: #edf7ff; border: 1px solid #c6e5fb; border-radius: 3px; }
.receipt-prompt > span { display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; color: #fff; background: var(--blue-600); border-radius: 50%; font-size: 13px; }
.receipt-prompt p { margin: 0; line-height: 1.35; }
.receipt-prompt strong { display: block; color: var(--navy-900); font-size: 11px; }
.receipt-prompt small { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; }
.centered-actions { justify-content: center; margin-top: 16px; }
.confirmation-actions { gap: 10px; }
.print-receipt { display: none; }

@media (max-width: 1180px) {
  .desktop-nav { gap: 15px; }
  .desktop-nav a { font-size: 11px; }
  .emergency-label { display: none; }
  .header-inner { gap: 28px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid article:nth-child(4) { border-left: 0; }
  .why-grid article:nth-child(n+4) { border-top: 1px solid var(--line); }
  .contact-inner { grid-template-columns: .65fr 1.35fr; gap: 50px; }
}

@media (max-width: 960px) {
  :root { --header-h: 74px; }
  .container { width: min(calc(100% - 40px), var(--container)); }
  .section { padding: 88px 0; }
  .header-inner { width: calc(100% - 36px); grid-template-columns: auto 1fr auto; }
  .desktop-nav { display: none; }
  .header-actions { justify-self: end; }
  .menu-toggle { display: block; }
  .header-phone { border: 0; }
  .hero { min-height: 770px; }
  .hero-content { padding: 85px 0 110px; }
  .hero-media img { object-position: 60% center; }
  .hero-scrim { background: linear-gradient(90deg, rgba(3,17,28,.96) 0%, rgba(3,17,28,.79) 55%, rgba(3,17,28,.35) 100%), linear-gradient(0deg, rgba(3,17,28,.6), transparent); }
  .emergency-inner { grid-template-columns: auto 1fr; }
  .emergency-actions { grid-column: 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
  .about-visual { min-height: 430px; }
  .about-blueprint { right: 24px; }
  .area-grid { gap: 45px; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-details, .contact-actions { grid-column: auto; }
}

@media (max-width: 720px) {
  body { padding-bottom: 67px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 72px 0; }
  h2 { font-size: clamp(39px, 12vw, 52px); }
  .header-actions { display: none; }
  .hero { min-height: calc(100svh - var(--header-h)); align-items: end; }
  .hero-media img { object-position: 65% center; }
  .hero-scrim { background: linear-gradient(0deg, rgba(3,17,28,.98) 3%, rgba(3,17,28,.87) 58%, rgba(3,17,28,.35) 100%), linear-gradient(90deg, rgba(3,17,28,.65), transparent); }
  .hero-content { padding: 180px 0 40px; }
  .hero h1 { margin-bottom: 20px; font-size: clamp(49px, 15vw, 68px); }
  .hero-copy { margin-bottom: 25px; font-size: 15px; line-height: 1.6; }
  .button-row { display: grid; grid-template-columns: 1fr 1fr; }
  .button-large { min-height: 54px; padding: 12px 14px; font-size: 11px; }
  .hero-trust { margin-top: 32px; padding-top: 20px; }
  .hero-trust > div { min-width: 0; flex: 1; padding-right: 11px; }
  .hero-trust > div + div { padding-left: 11px; }
  .hero-trust strong { font-size: 19px; }
  .hero-trust small { font-size: 7px; }
  .hero-scroll { display: none; }
  .emergency-bar { padding: 27px 0; }
  .emergency-inner { grid-template-columns: auto 1fr; gap: 15px; }
  .emergency-symbol { width: 42px; height: 42px; }
  .emergency-copy h2 { font-size: 22px; }
  .emergency-copy p { font-size: 12px; }
  .emergency-actions { grid-column: 1 / -1; justify-content: space-between; }
  .trust-strip { padding: 26px 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; row-gap: 23px; }
  .trust-item { padding: 5px 15px; }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item:nth-child(n+3) { padding-top: 20px; border-top: 1px solid var(--line); }
  .split-heading { display: block; margin-bottom: 36px; }
  .split-heading > p { margin-top: 22px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 265px; padding: 28px; }
  .service-top { margin-bottom: 35px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { min-height: 385px; }
  .about-content { grid-row: 1; }
  .about-blueprint::before { left: 35px; width: 180px; height: 180px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid article { min-height: 0; padding: 25px 15px; }
  .why-grid article + article { border-top: 1px solid var(--line); border-left: 0; }
  .why-grid span { margin-bottom: 20px; }
  .reviews-header { display: block; }
  .google-score { min-width: 0; margin-top: 30px; padding: 24px 0 0; justify-items: start; border-top: 1px solid rgba(255,255,255,.17); border-left: 0; }
  .review-grid { grid-template-columns: 1fr; }
  .review-grid figure { min-height: 260px; }
  .review-grid blockquote { min-height: 80px; }
  .area-grid { grid-template-columns: 1fr; }
  .area-map { min-height: 370px; }
  .area-map iframe { height: 344px; }
  .contact-details { grid-template-columns: 1fr; gap: 20px; }
  .contact-details > div { padding: 0 0 18px; border-bottom: 1px solid rgba(255,255,255,.3); border-left: 0; }
  .contact-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 7px; }
  .mobile-cta { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; display: grid; height: 67px; padding: 8px; grid-template-columns: 1fr 1fr; gap: 7px; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -8px 30px rgba(7,28,44,.12); }
  .mobile-cta a, .mobile-cta button { display: flex; align-items: center; justify-content: center; gap: 9px; color: #fff; background: var(--navy-900); border-radius: 3px; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
  .mobile-cta button { background: var(--blue-600); }
  .booking-modal { width: 100%; max-width: none; max-height: 100dvh; margin: 0; border-radius: 0; }
  .booking-shell { max-height: 100dvh; }
  .booking-header { padding: 14px 16px; grid-template-columns: 1fr auto; }
  .booking-brand { display: none; }
  .booking-progress { padding: 15px 13px; }
  .progress-item { min-width: 44px; }
  .progress-item small { max-width: 60px; text-align: center; white-space: normal; line-height: 1.2; }
  .progress-line { margin-inline: 0; }
  .booking-step { padding: 25px 17px 24px; }
  .service-options { grid-template-columns: 1fr 1fr; }
  .service-options button { min-height: 94px; padding: 12px; grid-template-columns: 30px 1fr; gap: 1px 8px; }
  .service-options button > span { width: 28px; height: 28px; }
  .date-time-grid { grid-template-columns: 1fr; gap: 19px; }
  .date-panel { padding: 0 0 15px; border-right: 0; border-bottom: 1px solid var(--line); }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full-width { grid-column: auto; }
  .request-summary { flex-wrap: wrap; gap: 4px 14px; }
  .confirmation-details { grid-template-columns: 1fr; }
  .confirmation-details div, .confirmation-details div:nth-child(odd), .confirmation-details div:nth-child(even) { padding: 8px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .confirmation-details div:last-child { border-bottom: 0; }
  .confirmation-actions { flex-direction: column; }
  .confirmation-actions .button { width: 100%; }
}

@media (max-width: 390px) {
  .brand-text { font-size: 11px; }
  .brand-text strong:last-child { font-size: 16px; }
  .hero h1 { font-size: 47px; }
  .button-row, .contact-actions { grid-template-columns: 1fr; }
  .hero-trust > div { padding-right: 7px; }
  .hero-trust > div + div { padding-left: 7px; }
  .service-options { grid-template-columns: 1fr; }
  .service-options button { min-height: 74px; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
}

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

@media print {
  @page { size: A4 portrait; margin: 0; }
  html, body { width: 210mm; min-height: 297mm; background: #fff !important; }
  body { margin: 0 !important; padding: 0 !important; overflow: visible !important; color: #071c2c; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  body > *:not(.print-receipt) { display: none !important; }
  .print-receipt { display: block !important; width: 210mm; min-height: 297mm; padding: 16mm 17mm 14mm; font-family: Arial, Helvetica, sans-serif; background: #fff; }
  .receipt-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 9mm; border-bottom: 1.2mm solid #0773d3; }
  .receipt-brand { transform: scale(1.05); transform-origin: left center; }
  .receipt-title { text-align: right; }
  .receipt-title small { display: block; margin-bottom: 1.5mm; color: #0773d3; font-size: 7pt; font-weight: 800; letter-spacing: .18em; }
  .receipt-title h2 { margin: 0; color: #071c2c; font-family: Georgia, 'Times New Roman', serif; font-size: 24pt; letter-spacing: -.03em; }
  .receipt-notice { margin: 9mm 0 7mm; padding: 5mm 6mm; background: #edf7ff !important; border-left: 1.2mm solid #0773d3; }
  .receipt-notice strong { color: #071c2c; font-family: Georgia, 'Times New Roman', serif; font-size: 15pt; font-weight: 400; }
  .receipt-notice p { margin: 1.5mm 0 0; color: #526979; font-size: 8.5pt; line-height: 1.55; }
  .receipt-meta { display: grid; margin-bottom: 9mm; padding: 4.5mm 0; grid-template-columns: 1fr 1fr 1fr; border-top: .3mm solid #d9e2e8; border-bottom: .3mm solid #d9e2e8; }
  .receipt-meta > div { padding: 0 5mm; }
  .receipt-meta > div:first-child { padding-left: 0; }
  .receipt-meta > div + div { border-left: .3mm solid #d9e2e8; }
  .receipt-meta small { display: block; margin-bottom: 1.5mm; color: #607181; font-size: 6.5pt; font-weight: 800; letter-spacing: .12em; }
  .receipt-meta strong { display: block; color: #071c2c; font-size: 9pt; line-height: 1.4; }
  .receipt-section { margin-bottom: 8mm; break-inside: avoid; }
  .receipt-section h3 { margin: 0 0 3.5mm; padding-bottom: 2.5mm; color: #071c2c; font-family: Georgia, 'Times New Roman', serif; font-size: 14pt; font-weight: 400; border-bottom: .3mm solid #071c2c; }
  .receipt-grid { display: grid; margin: 0; grid-template-columns: 1fr 1fr; column-gap: 9mm; }
  .receipt-grid > div { min-height: 17mm; padding: 3.5mm 0; border-bottom: .25mm solid #d9e2e8; }
  .receipt-grid dt { margin-bottom: 1.2mm; color: #607181; font-size: 6.5pt; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .receipt-grid dd { margin: 0; overflow-wrap: anywhere; color: #071c2c; font-size: 9.5pt; font-weight: 700; line-height: 1.45; }
  .receipt-grid .receipt-wide { grid-column: 1 / -1; }
  .receipt-grid .receipt-message { min-height: 23mm; }
  .receipt-footer { display: flex; margin-top: 11mm; padding-top: 5mm; align-items: flex-start; justify-content: space-between; color: #526979; border-top: 1.2mm solid #071c2c; }
  .receipt-footer > div:last-child { text-align: right; }
  .receipt-footer strong { color: #071c2c; font-size: 9pt; }
  .receipt-footer p { margin: 1mm 0 0; font-size: 7.5pt; line-height: 1.5; }
}
