/* West Coast Services — design system. Clean glass, Temecula sky, since 1982. */
@font-face {
  font-family: "Geist";
  src: url("fonts/Geist-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --navy: #0b2540;
  --navy-deep: #071a2e;
  --blue: #1a3fb0;
  --blue-hover: #12308a;
  --sky: #e9f3fc;
  --sky-deep: #cfe4f7;
  --sun: #f5b942;
  --ink: #15202b;
  --gray: #5b6672;
  --paper: #ffffff;
  --light: #f4f7fa;
  --border: #dde4ec;
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 84px;
  --page-width: 1200px;
  --gutter: clamp(20px, 4.25vw, 64px);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 44px rgba(11, 37, 64, .10);
  --shadow-sm: 0 6px 18px rgba(11, 37, 64, .08);
}
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; }
body { background: var(--paper); color: var(--ink); font: 16px/1.7 var(--font-sans); }
button, input, select, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button { cursor: pointer; }
[hidden] { display: none !important; }
::selection { background: var(--sky-deep); color: var(--ink); }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 4px; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 4px; }
a:hover { text-decoration: underline; }
p { margin-bottom: 1.15rem; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.3rem; }
li { margin-bottom: .45rem; }
h1, h2, h3, h4 { font-weight: 650; line-height: 1.1; letter-spacing: -.03em; text-wrap: balance; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5vw, 4.1rem); margin-bottom: 1.4rem; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); margin-bottom: 1.2rem; }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); margin-bottom: .7rem; letter-spacing: -.02em; }
h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.icon { width: 1.05em; height: 1.05em; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.container { width: 100%; max-width: var(--page-width); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 7vw, 104px); }
.section-light { background: var(--light); }
.section-sky { background: linear-gradient(180deg, var(--sky) 0%, #f7fbfe 100%); }
.section-navy { background: var(--navy); color: #d7e3ef; }
.section-navy :is(h1,h2,h3,h4) { color: #fff; }
.section-navy .eyebrow { color: var(--sun); }
.section-navy a:not(.btn) { color: #fff; }
.section-heading { max-width: 760px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading p { color: var(--gray); font-size: 1.1rem; }
.section-navy .section-heading p { color: #c5d3e2; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; color: var(--blue); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.lead { font-size: 1.15rem; color: var(--gray); }
.skip-link { position: fixed; top: 12px; left: 12px; padding: .8rem 1.2rem; background: #fff; color: var(--ink); z-index: 1000; transform: translateY(-160%); border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }
.prose { max-width: 760px; }
.prose p { color: #3a4550; }
.prose h2 + p, .prose h3 + p { margin-top: 0; }
.prose h3 { margin-top: 1.6rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: .95rem 1.5rem; border-radius: 999px; font-weight: 620; text-decoration: none; border: 1.5px solid transparent; transition: background .2s, color .2s, transform .15s, box-shadow .2s; line-height: 1.2; white-space: nowrap; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(21,115,211,.25); }
.btn-primary:hover { background: var(--blue-hover); color: #fff; }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--navy); color: var(--navy); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-sun { background: var(--sun); color: var(--navy-deep); }
.btn-sun:hover { background: #ffc85e; color: var(--navy-deep); }
.btn-sm { padding: .7rem 1.1rem; font-size: .9rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); border-bottom: 1px solid #edf1f5; backdrop-filter: blur(16px); }
.header-inner { position: relative; max-width: 1400px; margin-inline: auto; padding: 14px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); min-width: 0; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 44px; height: 44px; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-weight: 720; font-size: 1.12rem; letter-spacing: -.02em; white-space: nowrap; }
.brand-tag { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-top: 3px; }
.site-nav ul { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 26px); list-style: none; padding: 0; margin: 0; }
.site-nav li { margin: 0; }
.site-nav a { display: inline-block; padding-block: 8px; color: var(--gray); font-size: .86rem; font-weight: 560; text-decoration: none; white-space: nowrap; transition: color .2s; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--navy); }
.site-nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--blue); text-underline-offset: 8px; text-decoration-thickness: 2px; }
.site-nav .nav-phone { color: var(--navy); font-weight: 680; display: inline-flex; align-items: center; gap: .4rem; }
.site-nav .nav-cta { padding: 11px 18px; background: var(--blue); color: #fff; border-radius: 999px; font-weight: 640; }
.site-nav .nav-cta:hover { background: var(--blue-hover); text-decoration: none; }
.nav-toggle { display: none; align-items: center; gap: .5rem; padding: .6rem .9rem; border: 1px solid var(--border); background: #fff; border-radius: 999px; color: var(--navy); font-weight: 600; font-size: .9rem; }

/* Hero */
.hero { position: relative; overflow: hidden; background: radial-gradient(1200px 600px at 80% -10%, #dbeeff 0%, transparent 60%), linear-gradient(180deg, #f5faff 0%, #ffffff 100%); padding-block: clamp(56px, 8vw, 120px) clamp(48px, 6vw, 90px); }
.hero-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { color: var(--navy); }
.hero h1 .accent { color: var(--blue); }
.hero-sub { font-size: 1.2rem; color: var(--gray); max-width: 560px; margin-bottom: 1.8rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.6rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px 26px; color: var(--gray); font-size: .92rem; font-weight: 540; }
.hero-proof span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-proof .icon { color: var(--blue); }
.hero-visual { position: relative; }
.glass-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; overflow: hidden; }
.glass-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(21,115,211,.06), transparent 45%, rgba(245,185,66,.08)); pointer-events: none; }
.glass-card h3 { margin-bottom: 1rem; }
.glass-list { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: .55rem; }
.glass-list li { display: flex; align-items: flex-start; gap: .6rem; margin: 0; color: #2b3640; }
.glass-list .icon { color: var(--blue); margin-top: .25rem; }
.glass-note { border-top: 1px solid var(--border); padding-top: 1rem; color: var(--gray); font-size: .92rem; display: flex; align-items: center; gap: .6rem; }
.glass-note strong { color: var(--navy); }
.glass-note .icon { color: var(--sun); fill: currentColor; stroke: none; }
.hero-window { position: absolute; right: -110px; bottom: -120px; width: 240px; height: 240px; fill: none; stroke: var(--sky-deep); stroke-width: .6; opacity: .6; pointer-events: none; }

/* Stats strip */
.stats { border-block: 1px solid var(--border); background: #fff; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-block: 28px; }
.stat { display: flex; align-items: center; gap: 14px; }
.stat .icon { width: 30px; height: 30px; color: var(--blue); }
.stat strong { display: block; font-size: 1.35rem; color: var(--navy); letter-spacing: -.02em; line-height: 1.1; }
.stat span { font-size: .88rem; color: var(--gray); }

/* Cards / grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .6rem; transition: transform .2s, box-shadow .2s; }
a.card { text-decoration: none; color: inherit; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); text-decoration: none; }
.card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--sky); color: var(--blue); display: grid; place-items: center; margin-bottom: .4rem; }
.card-icon .icon { width: 24px; height: 24px; }
.card h3 { margin-bottom: .2rem; }
.card p { color: var(--gray); font-size: .97rem; }
.card .line-link { margin-top: auto; padding-top: .6rem; }
.line-link { display: inline-flex; align-items: center; gap: .35rem; font-weight: 640; text-decoration: none; color: var(--blue); }
.line-link:hover { text-decoration: underline; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.check-list li { display: flex; gap: .65rem; align-items: flex-start; margin: 0; }
.check-list .icon { color: var(--blue); margin-top: .3rem; width: 1.1rem; height: 1.1rem; }
.check-list.two-col { grid-template-columns: 1fr 1fr; }

/* Split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split > .prose h2 { margin-top: 0; }
.panel { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(24px, 3vw, 40px); }
.panel h3 { margin-bottom: 1rem; }
.panel-navy { background: var(--navy); color: #d7e3ef; border: none; }
.panel-navy h3, .panel-navy h4 { color: #fff; }
.panel-navy .check-list .icon { color: var(--sun); }
.panel-navy p { color: #c5d3e2; }

/* Story / team */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.person { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.person .avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--sky-deep), var(--sky)); color: var(--navy); display: grid; place-items: center; font-weight: 720; font-size: 1.2rem; margin-bottom: 12px; }
.person strong { display: block; color: var(--navy); }
.person span { color: var(--gray); font-size: .9rem; }

/* Reviews */
.rating-badge { display: inline-flex; align-items: center; gap: .6rem; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: .55rem 1rem; font-weight: 600; color: var(--navy); box-shadow: var(--shadow-sm); }
.stars { display: inline-flex; gap: 2px; color: var(--sun); }
.stars .icon { fill: currentColor; stroke: none; width: 18px; height: 18px; }
.review-themes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.review-theme { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.review-theme .stars { margin-bottom: .7rem; }
.review-theme strong { display: block; color: var(--navy); margin-bottom: .3rem; }
.review-theme p { color: var(--gray); font-size: .95rem; }
.review-widget { border: 1.5px dashed var(--sky-deep); border-radius: var(--radius); padding: 32px; text-align: center; color: var(--gray); background: #fbfdff; }
.review-widget strong { color: var(--navy); display: block; margin-bottom: .3rem; }

/* Service area */
.area-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.area-card { display: flex; align-items: center; gap: .55rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; text-decoration: none; color: var(--navy); font-weight: 600; transition: border-color .2s, transform .15s; }
.area-card .icon { color: var(--blue); }
.area-card:hover { border-color: var(--blue); transform: translateY(-2px); text-decoration: none; }
.area-card[aria-current="page"] { background: var(--sky); border-color: var(--sky-deep); }

/* FAQ */
.faq { max-width: 820px; }
.faq details { border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; padding: 0 20px; margin-bottom: 10px; }
.faq summary { padding: 16px 0; font-weight: 620; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-size: 1.3rem; font-weight: 500; }
.faq details[open] summary::after { content: "–"; }
.faq details > p, .faq details > ul { padding-bottom: 16px; color: #3a4550; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px 24px; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: block; color: var(--blue); font-weight: 720; letter-spacing: .08em; font-size: .8rem; margin-bottom: .7rem; }
.step strong { display: block; color: var(--navy); margin-bottom: .35rem; }
.step p { color: var(--gray); font-size: .95rem; }

/* Closer: quote form + contact */
.closer { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color: #d7e3ef; }
.closer-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.closer h2 { color: #fff; }
.closer .eyebrow { color: var(--sun); }
.closer p { color: #c5d3e2; }
.contact-lines { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .9rem; }
.contact-lines li { display: flex; align-items: flex-start; gap: .75rem; margin: 0; }
.contact-lines .icon { color: var(--sun); margin-top: .3rem; }
.contact-lines a { color: #fff; font-weight: 620; text-decoration: none; }
.contact-lines a:hover { text-decoration: underline; }
.contact-lines span { display: block; color: #a9bacb; font-size: .9rem; }
.contact-lines address { font-style: normal; color: #fff; font-weight: 620; }
.quote-form { background: #fff; color: var(--ink); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow); }
.quote-form h3 { margin-bottom: .3rem; }
.quote-form .form-intro { color: var(--gray); font-size: .95rem; margin-bottom: 1.2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: .82rem; font-weight: 620; color: var(--navy); margin-bottom: .35rem; }
.field input, .field select, .field textarea { width: 100%; padding: .8rem .9rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fbfcfd; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); background: #fff; outline: none; box-shadow: 0 0 0 3px rgba(21,115,211,.15); }
.field textarea { min-height: 96px; resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 16px; }
.form-fine { font-size: .82rem; color: var(--gray); margin-top: .8rem; }
.draft-output { margin-top: 16px; background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; }
.draft-output p { color: var(--ink); font-size: .95rem; }
.draft-output textarea { width: 100%; min-height: 150px; padding: .8rem; border: 1px solid var(--border); border-radius: 8px; background: #fff; font-size: .9rem; margin-block: .6rem; }
.draft-output .copy-status { font-size: .85rem; color: var(--blue); margin-top: .4rem; }

/* Footer */
.site-footer { background: var(--navy-deep); color: #a9bacb; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { max-width: var(--page-width); margin-inline: auto; padding: clamp(40px, 5vw, 64px) var(--gutter) 32px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand-tag { color: var(--sun); }
.footer-desc { margin-top: 14px; font-size: .93rem; }
.footer-heading { color: #fff; font-weight: 650; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .9rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.footer-links li { margin: 0; }
.footer-links a { color: #c5d3e2; text-decoration: none; font-size: .93rem; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-links .footer-count { color: #7f92a6; font-size: .8rem; margin-left: .35rem; }
.footer-area-note { margin-top: .9rem; font-size: .85rem; color: #7f92a6; }
.footer-contact a { color: #fff; font-weight: 620; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.footer-contact p:not(.footer-heading) { font-size: .93rem; margin-bottom: .5rem; }
.footer-contact address { font-style: normal; font-size: .93rem; margin-bottom: .5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px var(--gutter); text-align: center; font-size: .82rem; color: #7f92a6; }
.footer-credits-link { color: #7f92a6; text-decoration: none; }
.footer-credits-link:hover { color: #fff; text-decoration: underline; }
.credits h1 { margin-top: 1rem; }

/* Mobile action bar */
.mobile-bar { display: none; position: fixed; inset: auto 0 0 0; z-index: 90; background: #fff; border-top: 1px solid var(--border); padding: 10px var(--gutter); gap: 8px; box-shadow: 0 -8px 24px rgba(11,37,64,.08); }
.mobile-bar a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .4rem; padding: .8rem .6rem; border-radius: 999px; font-weight: 640; font-size: .88rem; text-decoration: none; }
.mobile-bar .bar-call { background: var(--navy); color: #fff; }
.mobile-bar .bar-text { background: var(--sky); color: var(--navy); }
.mobile-bar .bar-quote { background: var(--blue); color: #fff; }

/* Page hero (interior) */
.page-hero { background: linear-gradient(180deg, #f5faff 0%, #fff 100%); padding-block: clamp(48px, 6vw, 88px) clamp(32px, 4vw, 56px); border-bottom: 1px solid var(--border); }
.page-hero .lead { max-width: 680px; }
.page-hero .hero-cta { margin-top: 1.4rem; margin-bottom: 0; }
.breadcrumb { font-size: .82rem; color: var(--gray); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }

/* Callout */
.callout { display: flex; gap: 16px; align-items: flex-start; background: var(--sky); border: 1px solid var(--sky-deep); border-radius: var(--radius); padding: 20px 22px; }
.callout .icon { color: var(--blue); width: 26px; height: 26px; margin-top: .15rem; }
.callout strong { color: var(--navy); }
.callout p { color: #2b3640; font-size: .97rem; }

/* Photography */
.hero-photo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; background: var(--sky); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo figcaption { position: absolute; left: 16px; right: 16px; bottom: 16px; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; gap: .7rem; color: var(--gray); font-size: .9rem; box-shadow: var(--shadow-sm); }
.hero-photo figcaption strong { color: var(--navy); display: block; }
.hero-photo figcaption .icon { color: var(--sun); fill: currentColor; stroke: none; width: 22px; height: 22px; }
.card-media { margin: -28px -28px 14px; aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; background: var(--sky); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
a.card:hover .card-media img { transform: scale(1.04); }
.photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--sky); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--tall { aspect-ratio: 4 / 5; }
.photo--wide { aspect-ratio: 16 / 10; }
.photo figcaption { padding: 10px 14px; font-size: .85rem; color: var(--gray); background: #fff; border-top: 1px solid var(--border); }
.photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.photo-pair .photo:nth-child(2) { margin-top: 40px; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery figure { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4 / 3; background: var(--sky); }
.gallery figure.span-2 { grid-column: span 2; aspect-ratio: 8 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery figcaption { position: absolute; inset: auto 0 0 0; padding: 26px 14px 12px; color: #fff; font-size: .85rem; font-weight: 600; background: linear-gradient(transparent, rgba(7,26,46,.78)); }
.page-hero--photo { position: relative; color: #fff; border-bottom: none; background: var(--navy); padding-block: clamp(72px, 9vw, 140px) clamp(56px, 6vw, 96px); overflow: hidden; }
.page-hero--photo .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.page-hero--photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,26,46,.92) 0%, rgba(7,26,46,.72) 50%, rgba(7,26,46,.35) 100%); }
.page-hero--photo .container { position: relative; z-index: 1; }
.page-hero--photo h1, .page-hero--photo .lead, .page-hero--photo .breadcrumb, .page-hero--photo .breadcrumb a { color: #fff; }
.page-hero--photo .lead { color: #d7e3ef; }
.page-hero--photo .eyebrow { color: var(--sun); }
.page-hero--photo .btn-secondary { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); }
.page-hero--photo .btn-secondary:hover { background: rgba(255,255,255,.2); }
.logo-img { height: 52px; width: auto; }
.footer-logo { display: inline-block; }
.footer-logo img { height: 44px; width: auto; }

/* Quotes */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.quote-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 26px 22px; display: flex; flex-direction: column; gap: .8rem; box-shadow: var(--shadow-sm); }
.quote-card::before { content: "\201C"; position: absolute; top: 8px; right: 20px; font-size: 5rem; line-height: 1; color: var(--sky-deep); font-weight: 700; pointer-events: none; }
.quote-card blockquote { margin: 0; color: #2b3640; font-size: .98rem; }
.quote-card blockquote p { margin: 0; }
.quote-card .stars { margin-bottom: .2rem; }
.reviewer { display: flex; align-items: center; gap: .7rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border); color: var(--gray); font-size: .88rem; }
.reviewer .avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--sky-deep), var(--sky)); color: var(--navy); display: grid; place-items: center; font-weight: 720; flex: 0 0 auto; }
.reviewer strong { display: block; color: var(--navy); line-height: 1.2; }
.reviewer .meta { display: block; font-size: .82rem; }
.reviewer .platform { margin-left: auto; font-size: .75rem; font-weight: 640; letter-spacing: .04em; color: var(--blue); background: var(--sky); border-radius: 999px; padding: .3rem .65rem; white-space: nowrap; }
.quote-featured { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 0; margin: 0 0 24px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.quote-featured-body { background: #fff; border: 1px solid var(--border); border-right: none; border-radius: var(--radius) 0 0 var(--radius); padding: clamp(28px, 3.5vw, 44px); display: flex; flex-direction: column; gap: 1rem; }
.quote-featured-body blockquote { margin: 0; font-size: clamp(1.15rem, 1.7vw, 1.45rem); line-height: 1.5; color: var(--navy); font-weight: 520; letter-spacing: -.01em; }
.quote-featured-body blockquote p { margin: 0; }
.quote-featured-side { background: var(--navy); color: #c5d3e2; padding: clamp(28px, 3.5vw, 44px); display: flex; flex-direction: column; justify-content: center; gap: .8rem; }
.quote-featured-side strong { color: #fff; font-size: 1.25rem; letter-spacing: -.02em; line-height: 1.2; }
.quote-featured-side p { color: #c5d3e2; }
.quote-featured-side .btn { align-self: flex-start; margin-top: .4rem; }
.section-navy .reviewer, .quote-featured-body .reviewer { border-top-color: var(--border); }

/* Regions */
.region-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.region { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; overflow: hidden; }
.region-media { margin: -20px -20px 16px; aspect-ratio: 16 / 9; background: var(--sky); overflow: hidden; }
.region-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.region h3 { display: flex; align-items: flex-start; gap: .45rem; font-size: 1.02rem; line-height: 1.2; min-height: 2.4em; margin-bottom: .15rem; }
.region h3 .icon { color: var(--blue); margin-top: .1em; }
.region-note { color: var(--gray); font-size: .82rem; line-height: 1.4; min-height: 2.8em; margin-bottom: .7rem; }
.region-cities { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; font-size: .93rem; color: #2b3640; }
.region-cities li { margin: 0; line-height: 1.4; padding: .3rem 0; }
.region-cities a { color: var(--navy); font-weight: 600; text-decoration: none; }
.region-cities a:hover { text-decoration: underline; }
.region-cities a[aria-current="page"] { color: var(--blue); text-decoration: underline; }
.region-more { margin-top: auto; padding-top: .75rem; }
.region-more summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: .5rem; color: var(--blue); font-weight: 640; font-size: .88rem; padding: .55rem 0 0; border-top: 1px solid var(--border); white-space: nowrap; }
.region-more summary::-webkit-details-marker { display: none; }
.region-more summary::before { content: "+"; flex: 0 0 auto; display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--sky); font-size: .95rem; line-height: 1; }
.region-more[open] summary::before { content: "–"; }
.region-more summary .count { margin-left: auto; color: var(--gray); font-weight: 500; }
.region-more .region-cities { margin-top: .5rem; }
.nearby { display: flex; flex-wrap: wrap; gap: 12px; }
.nearby .area-card { flex: 0 0 auto; }
.county-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1rem; }
.county-badges span { background: var(--sky); color: var(--navy); border: 1px solid var(--sky-deep); border-radius: 999px; padding: .4rem .9rem; font-weight: 620; font-size: .9rem; }

/* 404 */
.notfound { text-align: center; padding-block: clamp(80px, 12vw, 160px); }

@media (max-width: 1080px) {
  .grid-4, .team, .review-themes, .steps { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .region-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-featured { grid-template-columns: 1fr; }
  .quote-featured-body { border-right: 1px solid var(--border); border-radius: var(--radius) var(--radius) 0 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 12px var(--gutter) 20px; box-shadow: var(--shadow); }
  .site-nav.nav-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .site-nav a { display: block; padding: 12px 6px; font-size: 1rem; }
  .site-nav .nav-cta, .site-nav .nav-phone { margin-top: 8px; text-align: center; justify-content: center; }
  .hero-layout, .split, .closer-layout, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .check-list.two-col { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
}
@media (max-width: 600px) {
  .grid-4, .team, .review-themes, .steps, .stats-inner, .footer-inner, .form-grid, .region-grid, .photo-pair { grid-template-columns: 1fr; }
  .photo-pair .photo:nth-child(2) { margin-top: 0; }
  .gallery figure.span-2 { grid-column: span 1; aspect-ratio: 4 / 3; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-name { font-size: 1rem; }
  .hero-cta .btn, .page-hero .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card, .area-card { transition: none; }
}
