/* ============================================================
   NEXT STEP REMODEL — Light / Clean Design System
   Simple, clear, scannable. Keeps brand: gold accent + logo.
   Fraunces (headings) + Inter (UI). Mobile-first.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink:        #17171A;   /* primary text */
  --ink-soft:   #54514B;   /* muted text */
  --ink-faint:  #8A8780;   /* labels */
  --white:      #FFFFFF;
  --bg:         #FFFFFF;    /* page base */
  --bg-alt:     #F7F4ED;    /* alternating sections (warm bone) */
  --bg-dark:    #121214;    /* footer / accents */
  --line:       #E7E2D7;    /* light borders */
  --line-2:     #D9D3C6;

  /* Accent — aged bronze / gold (brand) */
  --bronze:     #B08D57;
  --bronze-2:   #927039;
  --brass:      #C99F5E;
  --bronze-grad: linear-gradient(135deg, #D9BC83 0%, #C29A57 55%, #A07B3C 100%);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
  --wide: 1320px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --radius: 8px;
  --radius-lg: 14px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 8px rgba(23,23,26,0.06);
  --shadow:    0 12px 30px rgba(23,23,26,0.08);
  --shadow-lg: 0 24px 60px rgba(23,23,26,0.14);
  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--bronze); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); }
.display { font-size: clamp(2.4rem, 5.5vw, 4.4rem); line-height: 1.04; font-weight: 600; }
.h-section { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.08; font-weight: 600; }
.italic { font-style: italic; }
.text-bronze { color: var(--bronze-2); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze-2);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--bronze); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content:""; width:24px; height:2px; background:var(--bronze); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-soft); line-height: 1.7; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: var(--wide); }
section { position: relative; }
.section-pad { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.bg-alt { background: var(--bg-alt); }
.center { text-align: center; }
.section-head { max-width: 60ch; margin: 0 auto 3rem; text-align: center; }
.section-head .lead { margin-top: 0.8rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.7rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.02em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--bronze-grad); color: #1c150a; box-shadow: 0 8px 20px rgba(176,141,87,0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(176,141,87,0.4); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--bronze); color: var(--bronze-2); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2.1rem; font-size: 0.9rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; color: var(--bronze-2);
  transition: gap .25s var(--ease);
}
.link-arrow:hover { gap: 0.75rem; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 0.65rem; }
.logo__mark { width: 34px; height: 34px; flex: none; color: var(--ink); }
.logo__word { display: flex; flex-direction: column; line-height: 1; }
.logo__word b { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; letter-spacing: 0.01em; color: var(--ink); }
.logo__word small { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--bronze-2); font-weight: 700; margin-top: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center; background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px); transition: box-shadow .3s, height .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); height: 66px; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--wide); margin-inline: auto; padding-inline: var(--gutter); }
.nav__links { display: flex; align-items: center; gap: 1.8rem; }
.nav__links a { font-size: 0.88rem; font-weight: 600; color: var(--ink-soft); transition: color .2s; }
.nav__links a:hover { color: var(--bronze-2); }
.nav__cta { display: flex; align-items: center; gap: 1.1rem; }
.nav__phone { font-size: 0.88rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.4rem; color: var(--ink); }
.nav__phone svg { width: 15px; height: 15px; color: var(--bronze-2); }
.nav .btn { padding: 0.7rem 1.3rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 28px; height: 20px; justify-content: center; }
.nav__toggle span { width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 999; background: var(--white); padding: calc(var(--nav-h) + 1.5rem) var(--gutter) 2rem; transform: translateY(-100%); transition: transform .5s var(--ease); display: flex; flex-direction: column; }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a.m-link { font-family: var(--font-display); font-size: 1.7rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line); color: var(--ink); display: flex; justify-content: space-between; align-items: center; }
.mobile-menu a.m-link span { font-family: var(--font-body); font-size: 0.8rem; color: var(--ink-faint); }
.mobile-menu .m-foot { margin-top: auto; padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }

/* ============================================================
   HERO — split: text + image (clean, clear)
   ============================================================ */
.hero { padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem)); padding-bottom: clamp(2.5rem, 5vw, 4.5rem); background: var(--bg-alt); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; max-width: var(--wide); margin-inline: auto; padding-inline: var(--gutter); }
.hero__title { margin-bottom: 1.3rem; }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-soft); max-width: 46ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2rem; }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.8rem; }
.hero__rating { display: flex; align-items: center; gap: 0.6rem; }
.hero__stars { color: var(--bronze); letter-spacing: 1px; }
.hero__rating small { font-size: 0.85rem; color: var(--ink-soft); }
.hero__chip { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 0.4rem; }
.hero__chip svg { width: 16px; height: 16px; color: var(--bronze-2); }
.hero__image { position: relative; }
.hero__image img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__badge { position: absolute; left: -18px; bottom: 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 0.9rem 1.2rem; display: flex; align-items: center; gap: 0.8rem; }
.hero__badge b { font-family: var(--font-display); font-size: 1.8rem; color: var(--bronze-2); line-height: 1; }
.hero__badge span { font-size: 0.72rem; color: var(--ink-soft); line-height: 1.3; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar { border-bottom: 1px solid var(--line); background: var(--white); }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--wide); margin-inline: auto; }
.trust { display: flex; align-items: center; justify-content: center; gap: 0.7rem; text-align: left; padding: 1.5rem 1rem; border-left: 1px solid var(--line); }
.trust:first-child { border-left: none; }
.trust svg { width: 26px; height: 26px; color: var(--bronze); flex: none; }
.trust b { display: block; font-family: var(--font-display); font-size: 1rem; }
.trust span { font-size: 0.74rem; color: var(--ink-faint); }

/* ============================================================
   INTRO / STORY
   ============================================================ */
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.intro__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.intro__list { margin-top: 1.6rem; display: grid; gap: 0.8rem; }
.intro__list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.98rem; }
.intro__list svg { width: 20px; height: 20px; color: var(--bronze-2); flex: none; margin-top: 3px; }
.intro__copy h2 { margin-block: 0.4rem 1.2rem; }
.intro__sign { margin-top: 1.8rem; display: flex; align-items: baseline; gap: 0.8rem; flex-wrap: wrap; }
.intro__sign .sig { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--ink); }
.intro__sign .who { font-size: 0.82rem; color: var(--ink-faint); }

/* ============================================================
   SERVICES — clean white cards
   ============================================================ */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.service-card__img { aspect-ratio: 4/3; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.service-card__icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(176,141,87,0.12); color: var(--bronze-2); display: grid; place-items: center; margin-bottom: 1rem; }
.service-card__icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.1rem; flex: 1; }
.service-card .tag { display: inline-block; align-self: flex-start; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--bronze-grad); color: #1c150a; padding: 0.25rem 0.6rem; border-radius: 100px; margin-bottom: 0.8rem; }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba { position: relative; max-width: 980px; margin: 0 auto; }
.ba__stage { position: relative; width: 100%; aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden; user-select: none; box-shadow: var(--shadow); cursor: ew-resize; }
.ba__img { position: absolute; inset: 0; }
.ba__img img { width: 100%; height: 100%; object-fit: cover; }
.ba__after { z-index: 1; }
.ba__before { z-index: 2; width: 50%; overflow: hidden; border-right: 3px solid #fff; }
.ba__before img { width: 100%; height: 100%; max-width: none; object-fit: cover; }
.ba__tag { position: absolute; top: 1rem; z-index: 3; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 100px; background: rgba(255,255,255,0.92); color: var(--ink); box-shadow: var(--shadow-sm); }
.ba__tag.before { left: 1rem; }
.ba__tag.after { right: 1rem; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; z-index: 4; width: 3px; background: #fff; transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 0 1px rgba(0,0,0,0.1); }
.ba__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 50px; height: 50px; border-radius: 50%; background: var(--bronze-grad); display: grid; place-items: center; box-shadow: var(--shadow); color: #1c150a; }
.ba__grip svg { width: 22px; height: 22px; }
.ba__captions { display: flex; justify-content: space-between; margin-top: 1.2rem; }
.ba__captions b { font-family: var(--font-display); font-size: 1.1rem; display: block; }
.ba__captions p { font-size: 0.9rem; color: var(--ink-faint); }
.ba__thumbs { display: flex; justify-content: center; gap: 0.6rem; margin-top: 1.5rem; flex-wrap: wrap; }
.ba__thumb { font-size: 0.8rem; font-weight: 600; padding: 0.5rem 1rem; border: 1px solid var(--line-2); border-radius: 100px; color: var(--ink-soft); transition: all .25s; }
.ba__thumb.active, .ba__thumb:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio__filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2.4rem; }
.filter { font-size: 0.82rem; font-weight: 600; padding: 0.55rem 1.1rem; border-radius: 100px; border: 1px solid var(--line-2); color: var(--ink-soft); transition: all .25s; }
.filter.active, .filter:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.portfolio__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.pf-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; display: block; width: 100%; text-align: left; padding: 0; aspect-ratio: 3/4; }
.pf-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pf-item::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.75) 100%); opacity: 0; transition: opacity .3s; }
.pf-item:hover img { transform: scale(1.05); }
.pf-item:hover::after { opacity: 1; }
.pf-item__meta { position: absolute; left: 1rem; bottom: 1rem; right: 1rem; z-index: 2; opacity: 0; transform: translateY(8px); transition: all .3s var(--ease); }
.pf-item:hover .pf-item__meta { opacity: 1; transform: translateY(0); }
.pf-item__meta span { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); }
.pf-item__meta h4 { font-size: 1.05rem; color: #fff; margin-top: 0.15rem; }
.pf-item.is-hidden { display: none; }
.portfolio__more { text-align: center; margin-top: 2.5rem; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(20,20,22,0.85); backdrop-filter: blur(6px); display: grid; place-items: center; padding: var(--gutter); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0; max-width: 1000px; width: 100%; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.lightbox__img { overflow: hidden; }
.lightbox__img img { width: 100%; height: 100%; max-height: 80vh; object-fit: cover; }
.lightbox__panel { padding: clamp(1.6rem, 3vw, 2.4rem); }
.lightbox__title { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-block: 0.6rem 0.8rem; }
.lightbox__desc { color: var(--ink-soft); margin-bottom: 1.4rem; font-size: 0.95rem; }
.lightbox__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; border-top: 1px solid var(--line); padding-top: 1.3rem; margin-bottom: 1.5rem; }
.lightbox__specs span { display: block; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.2rem; }
.lightbox__specs b { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.lightbox__close { position: fixed; top: 1.2rem; right: 1.2rem; width: 44px; height: 44px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: var(--ink); box-shadow: var(--shadow); z-index: 2001; transition: transform .25s; }
.lightbox__close:hover { transform: rotate(90deg); }
.lightbox__nav { position: fixed; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: var(--ink); box-shadow: var(--shadow); z-index: 2001; }
.lightbox__nav.prev { left: 1.2rem; }
.lightbox__nav.next { right: 1.2rem; }

/* ============================================================
   PROCESS
   ============================================================ */
.process__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.process__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.process__steps { display: grid; gap: 1rem; }
.step { display: flex; gap: 1.1rem; padding: 1.3rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: border-color .25s, box-shadow .25s; }
.step:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.step__num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--bronze); width: 36px; flex: none; }
.step h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.step p { font-size: 0.92rem; color: var(--ink-soft); }

/* ============================================================
   STATS
   ============================================================ */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; color: var(--bronze-2); font-weight: 600; }
.stat__label { margin-top: 0.5rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst { max-width: 820px; margin: 0 auto; text-align: center; }
.tst__track { position: relative; min-height: 240px; }
.tst__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .4s; }
.tst__slide.active { opacity: 1; visibility: visible; position: relative; }
.tst__stars { color: var(--bronze); letter-spacing: 2px; margin-bottom: 1.2rem; }
.tst__quote { font-family: var(--font-display); font-size: clamp(1.2rem, 2.2vw, 1.7rem); line-height: 1.45; color: var(--ink); margin-bottom: 1.5rem; }
.tst__author b { display: block; }
.tst__author span { font-size: 0.85rem; color: var(--ink-faint); }
.tst__controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 2rem; }
.tst__arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink); transition: all .25s; }
.tst__arrow:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.tst__arrow svg { width: 18px; height: 18px; }
.tst__dots { display: flex; gap: 0.45rem; }
.tst__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); transition: all .25s; }
.tst__dot.active { background: var(--bronze); width: 24px; border-radius: 100px; }

/* ============================================================
   FINANCING
   ============================================================ */
.financing__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.financing__points { display: grid; gap: 0.9rem; margin-top: 1.6rem; }
.financing__points li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.98rem; }
.financing__points svg { width: 22px; height: 22px; color: var(--bronze-2); flex: none; margin-top: 2px; }
.financing__card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.6rem); text-align: center; box-shadow: var(--shadow); }
.financing__card .fin-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(176,141,87,0.12); color: var(--bronze-2); display: grid; place-items: center; margin: 0 auto 1.1rem; }
.financing__card .fin-icon svg { width: 28px; height: 28px; }
.financing__card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.financing__card p { color: var(--ink-soft); margin-bottom: 1.4rem; }
.financing__card .btn { margin-bottom: 0.7rem; }
.fin-disclaimer { font-size: 0.72rem; color: var(--ink-faint); margin-top: 0.9rem; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.areas__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #eee; aspect-ratio: 4/3; }
.areas__map svg { width: 100%; height: 100%; }
.areas__pins { columns: 2; column-gap: 1rem; margin-top: 1.6rem; }
.areas__pins li { break-inside: avoid; padding: 0.55rem 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; }
.areas__pins svg { width: 15px; height: 15px; color: var(--bronze-2); flex: none; }

/* ============================================================
   CTA BANNER (photo + overlay)
   ============================================================ */
.cta-banner { position: relative; overflow: hidden; text-align: center; }
.cta-banner__bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__bg::after { content:""; position:absolute; inset:0; background: rgba(18,18,20,0.74); }
.cta-banner__inner { position: relative; z-index: 2; max-width: 60ch; margin: 0 auto; }
.cta-banner h2, .cta-banner .lead { color: #fff; }
.cta-banner .scarcity { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; color: var(--brass); margin-bottom: 1rem; }
.cta-banner .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brass); }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; margin-top: 1.8rem; }
.cta-banner__call { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: #fff; }
.cta-banner__call svg { width: 18px; height: 18px; color: var(--brass); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); }
.contact__copy h2 { margin-block: 0.4rem 1.2rem; }
.contact__info { margin-top: 2rem; display: grid; gap: 1.2rem; }
.contact__info a, .contact__info div.ci { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact__info svg { width: 22px; height: 22px; color: var(--bronze-2); flex: none; }
.contact__info b { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.contact__info span { font-size: 0.86rem; color: var(--ink-faint); }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 0.95rem; border-radius: var(--radius); border: 1px solid var(--line-2);
  background: var(--white); color: var(--ink); font-family: inherit; font-size: 0.95rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--bronze); box-shadow: 0 0 0 3px rgba(176,141,87,0.14); }
.field textarea { resize: vertical; min-height: 110px; }
.field.error input, .field.error select, .field.error textarea { border-color: #c0492f; }
.field .err-msg { display: none; color: #c0492f; font-size: 0.74rem; margin-top: 0.3rem; }
.field.error .err-msg { display: block; }
.form__note { font-size: 0.76rem; color: var(--ink-faint); margin-top: 0.9rem; text-align: center; }
.form__success { display: none; text-align: center; padding: 2rem 1rem; }
.form__success.show { display: block; }
.form__success svg { width: 54px; height: 54px; color: var(--bronze-2); margin: 0 auto 1rem; }
.form__success h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.form.submitted .form__body { display: none; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.4rem 0; text-align: left; font-family: var(--font-display); font-size: clamp(1.05rem, 1.8vw, 1.25rem); font-weight: 600; color: var(--ink); }
.faq__q .icon { width: 22px; height: 22px; flex: none; position: relative; }
.faq__q .icon::before, .faq__q .icon::after { content:""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--bronze-2); transition: transform .3s var(--ease); }
.faq__q .icon::before { width: 13px; height: 2px; }
.faq__q .icon::after { width: 2px; height: 13px; }
.faq__item.open .faq__q .icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding-bottom: 1.4rem; color: var(--ink-soft); font-size: 0.96rem; }

/* ============================================================
   FOOTER (dark anchor)
   ============================================================ */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.72); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__inner { max-width: var(--wide); margin-inline: auto; padding-inline: var(--gutter); }
.footer__cta { text-align: center; padding-bottom: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 3rem; }
.footer__cta h2 { font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; margin-bottom: 1.4rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 2.2rem; padding-bottom: 2.5rem; }
.footer .logo__mark, .footer .logo__word b { color: #fff; }
.footer__col h5 { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.1rem; }
.footer__col a { display: block; font-size: 0.92rem; color: rgba(255,255,255,0.72); padding: 0.3rem 0; transition: color .2s; }
.footer__col a:hover { color: var(--brass); }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 34ch; margin-top: 1rem; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer__social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: grid; place-items: center; transition: all .25s; }
.footer__social a:hover { background: var(--bronze); border-color: transparent; color: #1c150a; }
.footer__social svg { width: 16px; height: 16px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 1.6rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 900; display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); box-shadow: 0 -4px 16px rgba(0,0,0,0.08); transform: translateY(100%); transition: transform .4s var(--ease); }
.sticky-cta.show { transform: translateY(0); }
.sticky-cta a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem; font-size: 0.85rem; font-weight: 700; }
.sticky-cta .s-call { background: var(--white); color: var(--ink); }
.sticky-cta .s-quote { background: var(--bronze-grad); color: #1c150a; }
.sticky-cta svg { width: 16px; height: 16px; }

/* ============================================================
   REVEAL (subtle)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__phone { display: none; }
  .hero__grid, .intro__grid, .process__grid, .areas__grid, .contact__grid, .financing__grid { grid-template-columns: 1fr; }
  .hero__image { order: -1; }
  .hero__image img { max-height: 360px; }
  .services__grid, .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox__inner { grid-template-columns: 1fr; max-width: 520px; max-height: 90vh; overflow-y: auto; }
  .lightbox__nav { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .intro__media { order: -1; }
}
@media (max-width: 680px) {
  .trustbar__grid { grid-template-columns: 1fr 1fr; }
  .trust:nth-child(odd) { border-left: none; }
  .trust:nth-child(n+3) { border-top: 1px solid var(--line); }
  .services__grid, .portfolio__grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .form__row { grid-template-columns: 1fr; }
  .sticky-cta { display: grid; }
  .ba__captions { flex-direction: column; gap: 0.3rem; }
  .areas__pins { columns: 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__badge { left: 12px; }
}
@media (max-width: 420px) {
  .services__grid, .portfolio__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
