/* =================================================================
   518 HOME REMODEL — Editorial Luxury design system
   Hand-built, no framework. Bone/espresso/bronze palette.
   ================================================================= */

:root {
  /* Surfaces */
  --bone:      #F7F3EC;
  --bone-2:    #EFE8DC;
  --bone-3:    #E7DECF;
  --paper:     #FCFAF6;
  --ink:       #1C1813;
  --ink-soft:  #5C5347;
  --ink-faint: #8A8073;
  --espresso:  #181310;
  --navy:      #14202E;
  --navy-2:    #1B2C3E;

  /* Accent (refined from the logo's orange) */
  --bronze:      #B9682A;
  --bronze-deep: #97511C;
  --bronze-soft: #C98142;
  --amber:       #E2862C;

  /* Lines & hairlines */
  --line:       rgba(28, 24, 19, 0.10);
  --line-2:     rgba(28, 24, 19, 0.16);
  --line-light: rgba(255, 255, 255, 0.12);

  /* Soft, warm-tinted shadows (no harsh black) */
  --sh-sm:   0 2px 10px -4px rgba(48, 34, 18, 0.18);
  --sh-md:   0 24px 50px -28px rgba(48, 34, 18, 0.30);
  --sh-lg:   0 46px 90px -40px rgba(38, 26, 12, 0.40);
  --sh-card: 0 30px 60px -34px rgba(48, 34, 18, 0.32);

  /* Radii */
  --r-xl:   34px;
  --r-lg:   24px;
  --r-md:   16px;
  --r-sm:   12px;
  --r-pill: 999px;

  /* Motion */
  --ease:      cubic-bezier(0.32, 0.72, 0, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --maxw: 1280px;
  --gut:  clamp(1.15rem, 4vw, 2.5rem);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; border-radius: 4px; }

/* Film-grain overlay (fixed, perf-safe) */
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------- Typography -------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 460;
  font-optical-sizing: auto;
  line-height: 0.98;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-weight: 460;
  color: var(--bronze-deep);
}

h1.display { font-size: clamp(2.7rem, 6.2vw, 5.2rem); }
h2.display { font-size: clamp(2.1rem, 4.6vw, 3.7rem); }
h3.display { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }

.lede {
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 56ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.69rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--bronze-deep);
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(226, 134, 44, 0.16);
}
.eyebrow--light { color: var(--bronze-soft); }
.eyebrow--center { justify-content: center; }

/* ---------------------------- Layout ----------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(4.5rem, 10vw, 8.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .lede { margin-top: 1.25rem; }
.section-head--split {
  display: grid; gap: 1.5rem 3rem;
  grid-template-columns: 1fr;
  max-width: none;
  align-items: end;
}
@media (min-width: 880px) {
  .section-head--split { grid-template-columns: 1.3fr 1fr; }
  .section-head--split .lede { margin-top: 0; padding-bottom: 0.4rem; }
}

/* ------------------------ Buttons / CTAs ------------------------- */
.btn {
  --bg: var(--ink);
  --fg: var(--bone);
  display: inline-flex; align-items: center; gap: 0.85rem;
  padding: 0.92rem 1.05rem 0.92rem 1.5rem;
  background: var(--bg); color: var(--fg);
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.96rem; letter-spacing: -0.01em;
  transition: transform .5s var(--ease), background .4s var(--ease), box-shadow .5s var(--ease);
  box-shadow: var(--sh-sm);
  white-space: nowrap;
}
.btn:hover { box-shadow: var(--sh-md); }
.btn:active { transform: scale(0.975); }
.btn .ico {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  transition: transform .5s var(--ease), background .4s var(--ease);
}
.btn:hover .ico { transform: translate(3px, -2px) scale(1.06); }
.btn .ico svg { width: 15px; height: 15px; }

.btn--bronze { --bg: var(--bronze); --fg: #fff; }
.btn--bronze:hover { --bg: var(--bronze-deep); }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-2);
  padding-left: 1.5rem;
}
.btn--ghost .ico { background: rgba(28,24,19,0.06); }
.btn--ghost:hover { --bg: rgba(28,24,19,0.04); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn--light { --bg: var(--bone); --fg: var(--ink); }
.btn--on-dark.btn--ghost { --fg: #fff; box-shadow: inset 0 0 0 1px var(--line-light); }
.btn--on-dark.btn--ghost .ico { background: rgba(255,255,255,0.10); }

.textlink {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 2px;
  transition: gap .4s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.textlink svg { width: 14px; height: 14px; transition: transform .4s var(--ease); }
.textlink:hover { gap: 0.85rem; color: var(--bronze-deep); border-color: var(--bronze); }
.textlink:hover svg { transform: translateX(3px); }

/* --------------------- Double-bezel frame ----------------------- */
.frame {
  position: relative;
  padding: 8px;
  background: linear-gradient(160deg, rgba(255,255,255,0.7), rgba(231,222,207,0.5));
  border-radius: calc(var(--r-xl) + 8px);
  box-shadow: var(--sh-card), inset 0 1px 0 rgba(255,255,255,0.8);
  ring: 1px;
}
.frame::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px var(--line);
  pointer-events: none;
}
.frame__inner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.4);
  background: var(--bone-3);
}
.frame__inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Deter casual image saving: disables the iOS long-press "Save Image" sheet and drag-to-save */
img { -webkit-touch-callout: none; -webkit-user-drag: none; user-select: none; }

/* Centered brand mark overlaid on a framed photo (homepage hero) */
.frame__brand { position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; pointer-events: none; }
.frame__brand span {
  display: grid; place-items: center;
  width: min(60%, 250px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(247,243,236,0.9), rgba(247,243,236,0.55) 58%, rgba(247,243,236,0) 100%);
}
.frame__brand span::before {
  content: ""; width: 76%; aspect-ratio: 165 / 120;
  background: url("assets/brand/logo.png") center / contain no-repeat;
  filter: drop-shadow(0 4px 12px rgba(16,12,8,0.25));
}

/* ============================ NAV =============================== */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 90;
  display: flex; justify-content: center;
  padding-top: clamp(0.9rem, 2vw, 1.5rem);
  pointer-events: none;
}
.nav__bar {
  pointer-events: auto;
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.4rem);
  width: min(1180px, calc(100% - 2 * var(--gut)));
  padding: 0.55rem 0.6rem 0.55rem 1.4rem;
  background: rgba(250, 247, 241, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-md), inset 0 1px 0 rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.5);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), background .4s var(--ease);
}
.nav.is-hidden .nav__bar { transform: translateY(-130%); }
.nav.is-scrolled .nav__bar { background: rgba(250, 247, 241, 0.86); box-shadow: var(--sh-lg); }

.nav__logo { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; }
.nav__logo img { height: 38px; width: auto; }
.nav__logo .wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__logo .wordmark b { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: -0.01em; }
.nav__logo .wordmark span { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--ink-faint); margin-top: 2px; }

.nav__links { display: none; align-items: center; gap: clamp(1rem, 2.2vw, 1.9rem); }
.nav__links a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 0.3rem 0;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1.5px; background: var(--bronze);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta { display: none; }
@media (min-width: 940px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
}

/* Hamburger */
.nav__burger {
  display: grid; place-items: center;
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  background: var(--ink);
}
@media (min-width: 940px) { .nav__burger { display: none; } }
.nav__burger span {
  display: block; width: 18px; height: 1.6px; background: var(--bone);
  border-radius: 2px;
  transition: transform .45s var(--ease), opacity .3s var(--ease);
}
.nav__burger span + span { margin-top: 5px; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Mobile overlay menu */
.menu {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(20, 16, 12, 0.55);
  backdrop-filter: blur(26px) saturate(120%);
  -webkit-backdrop-filter: blur(26px) saturate(120%);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gut);
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
body.menu-open .menu { opacity: 1; visibility: visible; }
.menu__links { display: flex; flex-direction: column; gap: 0.2rem; }
.menu__links a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 11vw, 3.4rem);
  font-weight: 500; color: var(--bone);
  letter-spacing: -0.02em; line-height: 1.15;
  padding: 0.25rem 0;
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), color .3s var(--ease);
}
.menu__links a:hover { color: var(--bronze-soft); }
body.menu-open .menu__links a { opacity: 1; transform: translateY(0); }
body.menu-open .menu__links a:nth-child(1) { transition-delay: .08s; }
body.menu-open .menu__links a:nth-child(2) { transition-delay: .13s; }
body.menu-open .menu__links a:nth-child(3) { transition-delay: .18s; }
body.menu-open .menu__links a:nth-child(4) { transition-delay: .23s; }
body.menu-open .menu__links a:nth-child(5) { transition-delay: .28s; }
body.menu-open .menu__links a:nth-child(6) { transition-delay: .33s; }
.menu__foot {
  margin-top: clamp(2rem, 6vw, 3.5rem);
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center;
  color: rgba(247,243,236,0.66); font-size: 0.92rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s var(--ease) .4s, transform .6s var(--ease) .4s;
}
.menu__foot a { color: var(--bone); border-bottom: 1px solid rgba(247,243,236,0.3); }
body.menu-open .menu__foot { opacity: 1; transform: translateY(0); }

/* ============================ HERO ============================= */
.hero { position: relative; padding-top: clamp(8.5rem, 16vw, 11rem); padding-bottom: clamp(3rem, 7vw, 5.5rem); }
.hero__grid {
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.06fr 0.94fr; }
}
.hero__title { margin-bottom: 1.6rem; }
.hero__title .display { max-width: 14ch; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  margin-bottom: 1.7rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }

.tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 500; color: var(--ink-soft);
  box-shadow: var(--sh-sm);
}
.tag svg { width: 15px; height: 15px; color: var(--bronze); }

/* Hero visual — z-axis cascade of two framed images */
.hero__visual { position: relative; }
.hero__visual .frame { width: 100%; }
.hero__visual .frame__inner { aspect-ratio: 4 / 5; }
.hero__card {
  position: absolute;
  left: -7%; bottom: -9%;
  width: 46%;
  z-index: 3;
}
.hero__card .frame__inner { aspect-ratio: 3 / 4; }
.hero__badge {
  position: absolute; top: -1.4rem; right: -0.6rem; z-index: 4;
  background: var(--espresso); color: var(--bone);
  border-radius: var(--r-lg);
  padding: 1rem 1.2rem;
  box-shadow: var(--sh-lg);
  text-align: center;
  transform: rotate(3deg);
}
.hero__badge b { font-family: var(--font-display); font-size: 1.7rem; display: block; line-height: 1; }
.hero__badge span { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--bronze-soft); }
@media (max-width: 600px) {
  .hero__card { display: none; }
  .hero__badge { right: -0.2rem; padding: 0.8rem 1rem; }
  .hero__badge b { font-size: 1.3rem; }
}

/* Marquee of service-area names */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  padding-block: 1.15rem;
}
.marquee__track {
  display: flex; gap: 3rem; width: max-content;
  animation: scroll-x 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  display: inline-flex; align-items: center; gap: 1.1rem;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; color: var(--ink-soft); white-space: nowrap;
}
.marquee__track span::after {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--bronze);
}
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ====================== PROOF / STATS BAR ====================== */
.proof { background: var(--bone-2); }
.proof__grid {
  display: grid; gap: 1.5rem 2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px) { .proof__grid { grid-template-columns: repeat(4, 1fr); } }
.proof__item { padding: 0.5rem 0; }
.proof__item b {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem); line-height: 1;
  display: block; color: var(--ink);
}
.proof__item span { display: block; margin-top: 0.6rem; font-size: 0.86rem; color: var(--ink-soft); max-width: 22ch; }

/* ====================== SERVICES (bento) ====================== */
.bento {
  display: grid; gap: clamp(0.8rem, 1.6vw, 1.1rem);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .bento { grid-template-columns: repeat(6, 1fr); } }

.svc {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 300px;
  padding: 1.5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  color: var(--bone);
  isolation: isolate;
  box-shadow: var(--sh-card);
}
.svc img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.svc::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(16,12,8,0) 32%, rgba(16,12,8,0.78) 100%);
  transition: opacity .5s var(--ease);
}
.svc:hover img { transform: scale(1.06); }
.svc h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; letter-spacing: -0.01em; }
.svc p { font-size: 0.9rem; color: rgba(247,243,236,0.82); margin-top: 0.4rem; max-width: 32ch; }
.svc__no { font-size: 0.72rem; letter-spacing: 0.18em; color: var(--bronze-soft); margin-bottom: auto; font-weight: 600; }
.svc__arrow {
  position: absolute; top: 1.3rem; right: 1.3rem;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(247,243,236,0.16);
  backdrop-filter: blur(6px);
  transition: transform .5s var(--ease), background .4s var(--ease);
}
.svc__arrow svg { width: 16px; height: 16px; }
.svc:hover .svc__arrow { transform: rotate(-45deg); background: var(--bronze); }

/* Bento spans (desktop) */
@media (min-width: 720px) {
  .svc--tall { grid-column: span 2; grid-row: span 2; min-height: 0; }
  .svc--wide { grid-column: span 4; }
  .svc--two  { grid-column: span 2; }
  .svc--three{ grid-column: span 3; }
}

/* ====================== APPROACH / FEATURE ==================== */
.approach { background: var(--espresso); color: var(--bone); }
.approach .eyebrow { color: var(--bronze-soft); }
.approach .display { color: var(--bone); }
.approach .display em { color: var(--bronze-soft); }
.approach__lede { color: rgba(247,243,236,0.7); }
.feat-grid {
  display: grid; gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: 1fr;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
@media (min-width: 800px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
.feat {
  padding: clamp(1.6rem, 3vw, 2.3rem);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: background .4s var(--ease), transform .5s var(--ease);
}
.feat:hover { background: rgba(255,255,255,0.06); transform: translateY(-3px); }
.feat__ico {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1.2rem;
  background: rgba(185,104,42,0.16);
  color: var(--bronze-soft);
  border: 1px solid rgba(201,129,66,0.28);
}
.feat__ico svg { width: 23px; height: 23px; }
.feat h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; margin-bottom: 0.5rem; }
.feat p { color: rgba(247,243,236,0.66); font-size: 0.96rem; }

/* ====================== GALLERY (masonry) ==================== */
.gallery__filters {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  margin-bottom: 2.2rem;
}
.chip {
  padding: 0.55rem 1.1rem; border-radius: var(--r-pill);
  font-size: 0.85rem; font-weight: 500; color: var(--ink-soft);
  border: 1px solid var(--line-2); background: var(--paper);
  transition: all .35s var(--ease);
}
.chip:hover { color: var(--ink); border-color: var(--ink-faint); }
.chip.is-active { background: var(--ink); color: var(--bone); border-color: var(--ink); }

.masonry { columns: 1; column-gap: clamp(0.8rem, 1.6vw, 1.1rem); }
@media (min-width: 560px) { .masonry { columns: 2; } }
@media (min-width: 980px) { .masonry { columns: 3; } }
.shot {
  break-inside: avoid; margin-bottom: clamp(0.8rem, 1.6vw, 1.1rem);
  position: relative; border-radius: var(--r-md); overflow: hidden;
  background: var(--bone-3); cursor: pointer;
  box-shadow: var(--sh-sm);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), opacity .4s var(--ease);
}
.shot img { width: 100%; height: auto; transition: transform 1.1s var(--ease); }
.shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,12,8,0) 55%, rgba(16,12,8,0.55) 100%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.shot:hover { box-shadow: var(--sh-md); }
.shot:hover img { transform: scale(1.05); }
.shot:hover::after { opacity: 1; }
.shot__cap {
  position: absolute; left: 1rem; bottom: 0.9rem; z-index: 2;
  color: var(--bone); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.shot:hover .shot__cap { opacity: 1; transform: translateY(0); }
.shot.is-hidden { display: none; }
.shot.clamp-hide { display: none; }

/* Gallery "show more" */
.gallery-more { display: flex; justify-content: center; margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.gallery-more .btn .ico svg { transition: transform .5s var(--ease); }
.gallery-more .btn.is-open .ico svg { transform: rotate(180deg); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(14, 10, 7, 0.92);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(94vw, 1100px); max-height: 86vh;
  width: auto; height: auto; border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  transform: scale(0.96); transition: transform .5s var(--ease);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(247,243,236,0.1); color: var(--bone);
  border: 1px solid rgba(247,243,236,0.18);
  transition: background .3s var(--ease);
}
.lightbox__btn:hover { background: rgba(247,243,236,0.22); }
.lightbox__btn svg { width: 20px; height: 20px; }
.lb-prev { left: clamp(0.6rem, 2vw, 1.8rem); }
.lb-next { right: clamp(0.6rem, 2vw, 1.8rem); }
.lb-close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); transform: none; width: 46px; height: 46px; }
.lb-close:hover { transform: rotate(90deg); }
@media (max-width: 640px) { .lb-prev, .lb-next { display: none; } }

/* ====================== PROCESS (steps) ==================== */
.steps {
  display: grid; gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 680px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative; padding: 2rem 1.6rem;
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.step__no {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--bronze); display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.step__no::before { counter-increment: step; content: "0" counter(step); }
.step__no::after { content: ""; flex: 1; height: 1px; background: var(--line-2); }
.step h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; margin-bottom: 0.55rem; }
.step p { font-size: 0.92rem; color: var(--ink-soft); }

/* ====================== TESTIMONIALS ==================== */
.quotes {
  display: grid; gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  padding: clamp(1.7rem, 3vw, 2.3rem);
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; gap: 1.3rem;
}
.quote--feature { background: var(--navy); color: var(--bone); border-color: transparent; }
.quote--feature .quote__text { color: rgba(247,243,236,0.92); }
.quote--feature .quote__who b { color: var(--bone); }
.quote--feature .quote__who span { color: rgba(247,243,236,0.6); }
.stars { display: flex; gap: 3px; color: var(--amber); }
.stars svg { width: 17px; height: 17px; }
.quote__text {
  font-family: var(--font-display); font-weight: 420;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.5;
  letter-spacing: -0.01em; color: var(--ink);
}
.quote__who { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.quote__av {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  background: var(--bronze); color: #fff;
}
.quote--feature .quote__av { background: var(--bronze-soft); }
.quote__who b { display: block; font-size: 0.95rem; }
.quote__who span { display: block; font-size: 0.82rem; color: var(--ink-faint); }

/* ====================== SERVICE AREAS ==================== */
.areas__grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .areas__grid { grid-template-columns: 1fr 1.05fr; } }
.area-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.area-list a {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.7rem 1.15rem; border-radius: var(--r-pill);
  background: var(--paper); border: 1px solid var(--line-2);
  font-weight: 500; font-size: 0.95rem;
  transition: all .35s var(--ease);
}
.area-list a svg { width: 14px; height: 14px; color: var(--bronze); }
.area-list a:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); transform: translateY(-2px); }
.area-list a:hover svg { color: var(--bronze-soft); }
.areas__map { position: relative; }
.areas__map .frame__inner { aspect-ratio: 4 / 3; }

/* ====================== CONTACT / ESTIMATE ==================== */
.contact { background: var(--espresso); color: var(--bone); position: relative; overflow: hidden; }
.contact::before {
  content: ""; position: absolute; top: -30%; right: -10%;
  width: 50vw; height: 50vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(185,104,42,0.22), transparent 65%);
  pointer-events: none;
}
.contact__grid {
  display: grid; gap: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: 1fr; position: relative;
}
@media (min-width: 920px) { .contact__grid { grid-template-columns: 1fr 1.05fr; } }
.contact .display { color: var(--bone); }
.contact .display em { color: var(--bronze-soft); }
.contact .eyebrow { color: var(--bronze-soft); }
.contact__lede { color: rgba(247,243,236,0.72); margin-top: 1.3rem; }
.contact__list { list-style: none; padding: 0; margin-top: 2.4rem; display: grid; gap: 1.4rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__list .ci {
  width: 44px; height: 44px; flex: none; border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: var(--bronze-soft);
}
.contact__list .ci svg { width: 20px; height: 20px; }
.contact__list b { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(247,243,236,0.5); margin-bottom: 0.2rem; font-weight: 600; }
.contact__list a, .contact__list span { font-size: 1.05rem; color: var(--bone); }

/* Form */
.form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}
.form__row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.1rem; }
.field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: rgba(247,243,236,0.72); text-transform: uppercase; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.98rem; color: var(--bone);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-sm);
  padding: 0.85rem 1rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(247,243,236,0.34); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--bronze-soft); background: rgba(255,255,255,0.08);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23C98142' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.field--error input, .field--error select, .field--error textarea { border-color: #d4694a; }
.field__err { font-size: 0.78rem; color: #e89a82; min-height: 0; display: none; text-transform: none; letter-spacing: 0; font-weight: 500; }
.field--error .field__err { display: block; }
.form .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form__note { font-size: 0.8rem; color: rgba(247,243,236,0.45); margin-top: 1rem; text-align: center; }
.form__success {
  display: none; text-align: center; padding: 1.5rem 0;
}
.form__success.show { display: block; }
.form__success .ok {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1.2rem;
  display: grid; place-items: center; background: rgba(185,104,42,0.16);
  border: 1px solid rgba(201,129,66,0.4); color: var(--bronze-soft);
}
.form__success .ok svg { width: 30px; height: 30px; }
.form__success h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--bone); margin-bottom: 0.5rem; }
.form__success p { color: rgba(247,243,236,0.66); }

/* ============================ FOOTER ========================== */
.footer { background: var(--bone-2); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__top {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem; border-bottom: 1px solid var(--line);
}
@media (min-width: 760px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer__brand img { height: 54px; width: auto; margin-bottom: 1.2rem; }
.footer__brand p { color: var(--ink-soft); font-size: 0.95rem; max-width: 38ch; }
.footer__col h4 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-faint); margin-bottom: 1.1rem; font-weight: 600; }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.footer__col a { color: var(--ink-soft); font-size: 0.96rem; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--bronze-deep); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  align-items: center; padding-block: 2rem;
  font-size: 0.85rem; color: var(--ink-faint);
}
.footer__bottom .badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer__bottom .badges span {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.85rem; border-radius: var(--r-pill);
  background: var(--paper); border: 1px solid var(--line);
  font-size: 0.78rem; color: var(--ink-soft);
}
.footer__bottom .badges svg { width: 13px; height: 13px; color: var(--bronze); }

/* ====================== Scroll reveal ==================== */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  filter: blur(6px);
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft), filter .9s var(--ease-soft);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; filter: blur(0); }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* Section divider line accent */
.rule { height: 1px; background: var(--line); border: 0; }

/* ====================== PROGRESSIVE QUICK FORM ==================== */
.qf {
  margin-top: 2.2rem;
  width: 100%;
  max-width: 480px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.1rem;
  box-shadow: var(--sh-card);
  position: relative;
}
.qf__label {
  display: block;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--bronze-deep);
  margin: 0.2rem 0 0.7rem 0.25rem;
}
.qf__bar { display: flex; gap: 0.5rem; }
.qf__name {
  flex: 1; min-width: 0;
  font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--bone);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  padding: 0.95rem 1.25rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.qf__name::placeholder { color: var(--ink-faint); }
.qf__name:focus { outline: none; border-color: var(--bronze); background: #fff; }
.qf__go {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 0.7rem 0.6rem 1.3rem;
  background: var(--bronze); color: #fff;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.95rem; white-space: nowrap;
  box-shadow: var(--sh-sm);
  transition: transform .5s var(--ease), background .4s var(--ease);
}
.qf__go:hover { background: var(--bronze-deep); }
.qf__go:active { transform: scale(0.97); }
.qf__go .ico {
  width: 32px; height: 32px; flex: none; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,0.16);
  transition: transform .5s var(--ease);
}
.qf__go:hover .ico { transform: translate(2px,-1px); }
.qf__go .ico svg { width: 15px; height: 15px; }

/* Expandable region: grid-rows 0fr -> 1fr animates height cleanly */
.qf__more {
  display: grid; grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .6s var(--ease), opacity .45s var(--ease), margin-top .6s var(--ease);
  margin-top: 0;
}
.qf__more-inner { overflow: hidden; min-height: 0; }
.qf.is-open .qf__more { grid-template-rows: 1fr; opacity: 1; margin-top: 0.95rem; }
.qf .field { margin-bottom: 0.85rem; }
.qf .field:last-child { margin-bottom: 0.2rem; }
.qf .field label { color: var(--ink-soft); }
.qf .field input, .qf .field select, .qf .field textarea {
  color: var(--ink); background: var(--bone);
  border: 1px solid var(--line-2);
}
.qf .field input::placeholder, .qf .field textarea::placeholder { color: var(--ink-faint); }
.qf .field input:focus, .qf .field select:focus, .qf .field textarea:focus {
  border-color: var(--bronze); background: #fff;
}
.qf .field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23B9682A' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.qf__more .form__row { display: grid; gap: 0.85rem; grid-template-columns: 1fr; }
@media (min-width: 480px) { .qf__more .form__row--2 { grid-template-columns: 1fr 1fr; } }
.qf__submit {
  width: 100%; justify-content: center; margin-top: 0.3rem;
}
.qf__hint {
  font-size: 0.78rem; color: var(--ink-faint);
  margin: 0.7rem 0.25rem 0.1rem; display: flex; align-items: center; gap: 0.45rem;
}
.qf__hint svg { width: 14px; height: 14px; color: var(--bronze); flex: none; }
.qf__success { display: none; text-align: center; padding: 1.2rem 0.5rem; }
.qf__success.show { display: block; }
.qf.is-done > :not(.qf__success) { display: none; }
.qf__success .ok {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 0.9rem;
  display: grid; place-items: center; background: rgba(185,104,42,0.14);
  border: 1px solid rgba(185,104,42,0.32); color: var(--bronze-deep);
}
.qf__success .ok svg { width: 26px; height: 26px; }
.qf__success h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; margin-bottom: 0.35rem; }
.qf__success p { color: var(--ink-soft); font-size: 0.95rem; }

/* ====================== SUBPAGE: breadcrumb ==================== */
.crumb {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.84rem; color: var(--ink-soft); margin-bottom: 1.1rem;
}
.crumb a { color: var(--ink-soft); transition: color .3s var(--ease); }
.crumb a:hover { color: var(--bronze-deep); }
.crumb svg { width: 13px; height: 13px; opacity: 0.6; }

/* ====================== SPLIT (image + text) ==================== */
.split {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--rev .split__media { order: 2; }
}
.split__media .frame__inner { aspect-ratio: 4 / 5; }
.split--wide .split__media .frame__inner { aspect-ratio: 4 / 3; }
.split h2 { margin-bottom: 1.2rem; }
.split .lede { margin-bottom: 1.6rem; }

/* Checklist */
.checklist { list-style: none; padding: 0; display: grid; gap: 0.9rem; }
.checklist li { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 1rem; color: var(--ink); }
.checklist .ck {
  width: 26px; height: 26px; flex: none; border-radius: 50%;
  display: grid; place-items: center; margin-top: 1px;
  background: rgba(185,104,42,0.12); color: var(--bronze-deep);
  border: 1px solid rgba(185,104,42,0.22);
}
.checklist .ck svg { width: 14px; height: 14px; }
.checklist b { font-weight: 600; }
.checklist span { color: var(--ink-soft); font-weight: 400; }

/* Logic-grouped list (no card overuse) for sub-services */
.stack { display: grid; grid-template-columns: 1fr; }
@media (min-width: 760px) { .stack { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem,5vw,4rem); } }
.stack__item {
  padding: 1.7rem 0; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
}
.stack__num { font-family: var(--font-display); color: var(--bronze); font-size: 1.05rem; font-weight: 600; }
.stack__item h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; margin-bottom: 0.4rem; }
.stack__item p { color: var(--ink-soft); font-size: 0.96rem; }

/* CTA band (subpage) */
.ctaband {
  background: var(--espresso); color: var(--bone);
  border-radius: var(--r-xl); padding: clamp(2.4rem, 5vw, 4rem);
  display: grid; gap: 2rem; align-items: center;
  position: relative; overflow: hidden;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .ctaband { grid-template-columns: 1.2fr 1fr; } }
.ctaband::before {
  content: ""; position: absolute; bottom: -40%; left: 30%;
  width: 40vw; height: 40vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(185,104,42,0.22), transparent 65%);
  pointer-events: none;
}
.ctaband .display { color: var(--bone); position: relative; }
.ctaband .display em { color: var(--bronze-soft); }
.ctaband p { color: rgba(247,243,236,0.72); margin-top: 1rem; position: relative; max-width: 46ch; }
.ctaband__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; position: relative; }
