/* =========================================================
   Siana Remodeling LLC  |  demo site stylesheet
   Order: tokens > base > nav/footer > components > pages >
          desktop breakpoints > reduced motion > MOBILE (last, add-only)
   ========================================================= */

/* ---------- tokens ---------- */
:root {
  /* palette, taken from the logo */
  --navy: #1B2A4A;
  --navy-deep: #0E1730;
  --navy-soft: #25365C;
  --gold: #C9A24A;
  --gold-deep: #A88232;
  --gold-soft: #EAD9A8;
  --paper: #FBF7F2;      /* the logo's own background */
  --paper-2: #F4EEE3;
  --stone: #EFE9DF;
  --line: #E2DBCD;
  --line-strong: #CFC5B2;
  --ink: #141C2E;
  --muted: #5C6478;
  --white: #FFFFFF;
  --ok: #2F7D4F;
  --err: #A63D2F;

  /* type */
  --display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --body: "Albert Sans", "Helvetica Neue", Arial, sans-serif;

  /* layout */
  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4.5rem, 9vw, 7.5rem);
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 1px 2px rgba(20, 28, 46, .06), 0 12px 32px -12px rgba(20, 28, 46, .18);
  --shadow-lg: 0 2px 4px rgba(20, 28, 46, .08), 0 30px 60px -24px rgba(20, 28, 46, .35);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --nav-h: 84px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
figure, blockquote { margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::selection { background: var(--gold-soft); color: var(--navy-deep); }

h1, h2, h3, h4, .display {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.012em;
  margin: 0 0 .6em;
  color: var(--navy-deep);
  font-variation-settings: "opsz" 40;
}
h1, .h1 { font-size: clamp(2.5rem, 5.4vw, 4.4rem); }
h2, .h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3, .h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.2; }
h4, .h4 { font-size: 1.125rem; font-family: var(--body); font-weight: 600; letter-spacing: 0; }
em.ital { font-style: italic; font-weight: 400; color: var(--gold-deep); }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.section-pad { padding-block: var(--section); }
.section-pad-sm { padding-block: calc(var(--section) * .62); }
.lede { font-size: clamp(1.125rem, 1.5vw, 1.3rem); line-height: 1.55; color: var(--muted); max-width: 60ch; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* eyebrow: small caps + short gold rule, echoing the logo wordmark */
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--body); font-size: .74rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep);
  margin: 0 0 1.1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.eyebrow.on-dark { color: var(--gold); }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after { content: ""; width: 28px; height: 1px; background: var(--gold); }

/* gold diamond rule, from the logo's divider */
.rule { display: flex; align-items: center; gap: 12px; margin: 1.25rem 0; }
.rule::before, .rule::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.rule::after { background: linear-gradient(90deg, var(--gold), transparent); }
.rule span { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }
.rule.short::before, .rule.short::after { flex: 0 0 48px; }
.rule.left { justify-content: flex-start; }
.rule.left::before { display: none; }
.rule.left::after { flex: 0 0 64px; }

/* section heads */
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.split { max-width: none; display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem 4rem; align-items: end; }
.section-head.split .lede { margin: 0; }
.section-head h2 { margin-bottom: .4em; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 52px; padding: .8rem 1.6rem; border-radius: var(--radius);
  font-family: var(--body); font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  border: 1px solid transparent; transition: transform .35s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold); color: var(--navy-deep); box-shadow: 0 10px 24px -12px rgba(201, 162, 74, .8); }
.btn-gold:hover { background: #D6B25E; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-soft); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .5); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .06); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--navy); }
.btn-lg { min-height: 58px; padding: .95rem 2rem; font-size: 1rem; }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

.text-link {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--navy);
  font-size: .95rem; letter-spacing: .01em; position: relative;
}
.text-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: var(--gold); transform: scaleX(.35); transform-origin: left; transition: transform .4s var(--ease); }
.text-link:hover::after { transform: scaleX(1); }
.text-link.on-dark { color: var(--white); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
html:not(.js) .reveal { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }

/* gating: hidden until the owner confirms */
[data-confirm] { display: none !important; }
body.confirmed-lslbc [data-confirm="lslbc"],
body.confirmed-insured [data-confirm="insured"],
body.confirmed-warranty [data-confirm="warranty"],
body.confirmed-financing [data-confirm="financing"] { display: revert !important; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: var(--nav-h); }
.brand { display: flex; align-items: center; gap: .85rem; }
.brand img.mark { width: 46px; height: auto; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name { font-family: var(--display); font-size: 1.5rem; letter-spacing: .12em; color: var(--navy-deep); font-weight: 500; }
.brand .brand-sub { font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-top: .3rem; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); position: relative; padding: .4rem 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--gold-deep); }
.nav-cta { display: flex; align-items: center; gap: 1.4rem; }
.nav-phone { font-weight: 600; font-size: .95rem; color: var(--navy); white-space: nowrap; }
.nav-phone span { color: var(--gold-deep); margin-right: .35rem; }
.nav .btn { min-height: 46px; padding: .6rem 1.2rem; }
.nav-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--line-strong); border-radius: var(--radius); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); position: relative; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--navy); transition: transform .3s var(--ease), top .3s var(--ease); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav.open .nav-toggle span { background: transparent; }
.nav.open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav.open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255, 255, 255, .78); padding-block: calc(var(--section) * .7) 0; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; }
.footer .brand .brand-name { color: var(--white); }
.footer .brand .brand-sub { color: var(--gold); }
.footer p { color: rgba(255, 255, 255, .7); max-width: 40ch; }
.footer h4 { color: var(--white); font-family: var(--body); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer li { margin-bottom: .55rem; }
.footer li a:hover { color: var(--gold); }
.footer .hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: .95rem; border-bottom: 1px solid rgba(255, 255, 255, .08); padding-bottom: .5rem; }
.footer .hours li span:last-child { color: var(--white); }
.footer-bottom { margin-top: 3.5rem; border-top: 1px solid rgba(255, 255, 255, .1); padding: 1.4rem 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .84rem; color: rgba(255, 255, 255, .55); }
.footer-bottom a:hover { color: var(--gold); }
.footer .rating-inline { display: inline-flex; align-items: center; gap: .5rem; color: var(--white); font-weight: 600; margin-top: .6rem; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); letter-spacing: 0; font-size: 1rem; line-height: 1; }
.stars.lg { font-size: 1.35rem; }
.stars.sm { font-size: .85rem; }

/* ---------- components ---------- */

/* rating badge (floating on hero) */
.rating-badge {
  display: inline-grid; grid-template-columns: auto 1fr; gap: .2rem 1rem; align-items: center;
  background: var(--paper); color: var(--navy-deep); padding: 1rem 1.3rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.rating-badge .score { font-family: var(--display); font-size: 2.6rem; line-height: 1; grid-row: span 2; font-weight: 500; }
.rating-badge .stars { margin-top: .15rem; }
.rating-badge .label { font-size: .82rem; color: var(--muted); font-weight: 500; }
.rating-badge .label strong { color: var(--navy-deep); font-weight: 600; }

/* trust strip */
.trust { border-block: 1px solid var(--line); background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.6rem 1.5rem; display: flex; gap: 1rem; align-items: center; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; padding-left: 0; }
.trust-item .num { font-family: var(--display); font-size: 2.2rem; line-height: 1; color: var(--navy-deep); font-weight: 500; flex: none; }
.trust-item .num.gold { color: var(--gold-deep); }
.trust-item .txt { font-size: .9rem; line-height: 1.35; color: var(--muted); }
.trust-item .txt strong { display: block; color: var(--navy-deep); font-weight: 600; }
.trust-item .ico { width: 44px; height: 44px; border: 1px solid var(--gold); display: grid; place-items: center; color: var(--gold-deep); flex: none; transform: rotate(45deg); }
.trust-item .ico svg { transform: rotate(-45deg); width: 20px; height: 20px; }

/* cards */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem;
  position: relative; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card .idx { font-family: var(--display); font-size: 1rem; color: var(--gold-deep); letter-spacing: .08em; margin-bottom: 1.1rem; display: flex; align-items: center; gap: .8rem; }
.card .idx::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .98rem; }
.card .text-link { margin-top: .5rem; }

/* service grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

/* work tiles */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.tile { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--stone); aspect-ratio: 4 / 5; }
.tile.wide { aspect-ratio: 16 / 10; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.tile:hover img { transform: scale(1.04); }
.tile figcaption {
  position: absolute; inset: auto 0 0; padding: 1.4rem 1.3rem 1.2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 23, 48, .45) 35%, rgba(14, 23, 48, .9) 100%); color: var(--white); padding-top: 3.2rem;
  font-size: .92rem; display: flex; justify-content: space-between; align-items: end; gap: 1rem;
}
.tile figcaption .cat { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; display: block; margin-bottom: .25rem; }
.tile figcaption .cap { max-width: 26ch; line-height: 1.35; }
.tile figcaption .zoom { width: 36px; height: 36px; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; display: grid; place-items: center; flex: none; }

/* process */
.process { background: var(--navy); color: rgba(255, 255, 255, .8); position: relative; overflow: hidden; }
.process::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(60% 80% at 100% 0%, rgba(201, 162, 74, .14), transparent 60%),
  radial-gradient(40% 60% at 0% 100%, rgba(255, 255, 255, .05), transparent 60%); pointer-events: none; }
.process h2, .process h3 { color: var(--white); }
.process .lede { color: rgba(255, 255, 255, .7); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem 2rem; counter-reset: step; position: relative; }
.step { position: relative; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .18); }
.step .n { font-family: var(--display); font-size: 3.4rem; line-height: 1; color: var(--gold); font-weight: 400; margin-bottom: 1rem; font-variation-settings: "opsz" 60; }
.step h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.step p { font-size: .96rem; color: rgba(255, 255, 255, .72); }

/* reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.9rem 1.7rem; position: relative; display: flex; flex-direction: column; }
.review::before { content: "\201C"; position: absolute; top: .4rem; right: 1.4rem; font-family: var(--display); font-size: 5rem; line-height: 1; color: var(--gold-soft); }
.review .stars { margin-bottom: 1rem; }
.review blockquote { margin: 0 0 1.4rem; font-family: var(--display); font-size: 1.15rem; line-height: 1.45; color: var(--navy-deep); flex: 1; font-variation-settings: "opsz" 20; }
.review .who { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-size: .86rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 1rem; }
.review .who strong { color: var(--navy-deep); font-weight: 600; display: block; font-size: .95rem; }
.review-summary { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.review-summary .score { font-family: var(--display); font-size: 3.2rem; line-height: 1; color: var(--navy-deep); }
.review-summary .desc { font-size: .95rem; color: var(--muted); }
.review-summary .desc strong { color: var(--navy-deep); }

/* investment tiles */
.invest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.invest-tile { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; border-top: 3px solid var(--gold); }
.invest-tile .from { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.invest-tile .amt { font-family: var(--display); font-size: 2.3rem; line-height: 1.05; color: var(--navy-deep); margin: .35rem 0 .3rem; }
.invest-tile .amt small { font-size: 1rem; font-family: var(--body); color: var(--muted); letter-spacing: 0; }
.invest-tile h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.invest-tile p { font-size: .92rem; color: var(--muted); margin: 0; }

/* split (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split .media { position: relative; }
.split .media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split .media.landscape img { aspect-ratio: 5 / 4; }
.split .media img.portrait { aspect-ratio: 4 / 5; }
.split .media .frame { position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold); border-radius: var(--radius-lg); z-index: -1; }
.split .media .tag { position: absolute; left: -14px; bottom: 28px; background: var(--navy-deep); color: var(--white); padding: .9rem 1.1rem; border-radius: var(--radius); font-size: .8rem; letter-spacing: .06em; box-shadow: var(--shadow-lg); }
.split .media .tag strong { display: block; font-family: var(--display); font-size: 1.6rem; letter-spacing: 0; color: var(--gold); line-height: 1; margin-bottom: .2rem; }
.split.flip .media { order: 2; }
.checks { display: grid; gap: .7rem; margin: 1.4rem 0 1.8rem; }
.checks li { display: flex; gap: .8rem; align-items: flex-start; font-size: 1rem; }
.checks li::before { content: ""; width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); flex: none; margin-top: .55rem; }

/* CTA band */
.cta-band { background: var(--paper-2); border-block: 1px solid var(--line); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border: 1px solid var(--gold); transform: rotate(45deg); opacity: .35; pointer-events: none; }
.cta-band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 300px; height: 300px; border: 1px solid var(--gold); transform: rotate(45deg); opacity: .25; pointer-events: none; }
.cta-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem 4rem; align-items: center; position: relative; }
.cta-inner h2 { margin-bottom: .4em; }
.cta-inner .lede { margin: 0; }
.cta-inner .btn-row { justify-content: flex-end; }
.cta-band.dark { background: var(--navy-deep); border-color: transparent; }
.cta-band.dark h2 { color: var(--white); }
.cta-band.dark .lede { color: rgba(255, 255, 255, .7); }

/* page hero (interior pages) */
.page-hero { position: relative; min-height: min(46vh, 480px); display: grid; align-items: end; color: var(--white); overflow: hidden; background: var(--navy-deep); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14, 23, 48, .15) 0%, rgba(14, 23, 48, .55) 55%, rgba(14, 23, 48, .92) 100%); }
.page-hero .wrap { position: relative; z-index: 1; padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2.5rem, 5vw, 4rem); }
.page-hero h1 { color: var(--white); margin-bottom: .3em; max-width: 16ch; }
.page-hero .lede { color: rgba(255, 255, 255, .78); }
.crumbs { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .6); margin-bottom: 1.2rem; display: flex; gap: .7rem; }
.crumbs a:hover { color: var(--gold); }

/* FAQ */
.faq { max-width: 860px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.2rem 0; font-family: var(--display); font-size: 1.2rem; color: var(--navy-deep); font-variation-settings: "opsz" 20; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--body); color: var(--gold-deep); font-size: 1.5rem; line-height: 1; transition: transform .3s var(--ease); flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .a { padding: 0 0 1.4rem; color: var(--muted); max-width: 70ch; }
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; max-width: none; }

/* pills */
.pills { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill { border: 1px solid var(--line-strong); border-radius: 999px; padding: .55rem 1.05rem; font-size: .9rem; font-weight: 500; color: var(--navy); background: var(--white); transition: all .25s var(--ease); min-height: 44px; display: inline-flex; align-items: center; }
.pill:hover { border-color: var(--navy); }
.pill.active, .pill[aria-pressed="true"], .pill[aria-checked="true"] { background: var(--navy-deep); color: var(--white); border-color: var(--navy-deep); }

/* forms */
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--navy-deep); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: .75rem .95rem; border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: var(--white); transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 74, .22); }
.field.invalid input, .field.invalid select { border-color: var(--err); }
.field .hint { font-size: .8rem; color: var(--err); display: none; }
.field.invalid .hint { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--muted); margin: .6rem 0 0; }
.form-ok { display: none; background: #EAF5EE; border: 1px solid #BFE0CB; color: #1E5C38; padding: 1rem 1.2rem; border-radius: var(--radius); margin-top: 1rem; }
.form-ok.show { display: block; }
.copy-box { display: none; margin-top: 1rem; }
.copy-box.show { display: block; }
.copy-box textarea { width: 100%; min-height: 150px; font-size: .9rem; padding: .8rem; border: 1px solid var(--line-strong); border-radius: var(--radius); }

/* wizard */
.wiz { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 2rem; }
.wiz-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.wiz-head h3 { margin: 0; }
.wiz-prog { display: flex; gap: .5rem; align-items: center; }
.wiz-prog i { width: 26px; height: 3px; background: var(--line); border-radius: 2px; transition: background .3s; }
.wiz-prog i.on { background: var(--gold); }
.wiz-step { display: none; }
.wiz-step.on { display: block; }
.wiz-q { font-family: var(--display); font-size: 1.35rem; color: var(--navy-deep); margin-bottom: 1rem; font-variation-settings: "opsz" 20; }
.wiz-q small { display: block; font-family: var(--body); font-size: .88rem; color: var(--muted); margin-top: .2rem; }
.wiz .pills { margin-bottom: 1.2rem; }
.wiz-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.4rem; }
.wiz-summary { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.2rem; }
.wiz-summary span { background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: .35rem .8rem; font-size: .82rem; color: var(--navy); }
.wiz-summary span b { color: var(--gold-deep); font-weight: 600; }
.wiz-hint { background: var(--paper-2); border-left: 3px solid var(--gold); padding: .8rem 1rem; font-size: .9rem; color: var(--muted); margin-bottom: 1.2rem; border-radius: 0 var(--radius) var(--radius) 0; }
.wiz-hint strong { color: var(--navy-deep); }
.wiz-compact .wiz-q { font-size: 1.2rem; }

/* contact cards */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ccard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem 1.4rem 1.3rem; }
.ccard .k { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: .5rem; }
.ccard .v { font-family: var(--display); font-size: 1.35rem; color: var(--navy-deep); line-height: 1.25; font-variation-settings: "opsz" 20; word-break: break-word; }
.ccard .v a:hover { color: var(--gold-deep); }
.ccard .s { font-size: .88rem; color: var(--muted); margin-top: .4rem; }
.ccard ul li { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; padding: .3rem 0; border-bottom: 1px solid var(--line); }
.ccard ul li:last-child { border-bottom: 0; }
.ccard ul li span:last-child { color: var(--navy-deep); font-weight: 500; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--stone); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; filter: saturate(.85); }

/* disclaimer */
.disclaimer { background: var(--paper-2); border: 1px solid var(--line); border-left: 3px solid var(--gold); padding: 1.2rem 1.4rem; border-radius: 0 var(--radius) var(--radius) 0; font-size: .92rem; color: var(--muted); max-width: 900px; }
.disclaimer strong { color: var(--navy-deep); }

/* ---------- pages ---------- */

/* === page: home === */
.hero {
  position: relative; min-height: calc(100vh - var(--nav-h)); min-height: min(calc(100vh - var(--nav-h)), 860px);
  display: grid; align-items: center; color: var(--white); overflow: hidden; background: var(--navy-deep);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 50%; animation: heroIn 2.4s var(--ease) both; }
.hero-media::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(14, 23, 48, .92) 0%, rgba(14, 23, 48, .72) 42%, rgba(14, 23, 48, .18) 75%, rgba(14, 23, 48, .35) 100%),
  linear-gradient(180deg, rgba(14, 23, 48, .2), rgba(14, 23, 48, .55)); }
@keyframes heroIn { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero .wrap { position: relative; z-index: 1; padding-block: clamp(4rem, 10vw, 7rem); display: grid; grid-template-columns: minmax(0, 620px) 1fr; align-items: end; gap: 2rem; }
.hero h1 { color: var(--white); margin-bottom: .45em; max-width: none; font-size: clamp(2.5rem, 5vw, 4.15rem); animation: rise 1s var(--ease) .15s both; }
.hero .eyebrow { animation: rise .9s var(--ease) both; }
.hero .lede { color: rgba(255, 255, 255, .8); max-width: 48ch; animation: rise 1s var(--ease) .3s both; }
.hero .btn-row { margin-top: 2rem; animation: rise 1s var(--ease) .45s both; }
.hero-side { justify-self: end; align-self: end; animation: rise 1.1s var(--ease) .6s both; }
.hero-side .rating-badge { transform: translateY(0); }
.hero-side .rating-badge .stars { font-size: 1.05rem; }
.hero-note { position: absolute; right: var(--gutter); top: 2rem; z-index: 1; writing-mode: vertical-rl; font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-scroll { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); width: 1px; height: 48px; background: linear-gradient(180deg, var(--gold), transparent); z-index: 1; }

.services-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem 4rem; align-items: end; margin-bottom: 2.8rem; }
.services-intro .lede { margin: 0; }

.featured-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.2rem; }
.featured-head h2 { margin: 0; }
.featured-grid { display: grid; grid-template-columns: 1.15fr 1fr; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 1.4rem; }
.featured-grid .tile { aspect-ratio: auto; height: 100%; min-height: 240px; }
.featured-grid .tile:first-child { grid-row: span 2; aspect-ratio: 4 / 5; }

.oscar-quote { font-family: var(--display); font-size: 1.35rem; line-height: 1.4; color: var(--navy-deep); border-left: 2px solid var(--gold); padding-left: 1.2rem; margin: 1.4rem 0 1.8rem; font-variation-settings: "opsz" 20; }

/* === page: services === */
.anchor-row { display: flex; flex-wrap: wrap; gap: .6rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); background: var(--paper); position: sticky; top: var(--nav-h); z-index: 5; }
.anchor-row a { font-size: .82rem; font-weight: 600; letter-spacing: .06em; padding: .5rem .9rem; border: 1px solid var(--line); border-radius: 999px; color: var(--navy); background: var(--white); }
.anchor-row a:hover { border-color: var(--gold); color: var(--gold-deep); }
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding-block: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line); scroll-margin-top: calc(var(--nav-h) + 80px); }
.service-row:first-of-type { border-top: 0; }
.service-row:nth-child(even) .media { order: 2; }
.service-row .media img { border-radius: var(--radius-lg); aspect-ratio: 5 / 4; object-fit: cover; width: 100%; }
.service-row .meta { display: flex; gap: 2rem; margin: 1.2rem 0 1.5rem; padding: 1rem 0; border-block: 1px solid var(--line); }
.service-row .meta div { font-size: .82rem; color: var(--muted); }
.service-row .meta strong { display: block; color: var(--navy-deep); font-family: var(--display); font-size: 1.25rem; font-weight: 500; }
.service-row h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }

/* === page: work === */
.filter-bar { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; grid-auto-flow: dense; }
.gallery .tile { aspect-ratio: 4 / 5; }
.gallery .tile.wide { aspect-ratio: 16 / 10; grid-column: span 2; }
.gallery .tile.hidden { display: none; }
.gallery .tile button { position: absolute; inset: 0; width: 100%; height: 100%; }
.gallery .tile button:focus-visible { outline-offset: -4px; }
.gallery-empty { display: none; padding: 3rem; text-align: center; color: var(--muted); border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); }
.gallery-empty.show { display: block; }

dialog.lightbox { border: 0; padding: 0; background: transparent; max-width: min(96vw, 1200px); width: auto; }
dialog.lightbox::backdrop { background: rgba(14, 23, 48, .92); backdrop-filter: blur(6px); }
.lb-inner { position: relative; }
.lb-inner img { max-height: 84vh; width: auto; max-width: 96vw; border-radius: var(--radius-lg); margin: 0 auto; }
.lb-cap { color: rgba(255, 255, 255, .85); text-align: center; padding: .9rem 1rem 0; font-size: .95rem; }
.lb-cap .cat { color: var(--gold); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; display: block; margin-bottom: .25rem; }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255, 255, 255, .12); color: var(--white); border: 1px solid rgba(255, 255, 255, .35); display: grid; place-items: center; }
.lb-btn:hover { background: rgba(255, 255, 255, .22); }
.lb-prev { left: -64px; }
.lb-next { right: -64px; }
.lb-close { position: absolute; top: -56px; right: 0; color: var(--white); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; display: flex; align-items: center; gap: .6rem; padding: .5rem; }

/* === page: investment === */
.invest-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.note { padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.note .n { font-family: var(--display); font-size: 2rem; color: var(--gold-deep); line-height: 1; margin-bottom: .8rem; }
.note h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.note p { font-size: .94rem; color: var(--muted); margin: 0; }

.project { padding-block: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line); scroll-margin-top: calc(var(--nav-h) + 24px); }
.project-head { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem 3rem; align-items: end; margin-bottom: 1.8rem; }
.project-head h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: .3em; }
.project-head p { margin: 0; color: var(--muted); max-width: 56ch; }
.project-head .starts { text-align: right; }
.project-head .starts .k { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.project-head .starts .v { font-family: var(--display); font-size: 2.2rem; color: var(--navy-deep); line-height: 1.05; }
.project-head .starts .v small { font-family: var(--body); font-size: .95rem; color: var(--muted); }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.tier { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.5rem 1.4rem; display: flex; flex-direction: column; position: relative; }
.tier:nth-child(2) { border-color: var(--gold); box-shadow: var(--shadow); }
.tier:nth-child(2)::before { content: "Most common"; position: absolute; top: -12px; left: 1.4rem; background: var(--gold); color: var(--navy-deep); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; padding: .3rem .7rem; border-radius: 999px; }
.tier .name { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: .6rem; }
.tier .range { font-family: var(--display); font-size: 1.7rem; color: var(--navy-deep); line-height: 1.1; }
.tier .range small { font-family: var(--body); font-size: .9rem; color: var(--muted); }
.tier .weeks { font-size: .84rem; color: var(--muted); margin: .4rem 0 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.tier ul { display: grid; gap: .5rem; flex: 1; }
.tier li { font-size: .92rem; display: flex; gap: .6rem; align-items: flex-start; color: var(--ink); }
.tier li::before { content: ""; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex: none; margin-top: .5rem; }
.drivers { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; font-size: .88rem; color: var(--muted); align-items: center; }
.drivers .k { font-weight: 600; color: var(--navy-deep); letter-spacing: .04em; font-size: .78rem; text-transform: uppercase; }
.drivers span:not(.k)::before { content: "\25C6"; color: var(--gold); font-size: .55rem; margin-right: .5rem; vertical-align: middle; }

/* === page: about === */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.cred-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.cred { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; background: var(--white); }
.cred .k { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: .5rem; }
.cred .v { font-family: var(--display); font-size: 1.5rem; color: var(--navy-deep); line-height: 1.15; }
.cred p { font-size: .88rem; color: var(--muted); margin: .4rem 0 0; }
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.photo-strip img { aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-lg); width: 100%; }

/* === page: contact === */
.contact-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-layout .side { position: sticky; top: calc(var(--nav-h) + 24px); }

/* === page: 404 === */
.nf { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.nf .code { font-family: var(--display); font-size: clamp(5rem, 14vw, 9rem); line-height: 1; color: var(--gold-soft); }

/* ---------- desktop breakpoints (tablet down to nav collapse) ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-side { justify-self: start; }
  .featured-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .featured-grid .tile, .featured-grid .tile:first-child { grid-row: auto; aspect-ratio: 4 / 5; height: auto; }
  .cred-row { grid-template-columns: 1fr 1fr; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}
@media (max-width: 900px) {
  :root { --nav-h: 72px; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links { display: flex; flex-direction: column; align-items: stretch; position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-bottom: 1px solid var(--line); padding: .6rem var(--gutter) 1.2rem; gap: 0; box-shadow: var(--shadow-lg); }
  .nav.open .nav-links a { padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .nav.open .nav-links a::after { display: none; }
  .nav.open .nav-links a:last-child { border-bottom: 0; }
  .split, .service-row, .contact-layout, .cta-inner, .section-head.split, .services-intro { grid-template-columns: 1fr; }
  .split.flip .media, .service-row:nth-child(even) .media { order: 0; }
  .cta-inner .btn-row { justify-content: flex-start; }
  .contact-layout .side { position: static; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-left: 0; padding-left: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .anchor-row { top: var(--nav-h); }
}

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

/* nav CTA label variants and compact page hero (desktop defaults) */
.btn .btn-short { display: none; }
.page-hero.compact { min-height: min(36vh, 380px); }
.ccard.wide { grid-column: 1 / -1; }
.ccard.wide ul li { font-size: .95rem; }

/* info panel: phone, email, address, hours beside every estimate form */
.info-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.ip-head { padding: 1.5rem 1.5rem 1.1rem; border-bottom: 1px solid var(--line); }
.ip-head h2 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); margin-bottom: .3em; }
.ip-head p { margin: 0; font-size: .92rem; color: var(--muted); }
.ip-row { display: grid; grid-template-columns: 96px 1fr; gap: .6rem 1rem; align-items: start; padding: .95rem 1.5rem; border-bottom: 1px solid var(--line); color: var(--ink); }
.ip-row:last-child { border-bottom: 0; }
a.ip-row { transition: background .2s; }
a.ip-row:hover { background: var(--paper); }
.ip-k { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; padding-top: .35rem; }
.ip-v { font-family: var(--display); font-size: 1.2rem; line-height: 1.3; color: var(--navy-deep); font-variation-settings: "opsz" 20; word-break: break-word; }
.ip-v.sm { font-size: 1rem; }
.ip-v .short { display: none; }
.ip-v .s { display: block; font-family: var(--body); font-size: .82rem; color: var(--muted); margin-top: .15rem; }
.ip-v .s a { color: var(--gold-deep); font-weight: 600; }
.ip-hours ul li { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; padding: .25rem 0; border-bottom: 1px dashed var(--line); }
.ip-hours ul li:last-child { border-bottom: 0; }
.ip-hours ul li span:last-child { color: var(--navy-deep); font-weight: 500; }
.info-panel .map-embed { border: 0; border-radius: 0; border-top: 1px solid var(--line); }
.info-panel .map-embed iframe { height: 220px; }
.info-mini { margin-top: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.info-mini .ip-row { padding: .8rem 1.1rem; grid-template-columns: 84px 1fr; }
.info-mini .ip-v { font-size: 1.05rem; }
.info-mini .ip-hours ul li { font-size: .85rem; }
.contact-layout { grid-template-columns: 400px minmax(0, 1fr); }

/* =====================================================================
   MOBILE, add-only. Appended last so it wins on source order. Nothing
   above this line changed; scripts/verify-desktop.mjs proves it by
   stripping every max-width block and comparing against the baseline.
   Blueprint: mirror desktop at 2-up (services, work, trust, investment,
   reviews), contact form full width with 2-up fields inside, FAQ last.
   ===================================================================== */
@media (max-width: 760px) {
  :root { --section: clamp(3rem, 10vw, 4.5rem); --gutter: 1.1rem; --nav-h: 66px; }
  body { font-size: 1rem; }
  h1, .h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  h2, .h2 { font-size: clamp(1.65rem, 6.4vw, 2.1rem); }
  h3, .h3 { font-size: 1.2rem; }
  .lede { font-size: 1.02rem; }
  .section-head { margin-bottom: 1.6rem; }
  .section-head.split { gap: .8rem; }
  .btn { min-height: 46px; padding: .7rem 1.1rem; font-size: .9rem; }
  .btn-lg { min-height: 50px; padding: .8rem 1.3rem; }
  .btn-row { gap: .6rem; }
  .eyebrow { margin-bottom: .8rem; font-size: .68rem; }

  /* nav */
  .nav-inner { min-height: var(--nav-h); gap: .6rem; }
  .brand { gap: .6rem; }
  .brand img.mark { width: 34px; }
  .brand .brand-name { font-size: 1.15rem; }
  .brand .brand-sub { font-size: .5rem; }
  .nav .btn { min-height: 40px; padding: .5rem .8rem; font-size: .82rem; }
  .btn .btn-full { display: none; }
  .btn .btn-short { display: inline; }
  .nav-toggle { width: 40px; height: 40px; }
  .nav-cta { gap: .5rem; }

  /* home hero */
  .hero { min-height: 0; }
  .hero .wrap { padding-block: 3rem 2.2rem; gap: 1.4rem; }
  .hero-media img { object-position: 62% 50%; animation: none; }
  .hero-media::after { background: linear-gradient(180deg, rgba(14, 23, 48, .58), rgba(14, 23, 48, .86)); }
  .hero h1 { max-width: none; }
  .hero .lede { font-size: 1rem; }
  .hero .btn-row { margin-top: 1.4rem; }
  .hero-note, .hero-scroll { display: none; }
  .hero-side .rating-badge { padding: .7rem 1rem; gap: .1rem .8rem; }
  .hero-side .rating-badge .score { font-size: 2rem; }

  /* trust strip 2-up */
  .trust-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .trust-item { padding: 1rem .8rem; gap: .6rem; border-left: 0; border-top: 1px solid var(--line); flex-direction: column; align-items: flex-start; }
  .trust-item:first-child { padding-left: .8rem; }
  .trust-item:nth-child(-n+2) { border-top: 0; }
  .trust-item:nth-child(even) { border-left: 1px solid var(--line); }
  .trust-item .num { font-size: 1.8rem; }
  .trust-item .txt { font-size: .82rem; }
  .trust-item .ico { width: 34px; height: 34px; margin: 4px 0 2px 5px; }
  .trust-item .ico svg { width: 16px; height: 16px; }

  /* grids go 2-up, mirroring desktop rhythm */
  .services-grid, .work-grid, .reviews-grid, .invest-grid, .values-grid, .invest-notes, .tiers, .cred-row, .gallery, .photo-strip, .steps { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: .8rem; }
  .review, .card, .tier, .invest-tile, .note, .cred { min-width: 0; }
  .review blockquote, .card p, .tier li { overflow-wrap: anywhere; }
  .services-intro { grid-template-columns: 1fr; gap: .6rem; margin-bottom: 1.6rem; }
  .card { padding: 1.1rem 1rem; }
  .card .idx { margin-bottom: .6rem; font-size: .85rem; }
  .card h3 { font-size: 1.08rem; }
  .card p { font-size: .88rem; }
  .card .text-link { font-size: .85rem; }
  .featured-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-rows: auto; gap: .8rem; }
  .featured-grid .tile, .featured-grid .tile:first-child { grid-row: auto; aspect-ratio: 4 / 5; height: auto; min-height: 0; }
  .featured-grid .tile:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .featured-head { flex-direction: column; align-items: flex-start; gap: .6rem; margin-bottom: 1.2rem; }
  .tile figcaption { padding: 2rem .8rem .8rem; font-size: .8rem; }
  .tile figcaption .cat { font-size: .6rem; }
  .tile figcaption .zoom { display: none; }
  .steps { gap: 1.4rem 1rem; }
  .step { padding-top: 1rem; }
  .step .n { font-size: 2.4rem; margin-bottom: .5rem; }
  .step h3 { font-size: 1.08rem; }
  .step p { font-size: .88rem; }
  .review { padding: 1.2rem 1rem 1rem; }
  .review::before { font-size: 3.5rem; right: .9rem; }
  .review blockquote { font-size: .98rem; }
  .review .who { flex-direction: column; gap: .2rem; font-size: .78rem; }
  .review-summary { gap: .8rem; margin-bottom: 1.2rem; }
  .review-summary .score { font-size: 2.4rem; }
  .invest-tile { padding: 1.1rem 1rem; }
  .invest-tile .from { font-size: .62rem; }
  .invest-tile .amt { font-size: 1.7rem; }
  .invest-tile h3 { font-size: 1rem; }
  .invest-tile p { font-size: .85rem; }
  .invest-grid .invest-tile:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .split { grid-template-columns: 1fr; gap: 1.6rem; }
  .split .media .frame { inset: 12px -12px -12px 12px; }
  .split .media .tag { left: -6px; bottom: 16px; padding: .7rem .9rem; font-size: .72rem; }
  .split .media .tag strong { font-size: 1.3rem; }
  .split.flip .media { order: 0; }
  .checks { gap: .5rem; margin: 1rem 0 1.2rem; }
  .checks li { font-size: .95rem; }
  .oscar-quote { font-size: 1.12rem; margin: 1rem 0 1.2rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 1.2rem; }
  .cta-inner .btn-row { justify-content: flex-start; }
  .cta-band::before, .cta-band::after { display: none; }
  .wiz { padding: 1.2rem 1rem; }
  .wiz-head { margin-bottom: 1rem; }
  .wiz-q { font-size: 1.12rem; }
  .pill { padding: .5rem .8rem; font-size: .85rem; }
  .wiz-summary span { font-size: .76rem; }
  .wiz-hint { font-size: .85rem; }

  /* interior page hero */
  .page-hero { min-height: 0; }
  .page-hero .wrap { padding-block: 2.6rem 2rem; }
  .page-hero h1 { max-width: none; }
  .crumbs { margin-bottom: .8rem; font-size: .7rem; }

  /* services */
  .anchor-row { position: static; padding: .8rem 0; }
  .anchor-row a { font-size: .76rem; padding: .4rem .7rem; }
  .service-row { grid-template-columns: 1fr; gap: 1.2rem; padding-block: 2rem; }
  .service-row:nth-child(even) .media { order: 0; }
  .service-row .media img { aspect-ratio: 16 / 10; }
  .service-row .meta { gap: 1.2rem; margin: .9rem 0 1.1rem; padding: .7rem 0; }
  .service-row .meta strong { font-size: 1.1rem; }

  /* work */
  .filter-bar { flex-direction: column; align-items: flex-start; gap: .6rem; margin-bottom: 1.2rem; }
  .gallery .tile.wide { grid-column: 1 / -1; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
  .lb-close { top: -44px; }

  /* investment */
  .project { padding-block: 2rem; }
  .project-head { grid-template-columns: 1fr; gap: .6rem; margin-bottom: 1.1rem; }
  .project-head .starts { text-align: left; display: flex; align-items: baseline; gap: .6rem; }
  .project-head .starts .v { font-size: 1.6rem; }
  .tier { padding: 1.1rem .9rem 1rem; }
  .tier:nth-child(2) { grid-column: 1 / -1; order: -1; margin-top: .6rem; }
  .tier .range { font-size: 1.3rem; }
  .tier .weeks { font-size: .78rem; }
  .tier li { font-size: .84rem; }
  .drivers { font-size: .8rem; gap: .4rem 1rem; margin-top: 1rem; }
  .note { padding: 1rem .9rem; }
  .note .n { font-size: 1.5rem; margin-bottom: .4rem; }
  .note h3 { font-size: 1rem; }
  .note p { font-size: .85rem; }
  .invest-notes .note:last-child:nth-child(odd) { grid-column: 1 / -1; }

  /* about */
  .cred { padding: 1rem .9rem; }
  .cred .v { font-size: 1.25rem; }
  .cred p { font-size: .82rem; }
  .values-grid .card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .map-embed iframe { height: 240px; }

  /* contact: form full width, 2-up fields inside, FAQ stays last */
  .contact-layout { grid-template-columns: 1fr; gap: 1.6rem; }
  .contact-layout .side { position: static; }
  .contact-cards { gap: .7rem; }
  .ccard { padding: 1rem .9rem .9rem; }
  .ccard .v { font-size: 1.15rem; }
  .ccard.wide .v { font-size: 1rem !important; }
  .form-grid { gap: .8rem; }
  .field input, .field select, .field textarea { min-height: 46px; }
  .faq-cols { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 1.05rem; padding: .9rem 0; }

  /* footer 2-up */
  .footer { padding-top: 2.6rem; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.6rem 1.2rem; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer h4 { margin-bottom: .7rem; }
  .footer li { font-size: .92rem; margin-bottom: .4rem; }
  .footer-bottom { flex-direction: column; gap: .4rem; margin-top: 2rem; font-size: .78rem; }

  /* 404 */
  .nf { min-height: 50vh; }
}

/* MOBILE compaction pass (add-only, round 2): reviews swipe row, clamped card copy, shorter media,
   contact info rows above the form with address, hours and map after it. */
@media (max-width: 760px) {
  :root { --section: clamp(2.4rem, 8vw, 3.4rem); }
  .section-pad-sm { padding-block: calc(var(--section) * .7); }
  .hero .wrap { padding-block: 2.4rem 2rem; }
  .hero .lede { font-size: .95rem; }
  .services-intro .lede { font-size: .95rem; }
  .card p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; font-size: .85rem; }
  .card { padding: 1rem .9rem .9rem; }
  .card h3 { font-size: 1.02rem; margin-bottom: .35rem; }
  .featured-grid .tile:not(:first-child) { aspect-ratio: 1 / 1; }
  .step p { font-size: .84rem; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
  .steps { gap: 1.1rem .9rem; }
  /* reviews: one swipeable row instead of tall 2-up cards */
  .reviews-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: .7rem; margin-inline: calc(var(--gutter) * -1); padding: .2rem var(--gutter) .8rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .reviews-grid .review { flex: 0 0 82%; scroll-snap-align: start; padding: 1.1rem 1rem .9rem; }
  .reviews-grid .review blockquote { font-size: .95rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 8; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 1rem; }
  .reviews-grid .review .who { flex-direction: row; justify-content: space-between; padding-top: .7rem; }
  .review-summary { margin-bottom: .8rem; }
  .review-summary .desc::after { content: " Swipe for more."; color: var(--gold-deep); font-weight: 600; }
  .review-summary .score { font-size: 2rem; }
  .invest-tile { padding: .9rem .9rem .8rem; }
  .invest-tile .amt { font-size: 1.5rem; margin: .2rem 0; }
  .split .media img, .split .media img.portrait { aspect-ratio: 16 / 10; }
  .split .media .tag { display: none; }
  .split p:not(.eyebrow):not(.lede):not(.oscar-quote) { font-size: .95rem; }
  .oscar-quote { display: none; }
  .checks li { font-size: .9rem; }
  .cta-band .lede { font-size: .95rem; }
  .footer-grid { gap: 1.2rem 1rem; }
  .footer p { font-size: .9rem; }
  .footer .hours li { font-size: .85rem; padding-bottom: .3rem; }
  /* contact page: rows above the form, where-and-when after it, FAQ last */
  .contact-layout { display: flex; flex-direction: column; gap: 1rem; }
  .info-panel { display: contents; }
  .ip-head { order: 0; padding: 0 0 .4rem; border: 0; }
  .ip-quick { order: 1; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
  .ip-quick .ip-row { display: flex; flex-direction: column; gap: .15rem; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
  .ip-quick .ip-v { font-size: 1rem; }
  .ip-quick .ip-v.sm { font-size: .82rem; }
  .ip-quick .ip-v .s { display: none; }
  .ip-quick .ip-k { padding-top: 0; }
  .contact-layout .wiz-col { order: 2; }
  .ip-where { order: 3; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
  .ip-where .ip-row { grid-template-columns: 78px 1fr; padding: .8rem 1rem; }
  .ip-where .ip-v { font-size: 1rem; }
  .ip-where .map-embed iframe { height: 180px; }
  .info-mini .ip-row { padding: .65rem .9rem; grid-template-columns: 74px 1fr; }
  .info-mini .ip-v { font-size: .98rem; }
}

/* MOBILE tidy (add-only, round 3): email tile shows a short label, hours rows get the full width */
@media (max-width: 760px) {
  .ip-quick .ip-v .long { display: none; }
  .ip-quick .ip-v .short { display: inline; }
  .ip-quick .ip-v.sm { font-size: 1rem; }
  .ip-where .ip-row.ip-hours, .info-mini .ip-row.ip-hours { grid-template-columns: 1fr; gap: .3rem; }
  .ip-hours ul li { font-size: .88rem; }
}
