/* Day and Night Plumbing Solutions — main styles
   Palette pulled from the logo: navy moon, sun orange. */
:root {
	--navy: #0E3B7C;
	--navy-2: #184C98;
	--night: #081A38;
	--night-2: #0F2851;
	--sun: #F5A42D;
	--sun-deep: #E08A0B;
	--sky: #DCEBFA;
	--paper: #F5F8FC;
	--ink: #13213A;
	--muted: #53607A;
	--line: #D6DEEA;
	--white: #fff;
	--display: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
	--body: "Barlow", "Segoe UI", system-ui, sans-serif;
	--r: 6px;
	--wrap: 1200px;
	--head-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--head-h) + 12px); -webkit-text-size-adjust: 100%; }
body { margin: 0; font: 400 1.0625rem/1.6 var(--body); color: var(--ink); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-2); text-underline-offset: 3px; }
a:hover { color: var(--navy); }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; border-radius: 2px; }
h1, h2, h3 { text-wrap: balance; font-family: var(--display); font-weight: 700; line-height: 1.02; margin: 0 0 .5em; color: var(--navy); letter-spacing: -.005em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.9rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.45rem; font-weight: 600; }
p { margin: 0 0 1em; }
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap.narrow { max-width: 760px; }
.sr, .hp { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 0; z-index: 99; background: var(--sun); color: var(--night); padding: .6rem 1rem; }
.skip:focus { left: 1rem; }
.muted { color: var(--muted); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font: 600 1.05rem/1 var(--body); padding: .9rem 1.35rem; border-radius: var(--r); text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 1.1rem 1.6rem; font-size: 1.12rem; }
.btn-sun { background: var(--sun); color: var(--night); }
.btn-sun:hover { background: #FFB84D; color: var(--night); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); color: #fff; }
.btn-outline { border-color: currentColor; color: var(--navy); background: transparent; }
.btn-outline:hover { background: rgba(14,59,124,.07); }
.btn-ghost-light { border-color: rgba(255,255,255,.6); color: #fff; }
.link-u { font-weight: 600; color: var(--navy-2); text-decoration: underline; text-decoration-color: var(--sun); text-decoration-thickness: 2px; text-underline-offset: 5px; }

/* Top bar + header */
.topbar { background: var(--night); color: #C9D6EC; font-size: .92rem; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .45rem 0; }
.topbar p { margin: 0; }
.topbar a { color: #fff; font-weight: 600; text-decoration: none; }
.topbar-meta { display: flex; gap: 1.25rem; }
.status { display: flex; align-items: center; gap: .55rem; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: #3DDC84; box-shadow: 0 0 0 0 rgba(61,220,132,.6); animation: pulse 2.4s infinite; flex: none; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(61,220,132,0); } 100% { box-shadow: 0 0 0 0 rgba(61,220,132,0); } }

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); transition: background .35s, border-color .35s; }
.header-in { display: flex; align-items: center; justify-content: space-between; height: var(--head-h); gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand img { width: 52px; height: 52px; }
.brand .mark-night { display: none; }
body.is-night .brand .mark-day { display: none; }
body.is-night .brand .mark-night { display: block; }
.brand-name { display: flex; flex-direction: column; font-family: var(--display); line-height: 1; color: var(--navy); }
.brand-name span { font-size: 1.55rem; font-weight: 800; transition: color .35s; }
.brand-name small { font-size: .82rem; font-weight: 600; letter-spacing: .06em; color: var(--muted); margin-top: .2rem; transition: color .35s; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.6rem; }
.nav-list > li { position: relative; }
.nav-list a { text-decoration: none; color: var(--ink); font-weight: 600; transition: color .35s; }
.nav-list a:hover { color: var(--navy-2); }
.nav-list .sub { list-style: none; margin: 0; padding: .5rem 0; position: absolute; top: calc(100% + 14px); left: -1rem; min-width: 250px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: 0 18px 40px -18px rgba(8,26,56,.35); opacity: 0; visibility: hidden; transform: translateY(6px); transition: .2s; }
.nav-list .sub::before { content: ""; position: absolute; inset: -16px 0 auto; height: 16px; }
.nav-list .sub a { display: block; padding: .5rem 1.1rem; font-weight: 500; color: var(--ink) !important; }
.nav-list .sub a:hover { background: var(--paper); }
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
.nav-toggle { display: none; }
.nav-meta, .nav-sched { display: none; }

/* Header goes "night" when the hero reaches night, and over dark sections */
body.is-night .site-header { background: #0A1D3F; border-color: rgba(255,255,255,.08); }
body.is-night .brand-name span, body.is-night .nav-list > li > a { color: #fff; }
body.is-night .brand-name small { color: #9FB2D2; }

/* ================= HERO: day → night ================= */
.hero { --t: 0; --tc: 0; --ts: 0; --glow: 0; position: relative; height: 175vh; }
.hero-stage {
	position: sticky; top: var(--head-h); height: calc(100vh - var(--head-h)); height: calc(100svh - var(--head-h)); min-height: 560px; overflow: hidden;
	display: grid; align-items: center; isolation: isolate;
	background: linear-gradient(180deg, #CFE5FB 0%, #F4F9FF 100%);
}
/* night sky fades in over the day sky; a sunset glow peaks in between */
.hero-stage::before, .hero-stage::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-stage::before {
	background: radial-gradient(90% 70% at 72% 105%, rgba(245,164,45,.95) 0%, rgba(232,110,60,.55) 35%, rgba(120,70,140,.25) 60%, transparent 80%);
	opacity: var(--glow);
}
.hero-stage::after {
	background: radial-gradient(90% 70% at 75% 25%, #1D4585 0%, transparent 65%), linear-gradient(180deg, #06142E 0%, #0F2851 100%);
	opacity: var(--ts);
}
.hero.is-static { height: auto; }
.hero.is-static .hero-stage { position: relative; top: 0; height: auto; min-height: 0; padding: 3rem 0 4rem; }
.stars { position: absolute; inset: 0; z-index: -1; -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,.25) 0 45%, #000 60%); mask-image: linear-gradient(90deg, rgba(0,0,0,.25) 0 45%, #000 60%); width: 100%; height: 100%; opacity: var(--t); pointer-events: none; }
.stars circle { fill: #fff; animation: twinkle 3.2s ease-in-out infinite; animation-delay: var(--d); }
@keyframes twinkle { 50% { opacity: .35; } }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; position: relative; }
.hero h1 { font-size: clamp(2.4rem, min(5vw, 8.2vh), 4.2rem); color: color-mix(in srgb, #fff calc(var(--tc) * 100%), var(--navy)); max-width: none; }
.hero-lede { font-size: 1.15rem; max-width: 46ch; color: color-mix(in srgb, #C9D6EC calc(var(--tc) * 100%), var(--muted)); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.2rem; }
.hero .btn-outline { color: color-mix(in srgb, #fff calc(var(--tc) * 100%), var(--navy)); }
.hero-clock { font-weight: 600; color: color-mix(in srgb, var(--sun) calc(var(--tc) * 100%), var(--navy-2)); margin: 0; min-height: 1.6em; }

.hero-mark { position: relative; width: min(100%, 520px, 70vh); aspect-ratio: 1; justify-self: center; }
.lg { position: absolute; inset: 0; width: 100%; height: 100%; }
.lg-day { opacity: calc(1 - var(--tc)); }
.lg-night { opacity: var(--tc); filter: drop-shadow(0 0 calc(var(--tc) * 22px) rgba(255,246,210,.45)); }
/* the sun sets: it turns away, shrinks toward the monogram, and fades out */
.lg-sun { transform-origin: 52.6% 51.4%; transform: rotate(calc(var(--t) * 75deg)) scale(calc(1 - var(--t) * .3)); opacity: calc(1 - var(--t) * 1.9); }
.scroll-hint { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); margin: 0; font-size: .85rem; font-weight: 600; color: color-mix(in srgb, #9FB2D2 calc(var(--t) * 100%), var(--muted)); opacity: calc(1 - var(--t) * 3); }
.scroll-hint::after { content: ""; display: block; width: 2px; height: 26px; margin: .4rem auto 0; background: currentColor; animation: drip 1.8s ease-in-out infinite; transform-origin: top; }
@keyframes drip { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }

/* Facts */
.facts { background: var(--night); color: #fff; border-top: 1px solid rgba(255,255,255,.08); }
.facts-list { list-style: none; margin: 0 auto; padding: 1.8rem 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.facts-list li { padding: 0 1.5rem; border-left: 1px solid rgba(255,255,255,.14); display: flex; flex-direction: column; gap: .15rem; }
.facts-list li:first-child { border-left: 0; padding-left: 0; }
.facts-list strong { font-family: var(--display); font-size: 1.55rem; font-weight: 700; color: var(--sun); line-height: 1.1; }
.facts-list span { color: #B8C7E0; font-size: .96rem; }

/* Services index */
.services { padding: clamp(4rem, 9vw, 7rem) 0; }
.svc-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-areas: "head head" "list preview"; column-gap: 4rem; }
.svc-head { grid-area: head; display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.5rem; border-bottom: 3px solid var(--navy); padding-bottom: 1.2rem; }
.svc-head h2 { margin: 0; max-width: 14ch; }
.svc-head p { margin: 0; color: var(--muted); max-width: 30ch; }
.svc-list { grid-area: list; list-style: none; margin: 0; padding: 0; }
.svc-row { display: grid; grid-template-columns: 1fr; padding: 1.15rem .25rem; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--ink); position: relative; }
.svc-thumb { display: none; }
.svc-name { font-family: var(--display); font-size: clamp(1.7rem, 2.6vw, 2.25rem); font-weight: 700; color: var(--navy); line-height: 1.05; transition: color .2s, transform .25s; }
.svc-short { color: var(--muted); font-size: 1rem; margin-top: .2rem; }
.svc-row::after { content: ""; position: absolute; left: 0; bottom: -1px; height: 3px; width: 0; background: var(--sun); transition: width .35s ease; }
.svc-row:hover::after, .svc-row:focus-visible::after, .svc-row.is-active::after { width: 100%; }
.svc-row:hover .svc-name, .svc-row.is-active .svc-name { transform: translateX(6px); }
.svc-preview { grid-area: preview; margin: 0; position: sticky; top: calc(var(--head-h) + 2rem); align-self: start; aspect-ratio: 4/5; border-radius: 50% 50% var(--r) var(--r) / 38% 38% var(--r) var(--r); overflow: hidden; background: var(--sky); }
.svc-preview img { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s ease, transform .6s ease; }
.svc-preview img.swap { opacity: 0; transform: scale(1.04); }

/* Night sections */
.night { background: var(--night); color: #D3DDEE; }
.night h2, .night h3 { color: #fff; }
.emergency { padding: clamp(4rem, 9vw, 7rem) 0; position: relative; overflow: hidden; }
.emergency::before { content: ""; position: absolute; right: -180px; top: -180px; width: 520px; height: 520px; border-radius: 50%; box-shadow: inset 38px -8px 0 0 rgba(244,241,222,.07); }
.em-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: start; }
.em-lede { font-size: 1.15rem; max-width: 34ch; margin-bottom: 1.8rem; }
.steps { list-style: none; counter-reset: s; margin: 0; padding: 0; display: grid; gap: .25rem; }
.steps li { counter-increment: s; display: grid; grid-template-columns: 3.2rem 1fr; column-gap: 1rem; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.12); }
.steps li::before { content: counter(s); grid-row: span 2; font-family: var(--display); font-size: 2.6rem; font-weight: 800; color: var(--sun); line-height: .9; }
.steps h3 { margin: 0 0 .25rem; font-size: 1.5rem; }
.steps p { margin: 0; }

/* Work gallery */
.work { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--paper); }
.work-head { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; margin-bottom: 2.5rem; }
.work-head h2 { margin: 0; }
.work-head p { margin: 0; color: var(--muted); }
.gallery { columns: 4 240px; column-gap: 12px; }
.g-item { all: unset; display: block; position: relative; margin-bottom: 12px; break-inside: avoid; border-radius: var(--r); overflow: hidden; cursor: zoom-in; background: var(--line); }
.g-item img { width: 100%; height: auto; transition: transform .5s ease; }
.g-item:nth-child(3n+2) img { aspect-ratio: 1; object-fit: cover; }
.g-cap { position: absolute; inset: auto 0 0; padding: 2rem .9rem .8rem; color: #fff; font-size: .92rem; font-weight: 500; background: linear-gradient(transparent, rgba(8,26,56,.85)); transform: translateY(100%); transition: transform .3s ease; }
.g-item:hover img, .g-item:focus-visible img { transform: scale(1.04); }
.g-item:hover .g-cap, .g-item:focus-visible .g-cap { transform: none; }
.g-item:focus-visible { outline: 3px solid var(--sun); outline-offset: 2px; }

.lightbox { border: 0; padding: 0; background: transparent; max-width: min(92vw, 1100px); max-height: 92vh; }
.lightbox::backdrop { background: rgba(4,12,28,.92); }
.lightbox figure { margin: 0; }
.lightbox img { max-height: 82vh; width: auto; margin: 0 auto; border-radius: var(--r); }
.lightbox figcaption { color: #fff; text-align: center; padding: .8rem; }
.lb-close { position: fixed; top: 1rem; right: 1rem; width: 48px; height: 48px; border-radius: 50%; border: 0; background: #fff; font-size: 1.8rem; line-height: 1; cursor: pointer; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split-card { position: relative; min-height: 520px; display: flex; align-items: end; text-decoration: none; color: #fff; overflow: hidden; }
.split-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.split-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,26,56,.05) 30%, rgba(8,26,56,.9)); z-index: 1; }
.split-card:hover img { transform: scale(1.04); }
.split-txt { position: relative; z-index: 2; padding: clamp(1.5rem, 4vw, 3rem); max-width: 520px; }
.split-txt h2 { color: #fff; }
.split-txt p { color: #DCE5F3; }
.split-txt .link-u { color: #fff; }

/* Areas */
.areas { padding: clamp(4rem, 8vw, 6rem) 0; }
.areas-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; }
.area-list { list-style: none; padding: 0; margin: 0 0 1.2rem; columns: 3 160px; column-gap: 2rem; }
.area-list li { padding: .45rem 0; border-bottom: 1px dashed var(--line); font-weight: 500; break-inside: avoid; }

/* FAQ */
.faq { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; padding: 1.15rem 2.5rem 1.15rem 0; font-weight: 600; font-size: 1.12rem; color: var(--ink); position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: ""; position: absolute; right: .4rem; top: 50%; width: 14px; height: 14px; margin-top: -9px; border-right: 2.5px solid var(--navy); border-bottom: 2.5px solid var(--navy); transform: rotate(45deg); transition: transform .25s; }
.faq-list details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-list details p { margin: 0 0 1.2rem; color: var(--muted); max-width: 64ch; }

/* Posts */
.latest { padding: clamp(4rem, 8vw, 6rem) 0; }
.latest-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 2rem; }
.latest-head h2 { margin: 0; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.post-card { display: flex; flex-direction: column; }
.pc-img { display: block; aspect-ratio: 3/2; overflow: hidden; border-radius: var(--r); background: var(--sky); }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .pc-img img { transform: scale(1.04); }
.pc-body { padding-top: 1rem; }
.pc-meta { font-size: .9rem; color: var(--muted); margin: 0 0 .4rem; }
.pc-title { font-size: 1.6rem; line-height: 1.08; margin: 0 0 .5rem; }
.pc-title a { color: var(--navy); text-decoration: none; }
.pc-title a:hover { text-decoration: underline; text-decoration-color: var(--sun); }
.pc-ex { color: var(--muted); margin: 0; }
.pager { margin-top: 3rem; }
.pager .nav-links { display: flex; gap: .5rem; flex-wrap: wrap; }
.pager .page-numbers { padding: .5rem .9rem; border: 1px solid var(--line); border-radius: var(--r); text-decoration: none; }
.pager .current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Closing + form */
.closing { padding: clamp(4rem, 9vw, 7rem) 0; }
.closing-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: start; }
.closing-copy p:not(.closing-phone) { font-size: 1.15rem; max-width: 34ch; }
.closing-phone { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; line-height: 1; margin: 1.5rem 0 0; }
.closing-phone a { color: var(--sun); text-decoration: none; }
.contact-page .closing-phone { margin: 0 0 1.5rem; }
.contact-page .closing-phone a { color: var(--navy); }
.req-form { background: #fff; color: var(--ink); border-radius: var(--r); padding: clamp(1.4rem, 3vw, 2.2rem); display: grid; gap: 1rem; box-shadow: 0 30px 60px -30px rgba(0,0,0,.5); }
.req-h { font-size: 2rem; margin: 0; color: var(--navy) !important; }
.req-sub { margin: -.5rem 0 0; color: var(--muted); font-size: .96rem; }
.req-form label { display: grid; gap: .35rem; font-weight: 600; font-size: .95rem; }
.req-form .opt { font-weight: 400; color: var(--muted); }
.req-form input, .req-form select, .req-form textarea { font: inherit; font-weight: 400; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--r); background: var(--paper); color: var(--ink); width: 100%; }
.req-form input:focus, .req-form select:focus, .req-form textarea:focus { outline: none; border-color: var(--navy-2); background: #fff; box-shadow: 0 0 0 3px rgba(24,76,152,.15); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.req-form .btn { justify-self: start; }
.notice { padding: .8rem 1rem; border-radius: var(--r); margin: 0; font-weight: 600; }
.notice.ok { background: #E3F7EC; color: #11643A; }
.notice.err { background: #FDECEC; color: #9B1C1C; }

/* Inner page heroes */
.page-hero { background: linear-gradient(180deg, #DCEBFA, var(--paper)); padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.page-hero.slim h1 { max-width: 20ch; }
.ph-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3.5rem; align-items: center; }
.page-hero .answer { font-size: 1.18rem; max-width: 60ch; color: var(--ink); }
.ph-img { margin: 0; aspect-ratio: 1; border-radius: 50%; overflow: hidden; box-shadow: 0 0 0 10px #fff, 14px 0 0 10px var(--sun); max-width: 420px; justify-self: center; }
.ph-img img { width: 100%; height: 100%; object-fit: cover; }
.crumbs ol { list-style: none; padding: 0; margin: 0 0 1.2rem; display: flex; flex-wrap: wrap; gap: .4rem; font-size: .9rem; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: #9AA7BD; }
.crumbs a { color: var(--muted); }

.svc-body { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 4rem; padding: clamp(3rem, 7vw, 5rem) 0; }
.prose { max-width: 70ch; }
.prose .lead { font-size: 1.25rem; color: var(--ink); }
.prose h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose img { border-radius: var(--r); }
.prose .dn-answer { background: var(--paper); border-left: 5px solid var(--sun); padding: 1.1rem 1.3rem; border-radius: 0 var(--r) var(--r) 0; font-size: 1.1rem; }
.prose-wrap { padding: 3rem 0 5rem; }
.svc-aside { display: grid; gap: 1.5rem; align-content: start; position: sticky; top: calc(var(--head-h) + 1.5rem); align-self: start; }
.aside-box { border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem; }
.aside-box.night { border-color: var(--night); }
.aside-h { font-size: 1.5rem; margin-bottom: .8rem; }
.checks { list-style: none; margin: 0; padding: 0; }
.checks li { padding: .4rem 0 .4rem 1.8rem; position: relative; }
.checks li::before { content: ""; position: absolute; left: .2rem; top: .75rem; width: .9rem; height: .5rem; border-left: 2.5px solid var(--sun-deep); border-bottom: 2.5px solid var(--sun-deep); transform: rotate(-45deg); }
.aside-links { list-style: none; margin: 0; padding: 0; }
.aside-links li { border-bottom: 1px solid var(--line); }
.aside-links a { display: block; padding: .55rem 0; text-decoration: none; font-weight: 500; }
.aside-links.cols { columns: 2 220px; margin-top: 2rem; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; padding: 4rem 0 6rem; }
.contact-info h2 { font-size: 1.6rem; margin: 1.5rem 0 .3rem; }
.contact-info h2:first-child { margin-top: 0; }

/* Single post */
.post-hero h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); max-width: none; }
.post-img { margin-top: -1.5rem; margin-bottom: 2.5rem; }
.post-img img { border-radius: var(--r); width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post .prose { padding-bottom: 3rem; font-size: 1.12rem; }
.post-cta { margin-top: 3rem; padding: 2rem; border-radius: var(--r); }
.post-cta h2 { margin-top: 0; }

/* Footer */
.site-footer { background: #061430; color: #A9B8D2; padding: 4.5rem 0 0; font-size: .98rem; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr; gap: 3rem; }
.f-brand img { width: 130px; margin-bottom: 1rem; }
.f-h { font-size: 1.35rem; color: #fff; margin-bottom: 1rem; }
.f-list { list-style: none; margin: 0; padding: 0; }
.f-list li { margin-bottom: .45rem; }
.site-footer a { color: #DCE5F3; text-decoration: none; }
.site-footer a:hover { color: var(--sun); }
.f-nap { font-style: normal; margin-bottom: 1rem; line-height: 1.7; }
.f-nap strong { color: #fff; }
.f-hours { color: var(--sun); font-weight: 600; }
.f-social { display: flex; flex-wrap: wrap; gap: 1rem; }
.f-bottom { display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.1); margin-top: 3.5rem; padding: 1.4rem 0; font-size: .88rem; }
.f-bottom p { margin: 0; }
.callbar { display: none; }


/* Top bar: schedule online next to the phone */
.topbar-meta { align-items: center; }
.tb-sched { display: inline-flex; align-items: center; gap: .4rem; padding: .22rem .7rem; border: 1.5px solid var(--sun); border-radius: 999px; color: var(--sun) !important; font-weight: 600; line-height: 1.2; transition: background .2s, color .2s; }
.tb-sched:hover { background: var(--sun); color: var(--night) !important; }
.tb-sched svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.tb-short { display: none; }

/* Why locals trust us */
.trust { padding: clamp(4rem, 9vw, 6.5rem) 0; border-top: 1px solid rgba(255,255,255,.07); }
.trust-head { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; margin-bottom: 3rem; }
.trust-head h2 { margin: 0; font-size: clamp(2.4rem, 4.5vw, 3.6rem); }
.trust-head p { margin: 0; font-size: 1.12rem; max-width: 44ch; }
.trust-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 3rem; }
.trust-grid li { padding: 1.8rem 0; border-top: 1px solid rgba(255,255,255,.14); }
.t-ico { width: 40px; height: 40px; fill: none; stroke: var(--sun); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-bottom: .9rem; }
.trust-grid h3 { font-size: 1.6rem; margin-bottom: .4rem; }
.trust-grid p { margin: 0; color: #B8C7E0; }
.trust-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.5rem; }

/* Google reviews */
.reviews { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--paper); }
.rev-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.rev-head h2 { margin-bottom: .4rem; }
.rev-summary { display: flex; align-items: center; flex-wrap: wrap; gap: .6rem; margin: 0; color: var(--muted); }
.rev-summary strong { font-family: var(--display); font-size: 2.4rem; line-height: 1; color: var(--navy); }
.rev-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.g-mark { width: 26px; height: 26px; flex: none; }
.rev-compact { padding: 3rem 0; }
.rev-compact .rev-head { margin: 0; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.6rem 2rem; }
.rev-compact h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); }
.hero h1 .hl { display: block; white-space: nowrap; }
.stars-row { display: inline-flex; gap: 2px; vertical-align: middle; }
.rev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.2rem; }
.rev-card { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.4rem; display: flex; flex-direction: column; gap: .8rem; }
.rev-card blockquote { margin: 0; flex: 1; }
.rev-card blockquote p { margin: 0; }
.rev-card figcaption { display: flex; align-items: center; gap: .7rem; }
.rev-card figcaption img { width: 36px; height: 36px; border-radius: 50%; }
.rev-card figcaption a { font-weight: 600; color: var(--ink); text-decoration: none; display: block; }
.rev-card figcaption small { color: var(--muted); }
.rev-saved { display: block; columns: 3 300px; column-gap: 1.2rem; }
.rev-saved .rev-card { break-inside: avoid; margin-bottom: 1.2rem; }
.rev-saved .rev-more { display: none; }
.rev-saved.show-all .rev-more { display: flex; animation: revin .4s ease both; }
@keyframes revin { from { opacity: 0; transform: translateY(8px); } }
.rev-top { display: flex; justify-content: space-between; align-items: center; }
.g-mark.sm { width: 18px; height: 18px; }
.rev-card blockquote p { font-size: 1.02rem; line-height: 1.6; }
.rev-av { width: 38px; height: 38px; border-radius: 50%; color: #fff; display: grid; place-items: center; font-weight: 600; font-size: 1.05rem; flex: none; }
.rev-card figcaption strong { display: block; color: var(--ink); }
.rev-morebar { text-align: center; margin-top: .6rem; }
.rev-attr { margin: 1.2rem 0 0; font-size: .85rem; color: var(--muted); }

/* Schedule page */
.sched-aside { display: grid; gap: 2rem; align-content: start; }
.sched-steps { list-style: none; counter-reset: st; margin: 0; padding: 0; }
.sched-steps li { counter-increment: st; position: relative; padding: 0 0 1.4rem 3.4rem; }
.sched-steps li::before { content: counter(st); position: absolute; left: 0; top: -.1rem; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--navy); color: #fff; font: 700 1.3rem/2.4rem var(--display); text-align: center; }
.sched-steps h2 { font-size: 1.5rem; margin: 0 0 .2rem; }
.sched-steps p { margin: 0; color: var(--muted); }
.schedule-page .contact-grid { grid-template-columns: 1.1fr .9fr; }
.schedule-page .req-form { box-shadow: 0 20px 50px -30px rgba(8,26,56,.45); border: 1px solid var(--line); }

/* About page */
.about-logo { position: relative; margin: 0; width: min(100%, 400px); aspect-ratio: 1; justify-self: center; }
.about-logo img { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-sun { animation: slowspin 60s linear infinite; transform-origin: 52.6% 51.4%; }
@keyframes slowspin { to { transform: rotate(360deg); } }
.about-intro { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: start; }
.about-intro .prose h2:first-child { margin-top: 0; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-photos img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r); aspect-ratio: 3/4; }
.about-photos img:first-child { grid-column: span 2; aspect-ratio: 16/10; }
.values { padding: clamp(4rem, 8vw, 6rem) 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 2rem; }
.v-word { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: var(--sun); margin-bottom: .8rem; }
.about-who { padding: clamp(4rem, 8vw, 6rem) 0; }
.who-list { display: grid; gap: 1.8rem; }
.who-list h3 { margin-bottom: .3rem; }
.who-list p { margin: 0; color: var(--muted); }
.who-list > div { padding-bottom: 1.6rem; border-bottom: 1px solid var(--line); }

/* About: facts + owner note */
.prose .about-facts, .about-facts { list-style: none; margin: 1.6rem 0 1.8rem; padding: 0; display: grid; grid-template-columns: repeat(3, auto); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.prose .about-facts li, .about-facts li { margin: 0; padding: 1rem 1.2rem; border-left: 1px solid var(--line); display: flex; flex-direction: column; }
.prose .about-facts li:first-child { border-left: 0; padding-left: 0; }
.about-facts strong { font-family: var(--display); font-size: 1.7rem; line-height: 1.05; color: var(--navy); }
.about-facts span { font-size: .92rem; color: var(--muted); }
.owner-note { padding: 0 0 clamp(4rem, 8vw, 6rem); }
.note-card { position: relative; max-width: 860px; margin: 0 auto; background: linear-gradient(180deg, #EAF3FD, #F7FAFE); border: 1px solid var(--line); border-radius: 10px; padding: clamp(2rem, 5vw, 3.5rem); }
.note-card::after { content: ""; position: absolute; left: clamp(2rem, 5vw, 3.5rem); top: -3px; width: 90px; height: 6px; border-radius: 3px; background: var(--sun); }
.note-quote { width: 44px; height: 33px; fill: var(--sun); opacity: .9; margin-bottom: 1rem; }
.note-card h2 { margin-bottom: 1.2rem; }
.note-body p { font-size: 1.14rem; line-height: 1.7; color: var(--ink); }
.note-es { font-family: var(--display); font-size: 1.6rem !important; font-weight: 700; color: var(--navy) !important; margin-top: .4rem; }
.note-sign { display: flex; align-items: center; gap: .9rem; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.note-sign p { margin: 0; display: flex; flex-direction: column; line-height: 1.3; }
.note-sign strong { font-family: var(--display); font-size: 1.35rem; color: var(--navy); }
.note-sign span { color: var(--muted); font-size: .95rem; }
.note-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.f-es { color: #fff; font-weight: 600; }
/* Hero badges */
.hero-badges { list-style: none; margin: 0 0 1rem; padding: 0; display: flex; flex-wrap: wrap; gap: .45rem 1.1rem; }
.hero-badges li { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; font-size: .98rem; color: color-mix(in srgb, #fff calc(var(--tc) * 100%), var(--navy)); }
.hero-badges svg { width: 17px; height: 17px; fill: none; stroke: var(--sun-deep); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* Free estimate band */
.estimate-band { background: var(--sun); color: var(--night); padding: clamp(2.5rem, 6vw, 3.5rem) 0; }
.est-in { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.est-copy { max-width: 620px; }
.est-kicker { margin: 0 0 .3rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; }
.estimate-band h2 { color: var(--night); margin-bottom: .4rem; }
.est-copy p:last-child { margin: 0; font-size: 1.1rem; }
.est-ctas { display: flex; flex-wrap: wrap; gap: .7rem; }
.estimate-band .btn-outline { color: var(--night); border-color: var(--night); }
.estimate-band .btn-outline:hover { background: rgba(8,26,56,.08); }
.f-lic { color: #fff; font-weight: 600; font-size: 1.05rem; margin-bottom: .6rem; }

.f-links { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ================= Responsive ================= */
@media (max-width: 1080px) {
	.nav-toggle { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border: 0; background: transparent; cursor: pointer; }
	.bars, .bars::before, .bars::after { display: block; width: 26px; height: 2.5px; background: var(--navy); position: relative; transition: .25s; }
	.bars::before, .bars::after { content: ""; position: absolute; left: 0; }
	.bars::before { top: -8px; } .bars::after { top: 8px; }
	body.is-night .bars, body.is-night .bars::before, body.is-night .bars::after { background: #fff; }
	.nav-toggle[aria-expanded="true"] .bars { background: transparent !important; }
	.nav-toggle[aria-expanded="true"] .bars::before { top: 0; transform: rotate(45deg); }
	.nav-toggle[aria-expanded="true"] .bars::after { top: 0; transform: rotate(-45deg); }
	/* Full-screen mobile menu, anchored to the bottom of the sticky header */
	.site-nav { position: absolute; top: 100%; left: 0; right: 0; height: calc(100vh - var(--nav-top, var(--head-h))); height: calc(100dvh - var(--nav-top, var(--head-h))); background: #fff; border-top: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom)); overflow-y: auto; overscroll-behavior: contain; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s ease, transform .25s ease, visibility 0s .25s; }
	.site-nav.open { opacity: 1; visibility: visible; transform: none; transition: opacity .2s ease, transform .25s ease; }
	.nav-list { flex-direction: column; gap: 0; }
	.nav-list > li { border-bottom: 1px solid var(--line); }
	.nav-list > li > a { display: block; padding: 1rem 0; font-family: var(--display); font-size: 1.7rem; font-weight: 700; line-height: 1.1; color: var(--navy) !important; }
	.nav-list .sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: none; min-width: 0; padding: 0 0 1rem; display: grid; grid-template-columns: 1fr 1fr; column-gap: 1rem; }
	.nav-list .sub::before { display: none; }
	.nav-list .sub a { padding: .55rem 0; font-size: 1rem; font-weight: 500; color: var(--ink) !important; background: none !important; line-height: 1.3; }
	.nav-call { margin-top: 1.5rem; width: 100%; padding: 1.1rem; font-size: 1.15rem; }
	.nav-meta { display: block; margin: .9rem 0 0; text-align: center; color: var(--muted); font-size: .95rem; }
	body.nav-open .callbar { display: none; }
	.svc-grid { grid-template-columns: 1fr; grid-template-areas: "head" "list"; }
	.svc-preview { display: none; }
	.svc-row { grid-template-columns: 76px 1fr; column-gap: 1rem; align-items: center; }
	.svc-thumb { display: block; grid-row: span 2; width: 76px; height: 76px; border-radius: 50%; object-fit: cover; }
	.svc-body { grid-template-columns: 1fr; }
	.svc-aside { position: static; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.trust-grid { grid-template-columns: 1fr 1fr; }
	.nav-sched { display: flex; width: 100%; margin-top: .7rem; padding: 1rem; font-size: 1.1rem; }
}
@media (max-width: 820px) {
	:root { --head-h: 66px; }
	.brand img { width: 44px; height: 44px; }
	.brand-name span { font-size: 1.3rem; }
	.topbar-meta .tb-lic { display: none; }
	.topbar a { white-space: nowrap; }
	.topbar-meta { gap: .7rem; }
	.tb-long { display: none; }
	.tb-short { display: inline; }
	.tb-sched { padding: .2rem .6rem; }
	.status { font-size: .86rem; }
	/* Mobile hero: one screen, centered on the logo, slow day-to-night while pinned.
	   The sticky call bar already carries both actions, so the hero buttons step aside. */
	.hero { height: 210vh; height: 210svh; }
	.hero-stage { height: calc(100svh - var(--head-h)); min-height: 0; align-items: center; padding: 0 0 78px; }
	.hero-grid { grid-template-columns: 1fr; gap: .4rem; text-align: center; justify-items: center; }
	.hero-mark { width: min(42vw, 22svh, 185px); order: -1; margin-bottom: .3rem; }
	.hero h1 { font-size: clamp(1.85rem, 8.4vw, 2.4rem); max-width: none; margin: 0 auto .35em; line-height: .98; }
	.hero-lede { font-size: .95rem; line-height: 1.42; max-width: 36ch; margin: 0 auto; }
	.lede-more { display: none; }
	.hero .hero-ctas { display: none; }
	.hero-clock { display: none; }
	.hero-badges { justify-content: center; gap: .2rem .8rem; margin: .55rem 0 0; }
	.hero-badges li { font-size: .84rem; }
	.hero-badges svg { width: 14px; height: 14px; }
	.est-ctas, .est-ctas .btn { width: 100%; }
	.hero.is-static .hero-stage { padding: 2rem 0 3rem; }
	.hero.is-static .hero-ctas { display: flex; justify-content: center; }
	.scroll-hint { display: none; }
	.facts-list { grid-template-columns: 1fr 1fr; row-gap: 1.3rem; padding: 1.5rem 0; }
	.facts-list li { padding: 0 0 0 1rem; }
	.facts-list strong { font-size: 1.28rem; }
	.facts-list span { font-size: .9rem; line-height: 1.35; }
	.facts-list li:nth-child(3) { border-left: 0; padding-left: 0; }
	.svc-head, .work-head { display: block; }
	.svc-head p, .work-head p { margin-top: .8rem; }
	.em-grid, .areas-grid, .faq-grid, .closing-grid, .ph-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
	.ph-img { max-width: 260px; order: -1; }
	.split { grid-template-columns: 1fr; }
	.split-card { min-height: 420px; }
	.post-grid { grid-template-columns: 1fr; }
	.trust-head { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1.5rem; }
	.trust-grid { grid-template-columns: 1fr; }
	.trust-grid li { display: grid; grid-template-columns: 44px 1fr; column-gap: 1rem; padding: 1.3rem 0; }
	.t-ico { grid-row: span 2; width: 34px; height: 34px; margin: .1rem 0 0; }
	.trust-grid h3 { font-size: 1.4rem; }
	.trust-cta .btn { flex: 1 1 100%; }
	.rev-actions { width: 100%; }
	.rev-saved:not(.show-all) .rev-card:nth-child(n+4) { display: none; }
	.rev-actions .btn { flex: 1 1 auto; }
	.about-grid, .values-grid, .schedule-page .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
	.about-logo { width: min(64vw, 260px); order: -1; }
	.prose .about-facts { grid-template-columns: 1fr; }
	.prose .about-facts li { border-left: 0; padding: .8rem 0; border-top: 1px solid var(--line); }
	.prose .about-facts li:first-child { border-top: 0; }
	.note-cta .btn { flex: 1 1 100%; }
	.f-row { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
	.f-bottom { flex-direction: column; padding-bottom: 5.5rem; }
	.callbar { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; position: fixed; inset: auto 0 0; z-index: 60; padding: .7rem .8rem calc(.7rem + env(safe-area-inset-bottom)); background: rgba(8,26,56,.96); backdrop-filter: blur(8px); }
	.callbar .btn { padding: .95rem .5rem; }
}
@media (max-width: 480px) {
	.status span:last-child { font-size: .84rem; }
	.gallery { columns: 2 140px; }
}

/* Motion preferences: no pinning, no scroll animation, static "day" state */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.hero { height: auto; }
	.hero-stage { position: relative; top: 0; min-height: 0; padding: 4rem 0; height: auto; }
	.scroll-hint, .stars { display: none; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}
