/* Heritage Air Solutions — production styles */
:root {
  --navy-950: #071a2d;
  --navy-900: #0b2239;
  --navy-800: #102a43;
  --navy-700: #173f5f;
  --teal-600: #008f86;
  --teal-500: #00a99c;
  --teal-400: #00c7b7;
  --gold-500: #f2a71b;
  --gold-400: #ffb547;
  --cream: #f7f5ef;
  --mist: #edf5f4;
  --white: #ffffff;
  --ink: #17202a;
  --muted: #5d6975;
  --line: #d8e2e3;
  --error: #b42318;
  --success: #087f5b;
  --radius-sm: 0.55rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --shadow-sm: 0 8px 28px rgba(7, 26, 45, 0.08);
  --shadow-lg: 0 26px 70px rgba(7, 26, 45, 0.18);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body { margin: 0; min-width: 320px; overflow-x: hidden; color: var(--ink); background: var(--white); font-family: "DM Sans", sans-serif; font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
section[id], article[id] { scroll-margin-top: calc(var(--header-height) + 24px); }
::selection { color: var(--navy-950); background: var(--teal-400); }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 4px; border-radius: 0.35rem; }

.skip-link { position: fixed; z-index: 1000; top: 0.75rem; left: 1rem; padding: 0.75rem 1rem; color: var(--navy-950); background: var(--gold-400); font-weight: 800; transform: translateY(-150%); transition: transform 180ms var(--ease-out); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(100% - 2rem, 1220px); margin-inline: auto; }
.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }
h1, h2, h3 { margin: 0; font-family: "Manrope", sans-serif; letter-spacing: -0.035em; line-height: 1.05; }
h1 { max-width: 900px; font-size: clamp(2.7rem, 7vw, 5.75rem); }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0; }

.eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; color: var(--teal-600); font-family: "Manrope", sans-serif; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.13em; line-height: 1.3; text-transform: uppercase; }
.eyebrow > span { display: block; width: 2.75rem; height: 2px; background: currentColor; }
.eyebrow.light { color: #68e5dc; }
.section-heading { max-width: 750px; }
.section-heading.centered { margin: 0 auto clamp(2.75rem, 5vw, 4.5rem); text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:last-child { max-width: 650px; margin: 1.25rem auto 0; color: var(--muted); font-size: 1.08rem; }

.button { display: inline-flex; min-height: 3.25rem; align-items: center; justify-content: center; gap: 0.65rem; padding: 0.85rem 1.25rem; border: 1px solid transparent; border-radius: 0.75rem; font-family: "Manrope", sans-serif; font-size: 0.92rem; font-weight: 800; line-height: 1.2; transition: transform 160ms var(--ease-out), background-color 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(0.97); }
.button svg { width: 1.1rem; height: 1.1rem; }
.button-gold { color: var(--navy-950); background: var(--gold-400); box-shadow: 0 12px 30px rgba(255, 181, 71, 0.22); }
.button-gold:hover { background: #ffc368; box-shadow: 0 15px 34px rgba(255, 181, 71, 0.32); }
.button-glass { color: var(--white); border-color: rgba(255, 255, 255, 0.38); background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(12px); }
.button-glass:hover { background: rgba(255, 255, 255, 0.17); }
.button-navy { color: var(--white); background: var(--navy-900); }
.button-navy:hover { background: var(--teal-600); }
.text-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.4rem; color: var(--teal-600); font-weight: 800; }
.text-link span { transition: transform 180ms var(--ease-out); }
.text-link:hover span { transform: translateX(5px); }
.text-link.light { color: var(--white); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header-height); color: var(--navy-900); background: rgba(255, 255, 255, 0.97); border-bottom: 1px solid rgba(16, 42, 67, 0.1); box-shadow: 0 6px 24px rgba(7, 26, 45, 0.08); backdrop-filter: blur(15px); transition: background-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out); }
.site-header.scrolled { color: var(--navy-900); background: rgba(255, 255, 255, 0.98); border-color: rgba(16, 42, 67, 0.12); box-shadow: 0 10px 30px rgba(7, 26, 45, 0.12); }
.nav-shell { display: grid; width: min(100% - 2rem, 1420px); height: 100%; margin-inline: auto; grid-template-columns: 240px 1fr auto; align-items: center; gap: 2rem; }
.brand { display: flex; width: 225px; height: 60px; align-items: center; }
.brand img { width: 100%; height: auto; filter: drop-shadow(0 2px 5px rgba(7, 26, 45, 0.08)); }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: clamp(0.8rem, 1.6vw, 1.7rem); }
.primary-nav a { position: relative; padding: 0.4rem 0; font-size: 0.9rem; font-weight: 700; white-space: nowrap; }
.primary-nav a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; content: ""; background: var(--teal-400); transform: scaleX(0); transform-origin: right; transition: transform 200ms var(--ease-out); }
.primary-nav a:hover::after, .primary-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.header-call { display: flex; align-items: center; gap: 0.65rem; padding: 0.55rem 0.85rem; border: 1px solid var(--navy-900); border-radius: 0.75rem; color: var(--white); background: var(--navy-900); font-family: "Manrope", sans-serif; font-weight: 800; line-height: 1.15; transition: transform 160ms var(--ease-out), background 180ms var(--ease-out); }
.scrolled .header-call { color: var(--white); border-color: var(--navy-900); background: var(--navy-900); }
.header-call:hover { transform: translateY(-2px); background: var(--teal-600); }
.header-call svg { width: 1.1rem; height: 1.1rem; }
.header-call small { display: block; margin-bottom: 0.12rem; color: var(--gold-400); font-family: "DM Sans", sans-serif; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0.8rem; border: 1px solid currentColor; border-radius: 0.6rem; background: transparent; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 4px 0; background: currentColor; transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero { position: relative; display: flex; min-height: 810px; align-items: flex-end; overflow: hidden; color: var(--white); background: var(--navy-950); }
.hero-image, .hero-overlay, .hero-grain { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(5, 20, 36, 0.95) 0%, rgba(7, 32, 52, 0.76) 42%, rgba(4, 25, 40, 0.28) 70%, rgba(4, 25, 40, 0.1) 100%), linear-gradient(0deg, rgba(4, 20, 34, 0.72) 0%, transparent 45%); }
.hero-grain { opacity: 0.13; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E"); pointer-events: none; }
.hero-layout { position: relative; z-index: 2; display: grid; padding-top: calc(var(--header-height) + 4rem); padding-bottom: 5.25rem; grid-template-columns: minmax(0, 1fr) 280px; align-items: end; gap: 3rem; }
.hero h1 { margin-bottom: 1.4rem; text-wrap: balance; }
.hero h1::after { display: inline-block; width: 0.17em; height: 0.17em; margin-left: 0.06em; border-radius: 50%; content: ""; background: var(--gold-400); }
.hero-lede { max-width: 720px; color: rgba(255,255,255,0.82); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.availability-card { padding: 1.4rem; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-md); background: rgba(7, 26, 45, 0.65); box-shadow: var(--shadow-lg); backdrop-filter: blur(14px); }
.status-line { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 1.4rem; color: #a7f3eb; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.status-dot { width: 0.62rem; height: 0.62rem; border: 2px solid rgba(0,199,183,0.3); border-radius: 50%; background: var(--teal-400); box-shadow: 0 0 0 5px rgba(0,199,183,0.14); }
.availability-card strong { display: block; font-family: "Manrope", sans-serif; font-size: 1.6rem; }
.availability-card p { margin: 0.55rem 0 1.1rem; color: rgba(255,255,255,0.72); font-size: 0.92rem; line-height: 1.5; }
.availability-card a { color: var(--gold-400); font-size: 0.85rem; font-weight: 800; }

.trust-strip { position: relative; z-index: 3; color: var(--white); background: var(--navy-950); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: flex; min-height: 112px; align-items: center; gap: 1rem; padding: 1rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.1); }
.trust-grid > div:last-child { border-right: 0; }
.trust-icon { display: flex; width: 2.7rem; height: 2.7rem; flex: 0 0 auto; align-items: center; justify-content: center; border: 1px solid rgba(0,199,183,0.32); border-radius: 50%; color: var(--teal-400); font-family: "Manrope", sans-serif; font-size: 0.84rem; font-weight: 800; }
.trust-icon svg { width: 1.2rem; height: 1.2rem; }
.trust-grid strong, .trust-grid small { display: block; }
.trust-grid strong { font-family: "Manrope", sans-serif; font-size: 0.9rem; }
.trust-grid small { margin-top: 0.15rem; color: rgba(255,255,255,0.55); font-size: 0.74rem; }

.about-section { background: var(--cream); }
.split-layout { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr); align-items: center; gap: clamp(3rem, 8vw, 7rem); }
.image-composition { position: relative; padding: 0 1.5rem 1.5rem 0; }
.image-composition::before { position: absolute; z-index: 0; right: 0; bottom: 0; width: 60%; height: 65%; border-radius: 0 0 var(--radius-xl) 0; content: ""; background: var(--teal-400); }
.image-composition::after { position: absolute; top: -1.25rem; left: -1.25rem; width: 7rem; height: 7rem; content: ""; border-top: 2px solid var(--gold-400); border-left: 2px solid var(--gold-400); }
.image-composition img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/4.4; border-radius: 0.4rem var(--radius-xl) var(--radius-xl) var(--radius-xl); object-fit: cover; box-shadow: var(--shadow-lg); }
.image-badge { position: absolute; z-index: 2; right: -1rem; bottom: 3rem; padding: 1rem 1.2rem; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow-sm); }
.image-badge strong, .image-badge span { display: block; }
.image-badge strong { font-family: "Manrope", sans-serif; }
.image-badge span { color: rgba(255,255,255,0.65); font-size: 0.76rem; }
.section-copy .lead { margin-top: 1.5rem; color: var(--navy-800); font-size: 1.15rem; font-weight: 600; }
.section-copy > p:not(.eyebrow):not(.lead) { margin-top: 1rem; color: var(--muted); }

.why-section { position: relative; overflow: hidden; background: var(--white); }
.why-section::before { position: absolute; top: -12rem; right: -10rem; width: 34rem; height: 34rem; border: 6rem solid var(--mist); border-radius: 50%; content: ""; opacity: 0.65; }
.benefit-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.benefit-card { position: relative; min-height: 255px; padding: 2rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,0.9); transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), border-color 200ms var(--ease-out); }
.benefit-card:hover { transform: translateY(-6px); border-color: rgba(0,199,183,0.5); box-shadow: var(--shadow-sm); }
.card-number { display: block; margin-bottom: 2.5rem; color: var(--teal-600); font-family: "Manrope", sans-serif; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; }
.benefit-card h3 { margin-bottom: 0.75rem; color: var(--navy-900); }
.benefit-card p { color: var(--muted); font-size: 0.94rem; line-height: 1.6; }

.services-section { color: var(--white); background: var(--navy-900); }
.services-intro { display: grid; grid-template-columns: 1fr 0.65fr; align-items: end; gap: 3rem; }
.services-intro .eyebrow { color: var(--teal-400); }
.services-intro > p { color: rgba(255,255,255,0.66); }
.service-jump { display: flex; margin: 2.5rem 0 2rem; padding: 1rem 0; flex-wrap: wrap; align-items: center; gap: 0.55rem; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.service-jump span { margin-right: 0.5rem; color: rgba(255,255,255,0.5); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.service-jump a { padding: 0.35rem 0.65rem; border: 1px solid rgba(255,255,255,0.14); border-radius: 100px; color: rgba(255,255,255,0.78); font-size: 0.75rem; transition: background 180ms var(--ease-out), color 180ms var(--ease-out); }
.service-jump a:hover { color: var(--navy-950); background: var(--teal-400); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card { position: relative; min-height: 325px; padding: 1.8rem; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); background: rgba(255,255,255,0.055); transition: transform 200ms var(--ease-out), border-color 200ms var(--ease-out), background 200ms var(--ease-out); }
.service-card:hover { transform: translateY(-5px); border-color: rgba(0,199,183,0.52); background: rgba(255,255,255,0.085); }
.service-card > * { position: relative; z-index: 1; }
.service-card > .service-photo { z-index: 0; width: calc(100% + 3.6rem); height: 165px; margin: -1.8rem -1.8rem 1.45rem; object-fit: cover; }
.service-card:not(.service-featured) .service-icon { position: absolute; z-index: 2; top: 136px; right: 1.15rem; margin: 0; color: var(--navy-900); background: var(--gold-400); box-shadow: 0 10px 24px rgba(7,26,45,0.22); }
.service-card::after { position: absolute; right: -3.5rem; bottom: -4.2rem; width: 10rem; height: 10rem; border: 1px solid rgba(0,199,183,0.2); border-radius: 50%; content: ""; transition: transform 300ms var(--ease-out); }
.service-card:hover::after { transform: scale(1.15); }
.service-icon { display: flex; width: 3.2rem; height: 3.2rem; align-items: center; justify-content: center; margin-bottom: 1.8rem; border-radius: 50%; color: var(--teal-400); background: rgba(0,199,183,0.09); }
.service-icon svg { width: 1.55rem; height: 1.55rem; }
.service-index { display: block; margin-bottom: 0.7rem; color: var(--teal-400); font-size: 0.71rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.service-card h3 { margin-bottom: 0.8rem; }
.service-card p { margin-bottom: 1.4rem; color: rgba(255,255,255,0.63); font-size: 0.92rem; line-height: 1.55; }
.service-card a { display: inline-flex; gap: 0.4rem; color: var(--gold-400); font-size: 0.84rem; font-weight: 800; }
.service-featured { display: grid; min-height: 405px; padding: 0; grid-column: span 2; grid-template-columns: 1.15fr 1fr; background: #12324e; }
.service-featured:hover { background: #173d59; }
.service-featured::after { display: none; }
.service-featured > .service-photo { width: 100%; height: 100%; min-height: 405px; margin: 0; object-fit: cover; }
.service-featured .service-content { display: flex; padding: 2.3rem; flex-direction: column; justify-content: center; }
.dark-card { background: linear-gradient(145deg, #008f86, #006f6b); }
.dark-card .service-index, .dark-card a, .dark-card .service-icon { color: #ffe1a6; }
.dark-card p { color: rgba(255,255,255,0.8); }

.emergency-banner { padding: 3.4rem 0; color: var(--white); background: linear-gradient(120deg, var(--teal-600), #086f78 55%, var(--navy-800)); }
.emergency-layout { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3rem; }
.emergency-layout h2 { max-width: 760px; font-size: clamp(2rem, 4vw, 3.3rem); }
.emergency-action { display: flex; flex-direction: column; align-items: center; }
.emergency-phone { margin-bottom: 0.7rem; font-family: "Manrope", sans-serif; font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 800; white-space: nowrap; }

.process-section { background: var(--mist); }
.process-grid { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(4, 1fr); counter-reset: process; list-style: none; }
.process-grid li { position: relative; padding: 1.7rem 2rem 1rem 1.7rem; border-left: 1px solid #c9d8d8; }
.process-grid li:last-child { border-right: 1px solid #c9d8d8; }
.process-grid li > span { display: flex; width: 2.8rem; height: 2.8rem; align-items: center; justify-content: center; margin-bottom: 2.8rem; border-radius: 50%; color: var(--white); background: var(--navy-900); font-family: "Manrope", sans-serif; font-size: 0.75rem; font-weight: 800; box-shadow: 0 0 0 8px var(--mist), 0 0 0 9px #c9d8d8; }
.process-grid h3 { margin-bottom: 0.7rem; color: var(--navy-900); }
.process-grid p { color: var(--muted); font-size: 0.9rem; }

.area-section { background: var(--cream); }
.area-layout { display: grid; grid-template-columns: 0.78fr 1.22fr; align-items: center; gap: clamp(2.5rem, 6vw, 6rem); }
.area-copy > p:not(.eyebrow):not(.area-note) { margin-top: 1.3rem; color: var(--muted); }
.neighborhood-list { display: flex; margin: 1.6rem 0; flex-wrap: wrap; gap: 0.5rem; }
.neighborhood-list a { padding: 0.38rem 0.7rem; border: 1px solid #ccd9d7; border-radius: 100px; color: var(--navy-800); background: rgba(255,255,255,0.58); font-size: 0.77rem; font-weight: 700; }
.neighborhood-list a:hover { color: var(--white); background: var(--teal-600); }
.area-note { padding: 1rem 1.1rem; border-left: 4px solid var(--gold-400); background: rgba(255,255,255,0.72); font-size: 0.9rem; }
.area-note a { color: var(--teal-600); }
.area-copy address { margin-top: 1.25rem; color: var(--navy-700); font-size: 0.9rem; font-style: normal; }
.area-photo { width: 100%; height: 210px; margin-top: 1.4rem; border-radius: var(--radius-md); object-fit: cover; box-shadow: var(--shadow-sm); }
.map-card { overflow: hidden; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-lg); }
.map-top { display: flex; min-height: 60px; align-items: center; justify-content: space-between; padding: 0.8rem 1.2rem; color: var(--white); background: var(--navy-900); font-family: "Manrope", sans-serif; font-size: 0.9rem; font-weight: 800; }
.map-top a { color: var(--gold-400); }
.map-card iframe { display: block; width: 100%; height: 480px; border: 0; }
.map-card noscript p { padding: 1rem; }

.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 0.67fr 1.33fr; align-items: start; gap: clamp(3rem, 7vw, 7rem); }
.faq-intro { position: sticky; top: calc(var(--header-height) + 2rem); }
.faq-intro > p:not(.eyebrow) { margin: 1.2rem 0 1.7rem; color: var(--muted); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button { display: grid; width: 100%; padding: 1.45rem 0; border: 0; background: transparent; grid-template-columns: 1fr 2rem; align-items: center; gap: 1rem; text-align: left; font-family: "Manrope", sans-serif; font-weight: 700; }
.faq-item button span { position: relative; width: 1.8rem; height: 1.8rem; border-radius: 50%; background: var(--mist); }
.faq-item button span::before, .faq-item button span::after { position: absolute; top: 50%; left: 50%; width: 0.75rem; height: 1.5px; content: ""; background: var(--navy-800); transform: translate(-50%, -50%); transition: transform 180ms var(--ease-out); }
.faq-item button span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item button[aria-expanded="true"] { color: var(--teal-600); }
.faq-item button[aria-expanded="true"] span::after { transform: translate(-50%, -50%) rotate(0); }
.faq-panel { padding: 0 3rem 1.5rem 0; }
.faq-panel p { color: var(--muted); }

.contact-section { position: relative; overflow: hidden; color: var(--white); background: var(--navy-950); }
.contact-section::before { position: absolute; inset: 0; content: ""; opacity: 0.4; background: radial-gradient(circle at 10% 20%, rgba(0,199,183,0.28), transparent 30%), radial-gradient(circle at 90% 80%, rgba(255,181,71,0.13), transparent 24%); }
.contact-layout { position: relative; display: grid; grid-template-columns: 0.78fr 1.22fr; align-items: start; gap: clamp(3rem, 8vw, 7rem); }
.contact-copy { padding-top: 1.2rem; }
.contact-copy > p:not(.eyebrow) { max-width: 520px; margin-top: 1.2rem; color: rgba(255,255,255,0.66); font-size: 1.05rem; }
.contact-details { display: grid; margin-top: 3rem; gap: 1.5rem; }
.contact-details > div { padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-details small { display: block; margin-bottom: 0.3rem; color: var(--teal-400); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.contact-details a, .contact-details strong { font-family: "Manrope", sans-serif; font-size: 1.15rem; font-weight: 700; }
.contact-details address { font-style: normal; line-height: 1.5; }
.service-form { padding: clamp(1.5rem, 4vw, 2.8rem); border-radius: var(--radius-lg); color: var(--ink); background: var(--white); box-shadow: 0 28px 80px rgba(0,0,0,0.28); }
.form-heading { display: flex; margin-bottom: 1.8rem; align-items: baseline; justify-content: space-between; gap: 1rem; }
.form-heading span { color: var(--teal-600); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.form-heading strong { font-family: "Manrope", sans-serif; font-size: 1.45rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: flex; margin-bottom: 0.4rem; align-items: center; justify-content: space-between; color: var(--navy-900); font-size: 0.84rem; font-weight: 800; }
.field label > span:not(.optional) { color: var(--error); }
.optional { color: #7b8790; font-size: 0.7rem; font-weight: 500; }
.field input, .field select, .field textarea { display: block; width: 100%; border: 1px solid #cbd6d7; border-radius: var(--radius-sm); color: var(--ink); background: #fbfdfd; }
.field input, .field select { height: 3.25rem; padding: 0 0.9rem; }
.field textarea { min-height: 7.5rem; padding: 0.8rem 0.9rem; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8a969d; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(0,199,183,0.2); border-color: var(--teal-600); }
.field [aria-invalid="true"] { border-color: var(--error); }
.field-error { min-height: 1.1rem; margin-top: 0.25rem; color: var(--error); font-size: 0.74rem; line-height: 1.3; }
.honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.consent-field { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 0.75rem; }
.consent-field input { width: 1.2rem; height: 1.2rem; margin: 0.2rem 0 0; accent-color: var(--teal-600); }
.consent-field label { color: #58646d; font-size: 0.73rem; line-height: 1.45; }
.form-status { min-height: 1.5rem; margin-top: 0.6rem; font-size: 0.84rem; font-weight: 700; }
.form-status.error { color: var(--error); }
.form-status.success { color: var(--success); }
.submit-button { width: 100%; margin-top: 0.35rem; border: 0; }
.submit-button[disabled] { opacity: 0.7; cursor: wait; }
.button-arrow { margin-left: auto; }
.form-note { margin-top: 0.7rem; color: #7b8790; font-size: 0.7rem; text-align: center; }

.final-cta { position: relative; min-height: 540px; overflow: hidden; color: var(--white); }
.final-cta > img, .final-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.final-cta > img { object-fit: cover; }
.final-overlay { background: linear-gradient(90deg, rgba(7,26,45,0.94) 0%, rgba(7,26,45,0.72) 52%, rgba(7,26,45,0.18) 100%); }
.final-cta-content { position: relative; z-index: 1; display: flex; min-height: 540px; flex-direction: column; align-items: flex-start; justify-content: center; }
.final-cta h2 { max-width: 700px; }
.final-cta p:not(.eyebrow) { max-width: 600px; margin-top: 1rem; color: rgba(255,255,255,0.72); font-size: 1.08rem; }
.final-cta-content > div { display: flex; margin-top: 1.8rem; flex-wrap: wrap; gap: 0.75rem; }

.site-footer { padding: 4.5rem 0 1.5rem; color: rgba(255,255,255,0.72); background: #051421; }
.footer-grid { display: grid; padding-bottom: 3rem; grid-template-columns: 1.2fr 0.6fr 0.85fr; gap: 3rem; }
.footer-wordmark { display: inline-flex; flex-direction: column; color: var(--white); font-family: "Manrope", sans-serif; line-height: 0.92; letter-spacing: -0.04em; }
.footer-wordmark strong { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.footer-wordmark span { margin-top: 0.5rem; color: var(--gold-400); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.footer-brand p { max-width: 400px; margin-top: 1.2rem; }
.site-footer h2 { margin-bottom: 1rem; color: var(--teal-400); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; }
.site-footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; }
.site-footer a:hover { color: var(--gold-400); }
.site-footer address { font-style: normal; line-height: 1.75; }
.site-footer strong { color: var(--white); }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom > p:first-child { margin-bottom: 1rem; font-size: 0.78rem; }
.disclaimer { max-width: 1120px; color: rgba(255,255,255,0.42); font-size: 0.68rem; line-height: 1.55; }
.mobile-call { display: none; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .nav-shell { grid-template-columns: 210px 1fr auto; gap: 1.2rem; }
  .brand { width: 200px; }
  .primary-nav { gap: 0.85rem; }
  .primary-nav a { font-size: 0.8rem; }
  .header-call span { font-size: 0.78rem; }
}

@media (max-width: 980px) {
  :root { --header-height: 70px; }
  .nav-shell { grid-template-columns: 1fr auto auto; }
  .brand { width: 190px; }
  .menu-toggle { display: block; order: 3; }
  .primary-nav { position: fixed; top: var(--header-height); right: 0; left: 0; display: grid; max-height: calc(100vh - var(--header-height)); padding: 1.2rem 1rem 2rem; overflow: auto; color: var(--navy-900); background: rgba(255,255,255,0.98); box-shadow: 0 20px 40px rgba(7,26,45,0.15); transform: translateY(-120%); visibility: hidden; transition: transform 220ms var(--ease-out), visibility 220ms; }
  .primary-nav.open { transform: translateY(0); visibility: visible; }
  .primary-nav a { padding: 0.75rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .header-call { justify-self: end; }
  .hero { min-height: 780px; }
  .hero-layout { grid-template-columns: 1fr; }
  .availability-card { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .split-layout, .area-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; }
  .benefit-grid, .services-grid { grid-template-columns: 1fr 1fr; }
  .service-featured { grid-column: span 2; }
  .process-grid { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .process-grid li:nth-child(2) { border-right: 1px solid #c9d8d8; }
  .faq-intro { position: static; }
  .faq-intro .button { display: none; }
  .contact-copy { display: grid; grid-template-columns: 1fr 1fr; column-gap: 2rem; }
  .contact-copy .eyebrow, .contact-copy h2 { grid-column: 1 / -1; }
  .contact-details { margin-top: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr 0.7fr 1fr; }
}

@media (max-width: 720px) {
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .container, .nav-shell { width: min(100% - 1.25rem, 1220px); }
  .section { padding: 4.5rem 0; }
  .header-call { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .menu-toggle { order: initial; }
  .brand { width: 185px; }
  .hero { min-height: 760px; align-items: center; }
  .hero-image { object-position: 68% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,20,36,0.96) 0%, rgba(5,20,36,0.8) 68%, rgba(5,20,36,0.48) 100%), linear-gradient(0deg, rgba(4,20,34,0.65), transparent 60%); }
  .hero-layout { padding-top: calc(var(--header-height) + 3rem); padding-bottom: 3.5rem; }
  .hero-actions { display: grid; }
  .hero .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 86px; padding: 0.8rem 0.2rem; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .split-layout { gap: 3.5rem; }
  .image-composition { padding-right: 0.8rem; }
  .image-badge { right: 0; bottom: 2rem; }
  .benefit-grid, .services-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .card-number { margin-bottom: 1.6rem; }
  .services-intro { grid-template-columns: 1fr; gap: 1.25rem; }
  .service-featured { min-height: auto; grid-column: auto; grid-template-columns: 1fr; }
  .service-featured > .service-photo { height: 240px; min-height: 0; }
  .service-card { min-height: auto; }
  .emergency-layout { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .emergency-layout .eyebrow { justify-content: center; }
  .process-grid { grid-template-columns: 1fr; row-gap: 0; }
  .process-grid li, .process-grid li:nth-child(2), .process-grid li:last-child { padding: 1.2rem 0 1.2rem 4.3rem; border: 0; border-left: 1px solid #c9d8d8; }
  .process-grid li > span { position: absolute; top: 1.15rem; left: -1.4rem; margin: 0; }
  .map-card iframe { height: 390px; }
  .contact-copy { display: block; }
  .service-form { border-radius: var(--radius-md); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .mobile-call { position: fixed; z-index: 99; right: 0.75rem; bottom: calc(0.75rem + env(safe-area-inset-bottom)); left: 0.75rem; display: flex; min-height: 58px; align-items: center; justify-content: center; gap: 0.75rem; border: 1px solid rgba(255,255,255,0.18); border-radius: 0.8rem; color: var(--navy-950); background: var(--gold-400); box-shadow: 0 15px 36px rgba(7,26,45,0.28); font-family: "Manrope", sans-serif; line-height: 1.1; }
  .mobile-call svg { width: 1.15rem; height: 1.15rem; }
  .mobile-call strong, .mobile-call small { display: block; }
  .mobile-call small { margin-top: 0.12rem; font-family: "DM Sans", sans-serif; font-size: 0.7rem; font-weight: 700; }
}

@media (max-width: 380px) {
  .brand { width: 165px; }
  h1 { font-size: 2.45rem; }
  .hero-lede { font-size: 0.98rem; }
  .button { padding-inline: 0.8rem; font-size: 0.83rem; }
  .image-badge { max-width: 210px; }
  .service-jump { gap: 0.4rem; }
  .form-heading { align-items: flex-start; flex-direction: column; }
}

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