/* ============================================================================
   STEVE BRADY INTERIORS — bespoke homepage
   Premium painting & decorating. Black + gold (#d4af37) + warm white.
   Playfair Display (serif display) + Inter (sans). Editorial, generous, sharp.
   Built mobile-first; animations are progressive enhancement (content shows
   even if JS/GSAP never load — see html.sb-anim gating at the bottom).
   ============================================================================ */

:root {
  --black: #15130f;
  --black-2: #1d1a14;
  --black-3: #262119;
  --cream: #f7f3ea;
  --cream-2: #efe8da;
  --ink: #1b1813;
  --ink-soft: #5f594d;
  --ink-faint: #908978;
  --on-dark: #f3efe6;
  --on-dark-soft: #b3ab98;
  --gold: #d4af37;
  --gold-deep: #b8941f;
  --gold-soft: rgba(212,175,55,.16);
  --line: rgba(27,24,19,.14);
  --line-dark: rgba(212,175,55,.22);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1240px;
  --gut: clamp(20px, 5vw, 72px);
  --hdr: 84px;
  --r: 3px;
  --ease: cubic-bezier(.33, .1, .15, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--black); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 10vw, 150px); position: relative; }
.section--dark { background: var(--black); color: var(--on-dark); }
.section--cream2 { background: var(--cream-2); }
.center { text-align: center; }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--sans); font-weight: 600; font-size: .74rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: .8em;
}
.section--dark .eyebrow { color: var(--gold); }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6; }
.eyebrow.is-centered { justify-content: center; }
.eyebrow.is-centered::after { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6; }

.display { font-family: var(--serif); font-weight: 600; font-size: clamp(2.6rem, 6.4vw, 5.2rem); line-height: 1.02; letter-spacing: -.015em; }
.h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.08; letter-spacing: -.01em; }
.h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.3rem, 2.1vw, 1.7rem); line-height: 1.18; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.65; color: var(--ink-soft); }
.section--dark .lead { color: var(--on-dark-soft); }
.gold { color: var(--gold); }
em.gold { font-style: italic; }
.measure { max-width: 60ch; }
.section-head { max-width: 760px; }
.section-head .h2 { margin-top: 1.1rem; }
.section-head.center { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .65em;
  padding: 1.05em 1.8em; border-radius: var(--r);
  font-family: var(--sans); font-weight: 600; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid transparent; transition: background .3s var(--ease), color .3s, border-color .3s, transform .3s var(--ease);
}
.btn .a { transition: transform .3s var(--ease); }
.btn:hover .a { transform: translateX(5px); }
.btn--gold { background: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--gold-deep); color: #fff; }
.btn--ghost { border-color: currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.on-dark .btn--ghost, .section--dark .btn--ghost, .hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.on-dark .btn--ghost:hover, .section--dark .btn--ghost:hover, .hero .btn--ghost:hover { background: #fff; color: var(--black); border-color: #fff; }
.btn--block { width: 100%; justify-content: center; }

.textlink { font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: .6em; border-bottom: 1px solid var(--gold); padding-bottom: 4px; color: var(--ink); transition: gap .3s var(--ease); }
.section--dark .textlink { color: var(--on-dark); }
.textlink:hover { gap: 1em; }

.skip { position: fixed; top: -100px; left: 16px; z-index: 300; background: var(--black); color: #fff; padding: .7em 1em; border-radius: var(--r); }
.skip:focus { top: 16px; }

/* ---------- stars ---------- */
.stars { color: var(--gold); letter-spacing: .1em; font-size: .95rem; }

/* ============================================================ HEADER */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--hdr); display: flex; align-items: center; transition: background .4s var(--ease), box-shadow .4s, border-color .4s; border-bottom: 1px solid transparent; }
.site-header::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,0)); transition: opacity .4s var(--ease); }
.site-header.scrolled { background: rgba(247,243,234,.9); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom-color: var(--line); box-shadow: 0 10px 30px -24px rgba(0,0,0,.5); }
.site-header.scrolled::before { opacity: 0; }
.site-header__in { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 48px; width: auto; transition: opacity .3s; }
.brand .logo--dark { display: none; }
.site-header.scrolled .brand .logo--light { display: none; }
.site-header.scrolled .brand .logo--dark { display: block; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-family: var(--sans); font-size: .78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.86); position: relative; padding: 6px 0; transition: color .25s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--gold); transition: width .28s var(--ease); }
.nav a:hover::after { width: 100%; }
.site-header.scrolled .nav a { color: var(--ink-soft); }
.site-header.scrolled .nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: #fff; }
.nav a[aria-current="page"]::after { width: 100%; }
.site-header.scrolled .nav a[aria-current="page"] { color: var(--ink); }
.header__right { display: flex; align-items: center; gap: 22px; }
.header__phone { font-weight: 600; font-size: .85rem; letter-spacing: .02em; color: #fff; display: inline-flex; align-items: center; gap: .5em; }
.site-header.scrolled .header__phone { color: var(--ink); }
.header__phone .dot { color: var(--gold); }
.menu-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin-left: auto; background: #fff; transition: transform .3s var(--ease), opacity .2s, background .3s; }
.site-header.scrolled .menu-toggle span { background: var(--ink); }

@media (max-width: 980px) {
  .nav, .header__phone { display: none; }
  .menu-toggle { display: flex; }
  /* mobile menu panel */
  .nav.is-mobile { display: flex; position: fixed; inset: var(--hdr) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 8px var(--gut) 22px;
    transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .3s, transform .3s var(--ease), visibility .3s; box-shadow: 0 30px 50px -28px rgba(0,0,0,.45); }
  body.menu-open .nav.is-mobile { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav.is-mobile a { color: var(--ink); font-size: .95rem; padding: 16px 2px; border-top: 1px solid var(--line); letter-spacing: .08em; }
  .nav.is-mobile a:first-child { border-top: 0; }
  .nav.is-mobile a::after { display: none; }
  .nav.is-mobile .btn { margin-top: 16px; }
  .nav.is-mobile .m-phone { color: var(--gold-deep); font-weight: 700; }
  body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  /* when menu open the bars must be dark on cream */
  body.menu-open .menu-toggle span { background: var(--ink); }
}

/* ============================================================ HERO (editorial split) */
.hero { position: relative; background: var(--black); color: #fff; min-height: 100svh; display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; overflow: hidden; }
.hero__text { display: flex; flex-direction: column; justify-content: center; padding: calc(var(--hdr) + clamp(28px,5vh,60px)) clamp(28px,5vw,80px) clamp(40px,6vh,80px) var(--gut); position: relative; z-index: 2; }
.hero__eyebrow { color: var(--gold); margin-bottom: 1.6rem; }
.hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.7rem, 5.2vw, 4.8rem); line-height: 1.03; letter-spacing: -.018em; }
.hero h1 .row { display: block; }
.hero h1 .row > span { display: inline-block; }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero__sub { margin-top: 1.7rem; font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: #ddd6c8; max-width: 46ch; line-height: 1.6; }
.hero__cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { margin-top: 2.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; align-items: center; gap: 10px 26px; }
.hero__trust .t-item { display: inline-flex; align-items: center; gap: .55em; font-size: .82rem; color: var(--on-dark-soft); letter-spacing: .02em; }
.hero__trust .t-item strong { color: #fff; font-weight: 600; }
.hero__media { position: relative; z-index: 1; }
.hero__media .ph { position: absolute; inset: 0; }
.hero__media .ph img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--black) 0%, rgba(21,19,15,.2) 22%, transparent 50%); z-index: 2; }
.hero__frame { position: absolute; z-index: 3; inset: clamp(18px,2.4vw,30px); border: 1px solid rgba(255,255,255,.22); pointer-events: none; }
.hero__badge { position: absolute; z-index: 4; left: clamp(18px,2.4vw,30px); bottom: clamp(18px,2.4vw,30px); background: rgba(21,19,15,.66); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid var(--line-dark); padding: 14px 18px; display: flex; align-items: center; gap: 14px; }
.hero__badge .num { font-family: var(--serif); font-size: 2.1rem; line-height: 1; color: var(--gold); }
.hero__badge .lbl { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; max-width: 11ch; }
.hero__scroll { position: absolute; z-index: 4; left: var(--gut); bottom: clamp(22px,4vh,40px); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--on-dark-soft); display: inline-flex; align-items: center; gap: .8em; }
.hero__scroll .line { width: 40px; height: 1px; background: var(--gold); display: inline-block; transform-origin: left; animation: scrollline 2.4s var(--ease) infinite; }
@keyframes scrollline { 0%,100%{ transform: scaleX(.3); opacity:.5 } 50%{ transform: scaleX(1); opacity:1 } }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__text { order: 2; padding: clamp(40px,8vw,60px) var(--gut) clamp(48px,9vw,64px); }
  .hero__media { order: 1; height: 64vh; min-height: 420px; }
  .hero__media::after { background: linear-gradient(0deg, var(--black) 0%, rgba(21,19,15,.25) 30%, transparent 70%); }
  .hero__scroll { display: none; }
  .hero__badge { left: var(--gut); bottom: 18px; }
}

/* ============================================================ TRUST MARQUEE */
.trust { background: var(--black-2); color: var(--on-dark); border-block: 1px solid var(--line-dark); overflow: hidden; }
.trust__row { display: flex; gap: 0; width: max-content; animation: marquee 38s linear infinite; }
.trust:hover .trust__row { animation-play-state: paused; }
.trust__item { display: inline-flex; align-items: center; gap: 18px; padding: 18px 34px; font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--on-dark); white-space: nowrap; }
.trust__item::after { content: "✦"; color: var(--gold); font-size: .7rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================ INTRO */
.intro__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.intro__points { margin-top: 2.2rem; display: grid; gap: 1px; }
.intro__points li { display: flex; gap: 1em; padding: 1rem 0; border-top: 1px solid var(--line); align-items: flex-start; }
.intro__points li:last-child { border-bottom: 1px solid var(--line); }
.intro__points .ic { color: var(--gold); flex: none; margin-top: 2px; }
.intro__points b { font-weight: 600; }
.intro__points span { color: var(--ink-soft); }
.intro__aside { background: var(--black); color: var(--on-dark); padding: clamp(30px,3vw,44px); border-top: 3px solid var(--gold); }
.intro__stats { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,3vw,34px) 18px; }
.intro__stat .n { font-family: var(--serif); font-size: clamp(2.4rem,4vw,3.2rem); line-height: 1; color: #fff; }
.intro__stat .n .u { color: var(--gold); }
.intro__stat .l { margin-top: .5rem; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-soft); }
.intro__sign { margin-top: clamp(24px,3vw,34px); padding-top: 22px; border-top: 1px solid var(--line-dark); display: flex; align-items: center; gap: 14px; }
.intro__sign img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-dark); }
.intro__sign .who b { display: block; font-family: var(--serif); font-size: 1.05rem; }
.intro__sign .who span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--on-dark-soft); }
@media (max-width: 860px) { .intro__grid { grid-template-columns: 1fr; } }

/* ============================================================ SERVICES */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 26px); margin-top: clamp(36px,4vw,60px); }
.svc { position: relative; overflow: hidden; border-radius: var(--r); background: var(--black); isolation: isolate; min-height: clamp(320px, 30vw, 420px); display: flex; }
.svc .ph { position: absolute; inset: 0; z-index: -1; }
.svc .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.svc::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(21,19,15,.12) 0%, rgba(21,19,15,.5) 52%, rgba(21,19,15,.92) 100%); transition: background .4s; }
.svc:hover .ph img { transform: scale(1.06); }
.svc__body { margin-top: auto; padding: clamp(22px,2vw,30px); color: #fff; position: relative; z-index: 1; }
.svc__no { font-size: .74rem; letter-spacing: .14em; color: var(--gold); font-weight: 600; }
.svc__name { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; margin: .5rem 0 .5rem; }
.svc__blurb { font-size: .92rem; color: #d8d2c4; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .4s, margin .4s; }
.svc:hover .svc__blurb, .svc:focus-within .svc__blurb { max-height: 9em; opacity: 1; margin-top: .2rem; }
.svc__rule { height: 2px; width: 36px; background: var(--gold); margin-top: 1rem; }
@media (max-width: 860px) { .services__grid { grid-template-columns: 1fr 1fr; } .svc__blurb { max-height: 9em; opacity: 1; } }
@media (max-width: 540px) { .services__grid { grid-template-columns: 1fr; } .svc { min-height: 340px; } }

/* ============================================================ BEFORE / AFTER */
.ba__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px,5vw,80px); align-items: center; }
.ba { position: relative; aspect-ratio: 4 / 3; border-radius: var(--r); overflow: hidden; user-select: none; -webkit-user-select: none; touch-action: pan-y; cursor: ew-resize; box-shadow: 0 50px 90px -50px rgba(0,0,0,.7); border: 1px solid var(--line-dark); }
.ba__img { position: absolute; inset: 0; }
.ba__img img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__img--after { z-index: 1; }
.ba__img--before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba__tag { position: absolute; top: 14px; z-index: 3; font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: .5em .85em; border-radius: 2px; color: #fff; }
.ba__tag--before { left: 14px; background: rgba(21,19,15,.8); }
.ba__tag--after { right: 14px; background: var(--gold); color: var(--black); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; z-index: 4; width: 2px; background: #fff; transform: translateX(-1px); box-shadow: 0 0 0 1px rgba(0,0,0,.15); }
.ba__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 54px; height: 54px; border-radius: 50%; background: #fff; color: var(--black); display: grid; place-items: center; box-shadow: 0 8px 26px rgba(0,0,0,.4); }
.ba__grip svg { width: 22px; height: 22px; }
.ba__cap { margin-top: 1.2rem; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); display: flex; align-items: center; gap: .6em; }
.section--dark .ba__cap { color: var(--on-dark-soft); }
@media (max-width: 860px) { .ba__grid { grid-template-columns: 1fr; } .ba { aspect-ratio: 3 / 2; } }

/* ============================================================ PROCESS */
.process__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: clamp(40px,5vw,64px); counter-reset: step; }
.step { padding: 1.8rem 1.4rem 1.8rem 0; border-top: 1px solid var(--line-dark); position: relative; }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--serif); font-size: 1.1rem; color: var(--gold); }
.step::after { content: ""; position: absolute; top: -1px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 1s var(--ease) .1s; }
.step.in::after { width: 100%; }
.step h3 { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; margin: .8rem 0 .5rem; color: #fff; }
.step p { font-size: .9rem; color: var(--on-dark-soft); line-height: 1.55; }
@media (max-width: 860px) { .process__grid { grid-template-columns: 1fr 1fr; gap: 0 24px; } }
@media (max-width: 460px) { .process__grid { grid-template-columns: 1fr; } }

/* ============================================================ GALLERY */
.gallery__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(150px, 15vw, 220px); gap: clamp(10px,1.2vw,18px); margin-top: clamp(34px,4vw,56px); }
.gtile { position: relative; overflow: hidden; border-radius: var(--r); background: var(--black); }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gtile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(21,19,15,.55)); opacity: 0; transition: opacity .4s; }
.gtile:hover img { transform: scale(1.07); }
.gtile:hover::after { opacity: 1; }
.gtile__cap { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-size: .8rem; letter-spacing: .06em; opacity: 0; transform: translateY(6px); transition: opacity .4s, transform .4s; }
.gtile:hover .gtile__cap { opacity: 1; transform: translateY(0); }
.gtile__cap b { font-family: var(--serif); font-weight: 600; }
.gtile--tall { grid-row: span 2; }
.gtile--wide { grid-column: span 2; }
@media (max-width: 860px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 42vw; } .gtile--wide { grid-column: span 2; } .gtile--tall { grid-row: span 1; } }

/* ============================================================ TESTIMONIALS */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2vw,28px); margin-top: clamp(36px,4vw,56px); }
.quote { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(26px,2.4vw,38px); display: flex; flex-direction: column; gap: 16px; }
.quote .stars { font-size: .9rem; }
.quote__text { font-family: var(--serif); font-size: 1.2rem; line-height: 1.5; color: var(--ink); }
.quote__by { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.quote__by b { font-family: var(--serif); font-weight: 600; font-size: 1.02rem; }
.quote__by span { display: block; font-size: .76rem; letter-spacing: .06em; color: var(--ink-faint); margin-top: 3px; }
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }

/* ============================================================ COVERAGE */
.coverage__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.areas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.8rem; }
.areas span { font-size: .82rem; letter-spacing: .04em; border: 1px solid var(--line); border-radius: 100px; padding: .5em 1.1em; color: var(--ink-soft); transition: border-color .3s, color .3s; }
.areas span:hover { border-color: var(--gold); color: var(--ink); }
.coverage__art { aspect-ratio: 1 / 1; position: relative; display: grid; place-items: center; }
.coverage__art .ring { position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.coverage__art .ring.r1 { inset: 0; }
.coverage__art .ring.r2 { inset: 16%; }
.coverage__art .ring.r3 { inset: 33%; border-color: var(--gold-soft); }
.coverage__art .pin { position: relative; z-index: 2; text-align: center; }
.coverage__art .pin .dot { width: 16px; height: 16px; border-radius: 50%; background: var(--gold); margin: 0 auto 12px; box-shadow: 0 0 0 8px var(--gold-soft); }
.coverage__art .pin b { font-family: var(--serif); font-size: 1.4rem; }
.coverage__art .pin span { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; }
@media (max-width: 860px) { .coverage__grid { grid-template-columns: 1fr; } .coverage__art { max-width: 360px; margin-inline: auto; width: 100%; } }

/* ============================================================ CTA / FORM */
.cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,80px); align-items: start; }
.cta__contacts { margin-top: 2rem; display: grid; gap: 2px; }
.cta__contacts a, .cta__contacts div { display: flex; align-items: center; gap: .9em; padding: 1rem 0; border-top: 1px solid var(--line-dark); font-size: 1.02rem; }
.cta__contacts .k { color: var(--gold); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; width: 90px; flex: none; }
.formcard { background: var(--black-2); border: 1px solid var(--line-dark); border-top: 3px solid var(--gold); border-radius: var(--r); padding: clamp(8px,1vw,14px); box-shadow: 0 50px 90px -50px rgba(0,0,0,.7); }
.formcard__slot { border-radius: 4px; overflow: hidden; }
.formcard__slot iframe { width: 100% !important; border: 0; display: block; }
/* placeholder form (swap for the Go High Level embed) */
.qform { display: grid; gap: 13px; padding: clamp(14px,1.4vw,20px); }
.qform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.qform label { display: grid; gap: 7px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-soft); }
.qform input, .qform textarea { font-family: var(--sans); font-size: 1rem; color: #fff; background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); border-radius: var(--r); padding: 13px 14px; }
.qform input::placeholder, .qform textarea::placeholder { color: rgba(255,255,255,.34); }
.qform input:focus, .qform textarea:focus { outline: 0; border-color: var(--gold); }
.qform__note { font-size: .72rem; color: var(--on-dark-soft); text-align: center; }
@media (max-width: 860px) { .cta__grid { grid-template-columns: 1fr; } .qform .row { grid-template-columns: 1fr; } }

/* ============================================================ FOOTER */
.site-footer { background: #100e0a; color: var(--on-dark); padding: clamp(56px,7vw,92px) 0 30px; border-top: 1px solid var(--line-dark); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px; }
.footer__brand img { height: 56px; margin-bottom: 1.2rem; }
.footer__note { color: var(--on-dark-soft); max-width: 32ch; font-size: .92rem; line-height: 1.65; }
.footer__col h4 { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer__col a, .footer__col p { display: block; color: var(--on-dark); font-size: .92rem; margin-bottom: .6rem; }
.footer__col a:hover { color: var(--gold); }
.footer__col p { color: var(--on-dark-soft); }
.footer__base { margin-top: clamp(40px,5vw,64px); padding-top: 24px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .78rem; color: var(--on-dark-soft); }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }

/* before/after "same room" demo treatment — the BEFORE side gets a tired/dated look */
.ba--demo .ba__img--before img { filter: grayscale(.82) sepia(.32) brightness(.82) contrast(.9); }

/* real coverage map (Leaflet) */
.cov-map { aspect-ratio: 1/1; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: #14120e; position: relative; z-index: 0; isolation: isolate; }
.cov-map .leaflet-container { width: 100%; height: 100%; background: #14120e; font-family: var(--sans); }
.cov-map .leaflet-control-zoom { border: 0; margin: 12px; }
.cov-map .leaflet-control-zoom a { background: rgba(31,28,22,.92); color: var(--on-dark); border: 1px solid var(--line-dark); width: 30px; height: 30px; line-height: 30px; }
.cov-map .leaflet-control-zoom a:hover { background: var(--gold); color: var(--black); }
.cov-map .leaflet-control-attribution { background: rgba(20,18,14,.7); color: #6b6457; font-size: 9px; }
.cov-map .leaflet-control-attribution a { color: #8a8270; }
.cov-hq__dot { display: block; width: 14px; height: 14px; background: var(--gold); border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 0 5px rgba(212,175,55,.3), 0 2px 8px rgba(0,0,0,.5); }
.cov-hq__label { position: absolute; left: 20px; top: -3px; white-space: nowrap; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; text-shadow: 0 1px 5px rgba(0,0,0,.9); }
@media (max-width: 860px) { .cov-map { max-width: 440px; margin-inline: auto; width: 100%; } }

/* ============================================================ INNER PAGES */
.page-hero { position: relative; background: var(--black); color: #fff; padding: calc(var(--hdr) + clamp(48px,8vw,96px)) 0 clamp(48px,7vw,88px); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -8%; top: -25%; width: min(50vw,560px); height: 130%; background: radial-gradient(closest-side, rgba(212,175,55,.13), transparent 70%); pointer-events: none; }
.page-hero__in { position: relative; z-index: 2; max-width: 900px; }
.crumbs { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-soft); margin-bottom: 1.4rem; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { color: var(--gold); }
.page-hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.6rem,6vw,4.7rem); line-height: 1.04; letter-spacing: -.015em; margin-top: .3rem; }
.page-hero .lead { margin-top: 1.4rem; color: #ddd6c8; max-width: 60ch; }
.page-hero__stats { display: flex; flex-wrap: wrap; gap: clamp(24px,4vw,56px); margin-top: clamp(28px,4vw,44px); padding-top: 26px; border-top: 1px solid var(--line-dark); }
.page-hero__stats b { display: block; font-family: var(--serif); font-weight: 700; font-size: clamp(1.9rem,3vw,2.6rem); }
.page-hero__stats b .u { color: var(--gold); }
.page-hero__stats > div > span { display: block; margin-top: .3rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-soft); }

/* alternating feature rows (services / kitchen page) */
.srow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,76px); align-items: center; }
.srow + .srow { margin-top: clamp(48px,7vw,112px); }
.srow__media { aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.srow__media img { width: 100%; height: 100%; object-fit: cover; }
.srow:nth-child(even) .srow__media { order: 2; }
.srow__no { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.15rem; }
.srow h2 { margin: .3rem 0 0; }
.srow .lead { margin-top: 1.1rem; }
.checklist { margin-top: 1.5rem; display: grid; gap: .75rem; }
.checklist li { display: flex; gap: .7em; align-items: flex-start; color: var(--ink-soft); }
.checklist .ic { color: var(--gold); margin-top: .12em; flex: none; }
@media (max-width: 820px) { .srow { grid-template-columns: 1fr; } .srow:nth-child(even) .srow__media { order: 0; } }

/* centered band CTA for inner pages */
.band { text-align: center; }
.band .h2 { margin-top: 1rem; }
.band .lead { margin: 1.3rem auto 0; }
.band .actions { margin-top: 2.2rem; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================ MOBILE HEADER OVERRIDES */
.nav .m-only { display: none; }
@media (max-width: 980px) {
  /* solid, high-contrast header on mobile (no transparent-over-photo) */
  .site-header { background: rgba(247,243,234,.96); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
  .site-header .brand .logo--light { display: none; }
  .site-header .brand .logo--dark { display: block; }
  .site-header .brand img { height: 40px; }
  .site-header .menu-toggle span { background: var(--ink); }
  .header__right .btn { padding: .72em 1.05em; font-size: .72rem; }
  .header__right { gap: 14px; }
  .nav.is-mobile .m-only { display: block; }
}
@media (max-width: 360px) {
  .header__right .btn { display: none; } /* keep just logo + menu on very small screens */
}

/* ============================================================ UNIFIED PHOTO GRADE */
.ph { overflow: hidden; background: var(--black-2); }
.ph img { filter: contrast(1.05) saturate(1.04) brightness(1.02); }

/* ============================================================ MOTION (plays for everyone)
   Initial hidden states are applied ONLY when JS adds html.sb-anim, so if JS or
   GSAP fail to load nothing is hidden and the page stays fully readable.
   GSAP (assets/js/sb.js) drives all the reveals. */
html.sb-anim [data-reveal] { opacity: 0; transform: translateY(30px); }
html.sb-anim [data-reveal].in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }
html.sb-anim [data-reveal][data-delay="1"].in { transition-delay: .1s; }
html.sb-anim [data-reveal][data-delay="2"].in { transition-delay: .2s; }
html.sb-anim [data-reveal][data-delay="3"].in { transition-delay: .3s; }

/* hero entrance — pure CSS keyframes, always runs */
@keyframes sbRise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes sbCurtain { from { transform: scaleX(1); } to { transform: scaleX(0); } }
.hero__eyebrow { animation: sbRise .8s var(--ease) .2s both; }
.hero h1 .row:nth-child(1) > span { animation: sbRise .9s var(--ease) .35s both; }
.hero h1 .row:nth-child(2) > span { animation: sbRise .9s var(--ease) .5s both; }
.hero__sub { animation: sbRise .8s var(--ease) .7s both; }
.hero__cta { animation: sbRise .8s var(--ease) .82s both; }
.hero__trust { animation: sbRise .8s var(--ease) .94s both; }
.hero__badge { animation: sbRise .8s var(--ease) 1.05s both; }

/* scroll-progress bar */
.sb-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left center; z-index: 200; pointer-events: none; }

/* hero image paint-sweep curtain (sweeps away to reveal the photo on load) */
.hero__media .reveal-curtain { position: absolute; inset: 0; z-index: 5; background: var(--gold); transform-origin: right center; pointer-events: none; animation: sbCurtain 1.1s var(--ease) .15s both; }
html:not(.sb-anim) .hero__media .reveal-curtain { display: none; }

/* hand-painted gold brushstroke that draws itself under each section heading */
.brush { display: block; width: 134px; max-width: 62%; height: 16px; margin-top: 18px; overflow: visible; color: var(--gold); }
.center .brush, .section-head.center .brush { margin-inline: auto; }
.brush path { fill: none; stroke: currentColor; stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; transition: stroke-dashoffset 1.1s var(--ease); }
