/* Envision Paint Company - shared stylesheet
   Tokens and components ported from the approved design reference. */
:root {
  --olive: #555501; --olive-hover: #414100; --olive-bright: #6B6B02;
  --tint: #FEFDE8; --tint-border: #D8D8A8; --tint-rule: #EFEDCF;
  --olive-muted: #9C9C4A; --olive-on-dark: #B9B96E;
  --ink: #14140F; --body: #4A4A42; --muted: #6A6A60; --faint: #8A8A80; --meta: #7A7A70;
  --white: #FFFFFF; --off: #F7F7F5; --border: #E4E4DC; --input: #DCDCD2; --divider: #F0F0EA; --dark: #14140F;
  --img-bg: #F2F2EE; --hero-img-bg: #EDEDE8; --card-hover-border: #C9C99A; --dark-border: #55554A;
  --on-dark-body: #D8D8CE; --on-dark-meta: #B9B9AE;
  --star: #E8B62C;
  --head: 'Familjen Grotesk', system-ui, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body { margin: 0; overflow-x: clip; background: var(--white); color: var(--ink); font-family: 'Asap', system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: var(--olive); text-decoration: none; }
a:hover { color: #3F3F00; }
img, svg, video, iframe { max-width: 100%; }
summary::-webkit-details-marker { display: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
strong { font-weight: 600; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Typography */
.eyebrow { margin: 0 0 12px; font-family: var(--head); font-size: 13px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--olive); }
.h1 { margin: 0 0 16px; font-family: var(--head); font-weight: 700; font-size: clamp(34px, 4.2vw, 54px); line-height: 1.04; letter-spacing: -.015em; color: var(--ink); text-wrap: balance; }
.h2 { margin: 0 0 16px; font-family: var(--head); font-weight: 700; font-size: clamp(26px, 3vw, 36px); line-height: 1.12; letter-spacing: -.015em; color: var(--ink); text-wrap: balance; }
.h2-home { margin: 0 0 14px; font-family: var(--head); font-weight: 700; font-size: clamp(30px, 3.4vw, 42px); line-height: 1.1; letter-spacing: -.015em; color: var(--ink); }
.h3 { margin: 26px 0 8px; font-family: var(--head); font-weight: 600; font-size: 20px; color: var(--ink); }
.p { margin: 0 0 16px; font-size: 17px; line-height: 1.7; color: var(--body); text-wrap: pretty; }
.lead { margin: 0; font-size: 17.5px; line-height: 1.6; color: var(--body); text-wrap: pretty; }
.ul { margin: 0 0 18px; padding: 0 0 0 22px; display: grid; gap: 8px; font-size: 16.5px; line-height: 1.6; color: var(--body); }
.link { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 15.5px; font-weight: 600; color: var(--olive); }
.ico { flex: none; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 15px 24px; border-radius: 6px; font-weight: 600; font-size: 16px; white-space: nowrap; transition: background 180ms ease, transform 180ms ease, border-color 180ms ease, color 180ms ease; }
.btn-p { background: var(--olive); color: var(--white); }
.btn-p:hover { background: var(--olive-hover); color: var(--white); transform: translateY(-1px); }
.btn-s { background: var(--white); border: 1px solid var(--input); color: var(--ink); }
.btn-s:hover { border-color: var(--olive); color: var(--ink); }
.btn-od { background: transparent; border: 1px solid var(--dark-border); color: var(--white); }
.btn-od:hover { border-color: var(--tint); color: var(--white); }
.btn-lg { padding: 17px 30px; font-size: 17px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }

/* Header */
.hdr { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.96); -webkit-backdrop-filter: saturate(150%) blur(8px); backdrop-filter: saturate(150%) blur(8px); border-bottom: 1px solid var(--border); transition: box-shadow 220ms ease; }
.hdr[data-scrolled="1"] { box-shadow: 0 8px 28px -18px rgba(20,20,15,.35); }
.hdr-in { height: 74px; display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; margin-right: auto; flex: 0 1 auto; min-width: 0; }
.logo img { display: block; height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 24px; font-size: 14.5px; font-weight: 500; flex: none; }
.nav a { color: var(--body); white-space: nowrap; transition: color 220ms ease; }
.nav a:hover { color: var(--olive); }
.nav-label { display: inline-flex; align-items: center; gap: 5px; padding: 8px 0; font-size: 14.5px; }
.nav-label svg { transition: transform 200ms ease; }
.nav .lbl-compact { display: none; }
.dd { position: relative; }
.dd-panel { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 180ms ease, transform 180ms ease, visibility 180ms; background: var(--white); border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 18px 44px -22px rgba(20,20,15,.4); padding: 10px; z-index: 70; width: max-content; max-width: min(92vw, 640px); }
.dd-panel::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.dd:hover .dd-panel, .dd:focus-within .dd-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dd:hover .nav-label svg, .dd:focus-within .nav-label svg { transform: rotate(180deg); }
.dd-grid { display: grid; gap: 2px 8px; }
.dd-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); min-width: 520px; }
.dd-grid-1 { grid-template-columns: 1fr; min-width: 220px; }
.dd-panel .dd-item { display: block; padding: 9px 12px; border-radius: 6px; font-size: 14.5px; font-weight: 500; color: var(--body); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: background 220ms ease, color 220ms ease; }
.dd-panel .dd-item:hover { background: var(--off); color: var(--olive); }
.dd-panel .dd-all { display: flex; align-items: center; gap: 6px; margin: 8px 12px 2px; padding-top: 10px; border-top: 1px solid var(--divider); font-size: 14px; font-weight: 600; color: var(--olive); white-space: nowrap; }
.hdr-right { display: flex; align-items: center; gap: 14px; flex: none; }
.hdr-phone { display: flex; align-items: center; gap: 7px; font-weight: 600; font-size: 15px; color: var(--ink); white-space: nowrap; transition: color 220ms ease; }
.hdr-phone:hover { color: var(--olive); }
.hdr-icobtn { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--input); background: var(--white); border-radius: 6px; cursor: pointer; color: var(--ink); padding: 0; transition: border-color 220ms ease; }
.hdr-icobtn:hover { border-color: var(--olive); }
.btn-hdr { background: var(--olive); color: var(--white); padding: 12px 20px; border-radius: 6px; font-weight: 600; font-size: 14.5px; letter-spacing: .01em; white-space: nowrap; transition: background 180ms ease, transform 180ms ease; }
.btn-hdr:hover { background: var(--olive-hover); color: var(--white); transform: translateY(-1px); }
.mnav { display: none; border-top: 1px solid var(--border); background: var(--white); padding: 10px 24px 16px; grid-template-columns: 1fr; gap: 2px; max-height: calc(100vh - 74px); overflow-y: auto; }
.mnav[data-open="1"] { display: grid; }
.mnav details { border-bottom: 1px solid var(--divider); }
.mnav summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 13px 4px; font-size: 17px; font-weight: 500; color: var(--ink); }
.mnav summary svg { transition: transform 260ms var(--ease); }
.mnav details[open] > summary svg { transform: rotate(180deg); }
.mnav .mnav-sub { display: grid; padding-bottom: 8px; }
.mnav .mnav-sub a { display: block; padding: 10px 4px 10px 16px; font-size: 15.5px; color: var(--body); }
.mnav .mnav-sub a.all { font-weight: 600; color: var(--olive); }
.mnav > a { display: block; padding: 13px 4px; font-size: 17px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--divider); }
.mnav > a:last-child { border-bottom: 0; }
@media (max-width: 1099px) {
  .nav { gap: 18px; font-size: 14px; }
  .nav-label { font-size: 14px; }
  .nav .lbl-full { display: none; }
  .nav .lbl-compact { display: inline; }
  .hdr-phone { display: none; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .hdr-icobtn { display: flex; width: 40px; height: 40px; }
  .hdr-in { gap: 12px; }
  .hdr .wrap { padding: 0 16px; }
  .hdr-right { gap: 8px; }
  .logo img { height: auto; width: min(100%, 188px); }
  .btn-hdr { padding: 11px 14px; font-size: 13.5px; }
}
@media (max-width: 480px) {
  a.hdr-icobtn { display: none; }
  .mnav { padding: 10px 16px 16px; }
}

/* Footer */
.ftr { background: var(--off); border-top: 1px solid var(--border); color: var(--body); }
.ftr-grid { padding: 60px 24px 30px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.ftr-logo { display: inline-block; margin-bottom: 18px; }
.ftr-logo img { display: block; height: 38px; width: auto; }
.ftr p { margin: 0 0 6px; font-size: 15px; line-height: 1.6; }
.ftr p.ftr-blurb { margin-bottom: 14px; }
.ftr-h { margin: 0 0 14px; font-family: var(--head); font-weight: 600; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 15px; }
.ftr ul a { color: var(--body); }
.ftr ul a:hover, .ftr ul a.all { color: var(--olive); }
.ftr ul a.all { font-weight: 600; }
.ftr-phone { color: var(--ink); font-weight: 600; }
.ftr p.ftr-social { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px 16px; }
.ftr-social a { display: inline-flex; align-items: center; gap: 7px; font-size: 14.5px; font-weight: 600; color: var(--ink); transition: color 180ms ease; }
.ftr-social a:hover { color: var(--olive); }
.ftr-bottom { border-top: 1px solid var(--border); }
.ftr-bottom .wrap { padding: 20px 24px 92px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: 13.5px; color: var(--meta); }
.ftr-bottom p { margin: 0; font-size: 13.5px; }
@media (min-width: 769px) { .ftr-bottom .wrap { padding-bottom: 30px; } }

/* Sticky mobile bar */
.mbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: rgba(255,255,255,.98); border-top: 1px solid var(--border); box-shadow: 0 -6px 22px -12px rgba(20,20,15,.35); padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px; }
.mbar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; border-radius: 6px; font-weight: 600; font-size: 16px; }
.mbar .mbar-call { border: 1px solid var(--input); color: var(--ink); }
.mbar .mbar-quote { background: var(--olive); color: var(--white); }
@media (max-width: 768px) { .mbar { display: flex; } }

/* Reveals and motion */
[data-reveal] { opacity: 1; transform: none; }
.js-reveal [data-reveal]:not([data-shown]) { opacity: 0; transform: translateY(14px); }
[data-reveal] { transition: opacity 620ms var(--ease), transform 620ms var(--ease); }
[data-reveal] img { transition: transform 650ms var(--ease); }
a[data-reveal]:hover img, a.card:hover img { transform: scale(1.045); }
@keyframes envHeroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes envFaqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
[data-hero-in] { opacity: 0; animation: envHeroIn 760ms var(--ease) forwards; }
details.faq > summary svg { transition: transform 260ms var(--ease); }
details.faq[open] > summary svg { transform: rotate(180deg); }
details.faq[open] > *:not(summary) { animation: envFaqIn 300ms var(--ease); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-hero-in] { animation: none !important; opacity: 1 !important; transform: none !important; }
  .js-reveal [data-reveal]:not([data-shown]) { opacity: 1; transform: none; }
  [data-reveal], [data-reveal] img, .btn, .card { transition: none !important; }
  details.faq[open] > *:not(summary) { animation: none; }
}

/* Cards */
.card { display: block; background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease, opacity 620ms var(--ease); color: var(--ink); }
.card:hover { box-shadow: 0 16px 30px -20px rgba(20,20,15,.4); transform: translateY(-3px); border-color: var(--card-hover-border); color: var(--ink); }
.card-img { aspect-ratio: 16 / 10; background: var(--img-bg); overflow: hidden; }
.card-img img { display: block; width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px 20px 22px; }
.card-body .ico { display: block; margin-bottom: 12px; }
.card-title { margin: 0 0 7px; font-family: var(--head); font-weight: 600; font-size: 20px; color: var(--ink); }
.card-p { margin: 0 0 12px; font-size: 15px; line-height: 1.55; color: var(--body); }
.card-sub { margin: 0 0 14px; font-size: 13.5px; line-height: 1.5; color: var(--meta); }
.card-more { display: inline-flex; align-items: center; gap: 6px; font-size: 14.5px; font-weight: 600; color: var(--olive); }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(288px, 1fr)); gap: 22px; }
.cards-260 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.cards-240 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }

/* Inner page template */
.ihero { background: var(--off); border-bottom: 1px solid var(--border); }
.ihero-grid { padding: 56px 24px 52px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center; }
.ihero-img { aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); background: var(--hero-img-bg); }
.ihero-img img { display: block; width: 100%; height: 100%; object-fit: cover; }
.crumbs { margin-bottom: 22px; font-size: 13.5px; color: var(--faint); display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--olive); }
.crumbs span.cur { color: var(--body); }
.body-sec { padding: 64px 0 24px; }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 340px); gap: 56px; align-items: start; }
.two-col article { min-width: 0; }
.two-col aside { display: grid; gap: 20px; position: sticky; top: 98px; }
.blk { margin-bottom: 40px; }
.quote-card { background: var(--dark); color: var(--white); border-radius: 12px; padding: 24px; }
.quote-card .qc-eyebrow { margin: 0 0 6px; font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--olive-on-dark); }
.quote-card .qc-title { margin: 0 0 16px; font-family: var(--head); font-weight: 700; font-size: 22px; line-height: 1.2; }
.quote-card .qc-phone { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 700; font-size: 20px; white-space: nowrap; margin-bottom: 14px; }
.quote-card .qc-note { margin: 14px 0 0; font-size: 13.5px; color: var(--on-dark-meta); }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.gallery figure { margin: 0; aspect-ratio: 16 / 10; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); background: var(--img-bg); }
.gallery img { display: block; width: 100%; height: 100%; object-fit: cover; }
.faq-band { background: var(--off); border-top: 1px solid var(--border); padding: 72px 0; }
.faq-band .wrap { max-width: 880px; }
.faq-list { display: grid; gap: 12px; margin-top: 26px; }
details.faq { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 18px 20px; }
details.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--head); font-weight: 600; font-size: 17.5px; color: var(--ink); }
details.faq p { margin: 12px 0 0; font-size: 16px; line-height: 1.65; color: var(--body); }
.related { padding: 72px 0; }
.related .cards { margin-top: 26px; }
.cta-band { background: var(--dark); color: var(--white); }
.cta-band .wrap { max-width: 1000px; padding: 80px 24px; text-align: center; }
.cta-band h2 { margin: 0 0 14px; font-family: var(--head); font-weight: 700; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -.02em; text-wrap: balance; color: var(--white); }
.cta-band p { margin: 0 auto 28px; max-width: 38em; font-size: 18px; line-height: 1.6; color: var(--on-dark-body); }
.cta-band .btn-row { justify-content: center; gap: 14px; margin-top: 0; }
.post-h2 { margin: 34px 0 12px; font-family: var(--head); font-weight: 700; font-size: clamp(24px, 2.6vw, 30px); line-height: 1.15; letter-spacing: -.015em; color: var(--ink); }
.post-cta { margin: 36px 0 0; background: var(--tint); border: 1px solid var(--tint-border); border-radius: 12px; padding: 26px 28px; }
.post-cta .pc-title { margin: 0 0 8px; font-family: var(--head); font-weight: 700; font-size: 22px; color: var(--ink); }
.post-cta .pc-p { margin: 0 0 18px; font-size: 16px; line-height: 1.6; color: var(--body); }
.post-cta .btn-row { margin-top: 0; }
@media (max-width: 900px) {
  .two-col { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .two-col aside { position: static; }
}

/* Contact page */
.contact-hero .wrap { padding: 64px 24px 56px; }
.contact-hero .h1 { font-size: clamp(36px, 4.4vw, 56px); max-width: 16em; }
.contact-hero .lead { font-size: 18px; max-width: 34em; }
.contact-grid { padding: 64px 0 88px; }
.contact-grid .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: 0 18px 40px -26px rgba(20,20,15,.3); }
.form-card .fc-rule { height: 4px; background: var(--olive); }
.form-card .fc-head { padding: 26px 26px 10px; }
.form-card .fc-head h2 { margin: 0 0 6px; font-family: var(--head); font-weight: 700; font-size: 24px; letter-spacing: -.01em; color: var(--ink); }
.form-card .fc-head p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--muted); }
.form-card .fc-body { padding: 10px 14px 18px; min-height: 720px; }
.form-card iframe { width: 100%; height: 100%; min-height: 700px; border: none; border-radius: 4px; display: block; }
.form-card .fc-foot { margin: 0; padding: 0 26px 22px; font-size: 12.5px; line-height: 1.5; color: var(--faint); }
.form-card .fc-foot a { text-decoration: underline; text-underline-offset: 2px; }
.contact-side { display: grid; gap: 22px; align-content: start; }
.call-card { display: flex; align-items: center; gap: 16px; background: var(--dark); color: var(--white); border-radius: 12px; padding: 22px 24px; transition: background 180ms ease; }
.call-card:hover { background: #1F1F18; color: var(--white); }
.call-card .cc-ico { width: 48px; height: 48px; border-radius: 50%; background: var(--olive); display: flex; align-items: center; justify-content: center; flex: none; }
.call-card .cc-txt { display: grid; gap: 3px; }
.call-card .cc-lbl { font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--olive-on-dark); }
.call-card .cc-num { font-family: var(--head); font-weight: 700; font-size: 24px; letter-spacing: -.01em; white-space: nowrap; }
.info-card { background: var(--off); border: 1px solid var(--border); border-radius: 12px; padding: 24px 26px; display: grid; gap: 18px; }
.info-card .ic-lbl { margin: 0 0 4px; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--meta); }
.info-card p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink); }
.info-card .ic-mail { font-size: 16px; color: var(--olive); word-break: break-all; }
.info-card .link-arrow { margin-top: 6px; font-size: 15px; gap: 6px; }
.next-card { border: 1px solid var(--border); border-radius: 12px; padding: 24px 26px; }
.next-card h2 { margin: 0 0 14px; font-family: var(--head); font-weight: 600; font-size: 19px; color: var(--ink); }
.next-card ol { margin: 0; padding: 0 0 0 22px; display: grid; gap: 10px; font-size: 15.5px; line-height: 1.55; color: var(--body); }
.trust-line { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--body); }
.map-sec { background: var(--off); border-top: 1px solid var(--border); padding: 72px 0; }
.map-sec .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; align-items: center; }
.map-sec .p { font-size: 16.5px; line-height: 1.65; }
.map-box { aspect-ratio: 4 / 3; min-height: 300px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); background: var(--img-bg); }
.map-box iframe { border: 0; display: block; width: 100%; height: 100%; }

/* Thank you / 404 */
.ty-hero { background: var(--off); border-bottom: 1px solid var(--border); }
.ty-hero .wrap { max-width: 820px; padding: 96px 24px 80px; text-align: center; }
.ty-hero .h1 { font-size: clamp(36px, 4.4vw, 56px); }
.ty-hero .lead { margin: 0 auto; font-size: 18px; max-width: 32em; }
.ty-hero .btn-row { justify-content: center; margin-top: 30px; }
.ty-badge { display: inline-flex; width: 64px; height: 64px; border-radius: 50%; background: var(--tint); border: 1px solid var(--tint-border); align-items: center; justify-content: center; margin-bottom: 22px; }
.ty-body { padding: 64px 0 88px; }
.ty-body .wrap { max-width: 820px; }
.ty-body h2 { margin: 0 0 22px; font-family: var(--head); font-weight: 700; font-size: 26px; letter-spacing: -.01em; color: var(--ink); }
.ty-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.ty-link { display: block; border: 1px solid var(--border); border-radius: 10px; padding: 20px 22px; color: var(--ink); transition: border-color 180ms ease; }
.ty-link:hover { border-color: var(--card-hover-border); color: var(--ink); }
.ty-link .t { display: block; font-family: var(--head); font-weight: 600; font-size: 18px; margin-bottom: 6px; }
.ty-link .d { display: block; font-size: 15px; line-height: 1.5; color: var(--body); }

/* Homepage */
.hero { position: relative; overflow: hidden; background: var(--off); }
.hero-bg { position: absolute; inset: 0; background: var(--off) url(/assets/hero-poster.webp) center / cover no-repeat; }
.hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-wash { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(100deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.62) 30%, rgba(255,255,255,.44) 48%, rgba(255,255,255,.16) 66%, rgba(255,255,255,.04) 100%); }
@media (max-width: 768px) { .hero-wash { background: linear-gradient(180deg, rgba(255,255,255,.5) 0%, rgba(255,255,255,.4) 60%, rgba(255,255,255,.3) 100%); } }
.hero-in { position: relative; padding: 64px 24px 80px; display: flex; flex-wrap: wrap; align-items: flex-start; gap: 56px; }
.hero-copy { flex: 1 1 440px; min-width: min(320px, 100%); max-width: 680px; padding: 34px 36px 36px; background: rgba(255,255,255,.8); -webkit-backdrop-filter: blur(14px) saturate(120%); backdrop-filter: blur(14px) saturate(120%); border: 1px solid rgba(255,255,255,.9); box-shadow: 0 0 0 1px rgba(20,20,15,.06), 0 24px 60px -30px rgba(20,20,15,.45); border-radius: 14px; }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) { .hero-copy { background: rgba(255,255,255,.93); } }
@media (max-width: 768px) { .hero-copy { padding: 26px 20px 28px; } .hero-in { padding: 40px 16px 64px; } }
.chip-offer { display: inline-flex; align-items: center; gap: 9px; background: var(--tint); border: 1px solid var(--tint-border); color: var(--olive-hover); padding: 8px 14px 8px 11px; border-radius: 999px; font-size: 13.5px; font-weight: 600; margin-bottom: 26px; }
.hero .eyebrow { margin-bottom: 14px; }
.hero .h1 { margin: 0 0 20px; font-size: clamp(38px, 4.6vw, 60px); line-height: 1.03; }
.hero-lead { margin: 0 0 26px; font-size: 18.5px; line-height: 1.55; color: var(--body); max-width: 30em; text-wrap: pretty; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); padding: 9px 14px; border-radius: 6px; font-size: 14px; font-weight: 500; color: var(--ink); transition: border-color 180ms ease; }
a.chip:hover { border-color: var(--card-hover-border); color: var(--ink); }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }
.hero-ctas .btn-p { padding: 16px 26px; font-size: 16.5px; gap: 8px; }
.hero-call { display: inline-flex; align-items: center; gap: 9px; font-size: 16px; font-weight: 600; color: var(--ink); white-space: nowrap; transition: color 180ms ease; }
.hero-call:hover { color: var(--olive); }
.trust { background: var(--dark); color: var(--white); }
.trust ul { list-style: none; margin: 0; padding: 16px 0; display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: space-between; font-size: 14.5px; font-weight: 500; }
.trust li { display: flex; align-items: center; gap: 9px; }
.roller { position: relative; height: 180vh; background: var(--dark); }
.roller-stick { position: sticky; top: 74px; height: calc(100vh - 74px); overflow: hidden; background: var(--dark); }
.roller canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.roller-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 24px; clip-path: inset(0 100% 0 0); will-change: clip-path; }
.roller-text > div { max-width: 900px; text-align: center; text-shadow: 0 1px 2px rgba(255,255,255,.9), 0 0 30px rgba(255,255,255,.85); }
.roller-text .eyebrow { margin: 0 0 18px; font-size: 14px; letter-spacing: .22em; }
.roller-text h2 { margin: 0 0 22px; font-family: var(--head); font-weight: 700; font-size: clamp(44px, 7vw, 104px); line-height: .98; letter-spacing: -.025em; color: var(--ink); text-wrap: balance; }
.roller-text p { margin: 0 auto; max-width: 30em; font-size: clamp(17px, 1.6vw, 22px); line-height: 1.5; color: var(--body); text-wrap: pretty; }
@media (prefers-reduced-motion: reduce) { .roller { height: auto; } .roller-stick { position: relative; top: 0; height: min(70vh, 640px); } .roller-text { clip-path: none !important; } }
.sec-head { max-width: 700px; margin-bottom: 42px; }
.services { background: var(--white); padding: 34px 0 96px; }
.offer-band { background: var(--tint); border-top: 1px solid var(--tint-rule); border-bottom: 1px solid var(--tint-rule); }
.offer-band .wrap { padding: 30px 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px 32px; }
.offer-band .ob-copy { flex: 1 1 420px; min-width: min(280px, 100%); }
.offer-band h2 { margin: 0 0 6px; font-family: var(--head); font-weight: 700; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.15; letter-spacing: -.01em; color: var(--ink); }
.offer-band .ob-p { margin: 0; font-size: 16px; line-height: 1.55; color: #55553A; }
.offer-band .ob-terms { margin: 8px 0 0; font-size: 13px; color: #7A7A5A; }
.offer-band .ob-terms a { text-decoration: underline; text-underline-offset: 2px; }
.offer-band .btn-s { border-color: var(--tint-border); }
.reviews { background: var(--off); border-top: 1px solid var(--border); padding: 88px 0; }
.reviews .sec-head { margin-bottom: 36px; }
.widget-box { background: var(--white); border: 1px solid var(--border); border-radius: 10px; min-height: 460px; padding: 8px; overflow: hidden; }
.widget-box iframe { display: block; min-width: 100%; width: 100%; min-height: 440px; border: none; }
.widget-box.tall { min-height: 520px; }
.widget-box.tall iframe { min-height: 500px; }
.reviews-ctas { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.reviews-ctas .btn-p { padding: 14px 22px; font-size: 15.5px; }
.reviews-ctas .txt { font-size: 15.5px; font-weight: 600; color: var(--olive); }
.process { background: var(--white); padding: 92px 0 78px; }
.process .sec-head { margin-bottom: 44px; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; }
.step-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--tint); border: 1px solid var(--tint-border); display: flex; align-items: center; justify-content: center; font-family: var(--head); font-weight: 700; font-size: 16px; color: var(--olive-hover); transition: transform 520ms cubic-bezier(.34,1.56,.64,1) 260ms, background 260ms ease; }
.js-reveal [data-reveal]:not([data-shown]) .step-num { transform: scale(.6); }
.steps h3 { margin: 0 0 8px; font-family: var(--head); font-weight: 600; font-size: 19px; color: var(--ink); }
.steps p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--body); }
.owner { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 88px 0; }
.owner .wrap { display: flex; flex-wrap: wrap; gap: 52px; align-items: center; }
.owner-photo { flex: 1 1 380px; min-width: min(300px, 100%); }
.owner-photo > div { aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); background: var(--hero-img-bg); }
.owner-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.owner-copy { flex: 1 1 420px; min-width: min(300px, 100%); }
.owner-copy h2 { margin: 0 0 18px; font-family: var(--head); font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.1; letter-spacing: -.015em; color: var(--ink); }
.owner-copy .lead { margin: 0 0 18px; line-height: 1.65; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 16px; line-height: 1.55; color: var(--ink); }
.check-list svg { flex: none; margin-top: 3px; }
.owner-copy .link-arrow { margin-top: 24px; font-size: 16px; }
.areas { background: var(--white); padding: 92px 0; }
.areas .sec-head { max-width: 720px; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px 40px; }
.areas-grid h3 { margin: 0 0 8px; font-family: var(--head); font-weight: 600; font-size: 20px; }
.areas-grid h3 a { color: var(--ink); }
.areas-grid h3 a:hover { color: var(--olive); }
.areas-grid p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--body); text-wrap: pretty; }
.areas-map { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: stretch; margin-top: 8px; }
.areas-map .map-frame { aspect-ratio: 16 / 9; min-height: 280px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); background: var(--img-bg); }
.areas-map iframe { border: 0; display: block; width: 100%; height: 100%; }
.areas-map .map-card { background: var(--off); border: 1px solid var(--border); border-radius: 10px; padding: 26px 28px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.areas-map .map-card .t { margin: 0; font-family: var(--head); font-weight: 700; font-size: 22px; line-height: 1.2; color: var(--ink); }
.areas-map .map-card p { margin: 0; }
.faq-home { background: var(--off); border-top: 1px solid var(--border); padding: 88px 0; }
.faq-home .wrap { max-width: 880px; }
.faq-home .sec-head { margin-bottom: 34px; }
.faq-home .faq-list { margin-top: 0; }
.quote-sec { background: var(--white); padding: 92px 0 96px; }
.quote-sec .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 48px; align-items: start; }
.quote-sec .lead { margin-bottom: 22px; max-width: 30em; }
.offer-pill { display: flex; align-items: center; gap: 12px; background: var(--tint); border: 1px solid var(--tint-border); border-radius: 6px; padding: 12px 14px; margin-bottom: 26px; max-width: 420px; }
.offer-pill .big { font-family: var(--head); font-weight: 700; font-size: 22px; color: var(--olive-hover); white-space: nowrap; }
.offer-pill .sm { font-size: 14px; color: #55553A; }
.quote-call { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.quote-call:hover { color: var(--olive); }
.quote-hours { margin: 10px 0 0; font-size: 14.5px; color: var(--muted); }
.quote-sec .form-card .fc-body { padding: 12px 14px 14px; }
.quote-sec .form-card .fc-foot { padding: 0 22px 18px; }
.final-cta { position: relative; background: var(--dark); color: var(--white); overflow: hidden; }
.final-cta .rule { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--olive); }
.final-cta .wrap { position: relative; max-width: 1000px; padding: 96px 24px 100px; text-align: center; }
.final-cta h2 { margin: 0 0 18px; font-family: var(--head); font-weight: 700; font-size: clamp(32px, 4vw, 50px); line-height: 1.08; letter-spacing: -.02em; color: var(--white); text-wrap: balance; }
.final-cta .lead { margin: 0 auto 12px; max-width: 40em; font-size: 18.5px; color: var(--on-dark-body); }
.final-cta .offer { margin: 0 auto 32px; font-size: 16px; color: var(--olive-on-dark); font-weight: 600; }
.final-cta .btn-row { justify-content: center; gap: 14px; margin-top: 0; }
.final-cta .btn-p:hover { background: var(--olive-bright); }

/* Offer popup */
.popup { position: fixed; inset: 0; z-index: 90; background: rgba(20,20,15,.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 20px; }
.popup[hidden] { display: none; }
@keyframes popup-in { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }
.popup { animation: overlay-in 220ms ease both; }
.popup-card { position: relative; width: 100%; max-width: 720px; background: var(--white); border-radius: 14px; box-shadow: 0 40px 90px -30px rgba(20,20,15,.65); overflow: hidden; display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); animation: popup-in 380ms var(--ease) both; }
.popup-photo { position: relative; min-height: 220px; background: var(--dark); }
.popup-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.popup-photo .shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,15,0) 50%, rgba(20,20,15,.55) 100%); }
.popup-photo .tag { position: absolute; left: 20px; bottom: 18px; margin: 0; display: inline-flex; align-items: center; gap: 7px; font-family: var(--head); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--white); }
.popup-body { position: relative; padding: 38px 34px 30px; }
.popup-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border: none; background: transparent; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--meta); transition: background 160ms ease, color 160ms ease; padding: 0; }
.popup-close:hover { background: var(--img-bg); color: var(--ink); }
.popup-body .eyebrow { margin-bottom: 14px; font-size: 12.5px; }
.popup-num { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.popup-num .n { font-family: var(--head); font-weight: 700; font-size: 72px; line-height: .9; letter-spacing: -.04em; color: var(--ink); }
.popup-num .n span { font-size: 44px; letter-spacing: -.02em; color: var(--olive); }
.popup-num .w { font-family: var(--head); font-weight: 700; font-size: 26px; line-height: 1; letter-spacing: -.015em; color: var(--ink); }
.popup-body .pp { margin: 14px 0 22px; font-size: 15.5px; line-height: 1.6; color: var(--body); text-wrap: pretty; }
.popup-body .btn-p { display: flex; width: 100%; padding: 15px 20px; }
.popup-body .btn-s { display: flex; width: 100%; margin-top: 10px; padding: 12px 20px; font-size: 15px; gap: 8px; }
.popup-body .fine { margin: 16px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--faint); }
.popup-body .fine a { text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 640px) { .popup-card { grid-template-columns: minmax(0, 1fr); max-width: 400px; } .popup-photo { min-height: 150px; } }
@media (prefers-reduced-motion: reduce) { .popup, .popup-card { animation: none; } }

/* Text us */
.sms-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--olive); color: var(--white); padding: 16px 26px; border-radius: 6px; font-weight: 600; font-size: 17px; white-space: nowrap; margin-bottom: 16px; transition: background 180ms ease; }
.sms-btn:hover { background: var(--olive-hover); color: var(--white); }


/* Maps: aspect-ratio plus min-height transfers a minimum width that overflows phones */
@media (max-width: 768px) {
  .map-box, .areas-map .map-frame { min-height: 0; aspect-ratio: 4 / 3; }
}
