/* ============================================================
   North Home Solutions — Destin & Santa Rosa Beach, FL
   Design system: "Coastal Craft Editorial"
   Ink charcoal + brass, Fraunces display / Archivo UI
   ============================================================ */

:root {
  --ink: #14181d;
  --ink-2: #1e242b;
  --ink-3: #2a323b;
  --paper: #f7f4ee;
  --paper-2: #efeae0;
  --white: #fffdf9;
  --brass: #b3914e;
  --brass-2: #c9a863;
  --brass-deep: #8f7239;
  --brass-em: #a1823f;
  --brass-soft: rgba(179, 145, 78, 0.14);
  --stone: #6e6a5e;
  --stone-2: #9a948a;
  --line: #e2dccf;
  --line-dark: rgba(255, 255, 255, 0.14);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Archivo", -apple-system, "Helvetica Neue", sans-serif;

  --w-max: 1320px;
  --pad: clamp(20px, 4.5vw, 56px);
  --radius: 2px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--brass); color: var(--white); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 300;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }

a:focus-visible, button:focus-visible, .tile:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brass-deep);
  outline-offset: 2px;
}
.hero a:focus-visible, .footer a:focus-visible, .cta a:focus-visible,
.lightbox button:focus-visible, .mobile-menu a:focus-visible {
  outline-color: var(--brass-2);
}

/* ---------- Utilities ---------- */
.wrap {
  max-width: var(--w-max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.label::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--brass);
  flex: none;
}
.label .num { color: var(--stone); font-weight: 500; }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.015em;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--brass-em);
}
.hero .display em,
.featured .display em,
.process .display em,
.cta .display em {
  color: var(--brass-2);
}

.section { padding: clamp(84px, 10vw, 150px) 0; }

.sec-head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 72px); }
.sec-head h2 { font-size: clamp(34px, 4.6vw, 62px); margin-top: 22px; }
.sec-head p.lead { margin-top: 20px; font-size: 17px; color: var(--stone); max-width: 560px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s, transform 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn svg { flex: none; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn-brass { background: var(--brass-deep); color: var(--white); }
.btn-brass:hover { background: var(--brass-em); }

.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.4); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }

.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--ink-3); }

.btn-line { border: 1px solid var(--ink); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--white); }

/* ---------- Reveal animations ---------- */
.js .rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--rv-delay, 0s);
}
.js .rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s, transform 0.4s var(--ease-out);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.header.scrolled {
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header.hidden { transform: translateY(-100%); }

.brand { display: grid; align-items: center; }
.brand .brand-mark {
  grid-area: 1 / 1;
  height: 56px;
  width: auto;
  transition: opacity 0.35s var(--ease-out);
}
.brand .brand-light { filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.35)); }
.brand .brand-dark { opacity: 0; }
.header.scrolled .brand-light { opacity: 0; }
.header.scrolled .brand-dark { opacity: 1; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header.scrolled .nav a { color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.3s;
}
.header-phone svg { color: var(--brass-2); }
.header.scrolled .header-phone { color: var(--ink); }
.header-cta .btn { padding: 13px 24px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  margin-right: -10px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease-out), opacity 0.3s, background 0.3s;
}
.header.scrolled .burger span { background: var(--ink); }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0s 0.45s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transition: opacity 0.45s var(--ease-out), visibility 0s; }
.mobile-menu a.mm-link {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 44px);
  color: var(--paper);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
}
.mobile-menu.open a.mm-link { opacity: 1; transform: none; }
.mobile-menu a.mm-link:hover { color: var(--brass-2); }
.mobile-menu a.mm-link .mm-num {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--brass);
}
.mobile-menu .mm-foot { margin-top: 44px; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu .mm-foot .btn { width: 100%; }
.mobile-menu .mm-phone {
  color: var(--paper);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.mobile-menu .mm-phone svg { color: var(--brass-2); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 18s var(--ease-out) forwards;
}
@keyframes hero-zoom {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(12, 15, 19, 0.6) 0%, rgba(12, 15, 19, 0.3) 45%, rgba(12, 15, 19, 0.12) 72%),
    linear-gradient(to top, rgba(12, 15, 19, 0.88) 0%, rgba(12, 15, 19, 0.28) 45%, rgba(12, 15, 19, 0.52) 100%);
}
.hero-inner {
  width: 100%;
  padding-top: 160px;
  padding-bottom: clamp(48px, 7vh, 92px);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 26px;
}
.hero-kicker::before, .hero-kicker::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--brass-2);
  opacity: 0.7;
}
.hero h1 {
  font-size: clamp(44px, 7.2vw, 96px);
  max-width: 13ch;
}
.hero-sub {
  margin-top: 26px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: rgba(255, 253, 249, 0.85);
  max-width: 54ch;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(40px, 6vh, 64px);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  flex-wrap: wrap;
}
.hero-meta li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 253, 249, 0.92);
}
.hero-meta svg { color: var(--brass-2); flex: none; }

.scroll-hint {
  position: absolute;
  right: clamp(20px, 4vw, 52px);
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  writing-mode: vertical-rl;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--brass-2), transparent);
  animation: drip 2.2s var(--ease-out) infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   Marquee (service area ticker)
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track i {
  width: 5px;
  height: 5px;
  background: var(--brass);
  border-radius: 50%;
  flex: none;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   Services
   ============================================================ */
.services { background: var(--paper); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.svc {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.svc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: transform 1.1s var(--ease-out);
}
.svc:hover img { transform: scale(1.05); }
.svc::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(10, 13, 17, 0.92) 0%, rgba(10, 13, 17, 0.18) 55%, rgba(10, 13, 17, 0.12) 100%);
  transition: background 0.5s;
}
.svc-body { padding: 30px; width: 100%; }
.svc-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--brass-2);
  display: block;
  margin-bottom: 10px;
}
.svc h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 31px);
  font-weight: 500;
  line-height: 1.12;
}
.svc p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 253, 249, 0.82);
  max-width: 44ch;
}
.svc-tagrow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.svc-tagrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 100px;
  color: rgba(255, 253, 249, 0.9);
}
.svc-a { grid-column: span 7; min-height: 520px; }
.svc-b { grid-column: span 5; min-height: 520px; }
.svc-c, .svc-d, .svc-e { grid-column: span 4; }

/* ============================================================
   Featured project (split)
   ============================================================ */
.featured { background: var(--ink); color: var(--paper); }
.featured .label { color: var(--brass-2); }
.featured-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.featured-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.featured-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.featured-media .fm-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(12, 15, 19, 0.78);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-2);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
}
.featured-copy h2 { font-size: clamp(32px, 3.8vw, 52px); margin-top: 22px; }
.featured-copy > p { margin-top: 22px; color: rgba(247, 244, 238, 0.78); font-size: 16.5px; max-width: 52ch; }
.featured-list { margin-top: 34px; display: grid; gap: 0; }
.featured-list li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 15px;
  color: rgba(247, 244, 238, 0.9);
  align-items: baseline;
}
.featured-list li:last-child { border-bottom: 1px solid var(--line-dark); }
.featured-list b { color: var(--paper); font-weight: 600; }
.featured-list .fl-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass-2);
  font-size: 17px;
  flex: none;
  width: 28px;
}
.featured-copy .btn { margin-top: 36px; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery { background: var(--paper); }
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filters button {
  padding: 11px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--stone);
  background: transparent;
  transition: all 0.3s var(--ease-out);
}
.filters button:hover { border-color: var(--brass); color: var(--brass); }
.filters button.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

.masonry {
  columns: 3;
  column-gap: 20px;
}
.tile {
  position: relative;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  break-inside: avoid;
  background: var(--paper-2);
}
.tile img {
  width: 100%;
  transition: transform 0.9s var(--ease-out);
}
.tile:hover img { transform: scale(1.04); }
.tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 18px 14px;
  background: linear-gradient(to top, rgba(10, 13, 17, 0.75), transparent);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.tile:hover figcaption { opacity: 1; transform: none; }
.tile.hide { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 12, 15, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0s 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; transition: opacity 0.35s var(--ease-out), visibility 0s; }
.lightbox img {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lb-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 253, 249, 0.85);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: background 0.3s, border-color 0.3s;
}
.lb-btn:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); }
.lb-prev { left: clamp(12px, 3vw, 40px); }
.lb-next { right: clamp(12px, 3vw, 40px); }
.lb-close {
  position: absolute;
  top: 24px;
  right: clamp(12px, 3vw, 40px);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: background 0.3s, border-color 0.3s;
}
.lb-close:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); }

/* ============================================================
   Craft / About  (Quality Work. Honest Service.)
   ============================================================ */
.craft { background: var(--paper-2); position: relative; overflow: hidden; }
.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.craft-media { position: relative; }
.craft-media .cm-main {
  border-radius: var(--radius);
  overflow: hidden;
}
.craft-media .cm-main img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.craft-media .cm-accent {
  position: absolute;
  right: -8%;
  bottom: -10%;
  width: 46%;
  border: 6px solid var(--paper-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(20, 24, 29, 0.18);
}
.craft-media .cm-accent img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.craft-copy h2 { font-size: clamp(32px, 4vw, 56px); margin-top: 22px; }
.craft-copy > p { margin-top: 22px; color: var(--stone); font-size: 16.5px; max-width: 54ch; }
.values { margin-top: 38px; display: grid; gap: 0; }
.values li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}
.values li:last-child { border-bottom: 1px solid var(--line); }
.values .v-ico {
  flex: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brass-soft);
  color: var(--brass);
  border-radius: 50%;
}
.values h3 { font-size: 16px; font-weight: 700; letter-spacing: 0.02em; }
.values p { margin-top: 4px; font-size: 14.5px; color: var(--stone); line-height: 1.55; }

/* ============================================================
   Process
   ============================================================ */
.process { background: var(--ink); color: var(--paper); }
.process .label { color: var(--brass-2); }
.process .sec-head p.lead { color: rgba(247, 244, 238, 0.7); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.step {
  padding: 36px 28px 44px 0;
  border-right: 1px solid var(--line-dark);
  padding-left: 28px;
  position: relative;
}
.step:first-child { padding-left: 0; }
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 4vw, 56px);
  color: transparent;
  -webkit-text-stroke: 1px var(--brass-2);
  line-height: 1;
}
.step h3 { margin-top: 22px; font-size: 18px; font-weight: 700; letter-spacing: 0.02em; }
.step p { margin-top: 10px; font-size: 14.5px; line-height: 1.65; color: rgba(247, 244, 238, 0.72); }

/* ============================================================
   Service area
   ============================================================ */
.area { background: var(--paper); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.area-copy h2 { font-size: clamp(32px, 4vw, 54px); margin-top: 22px; }
.area-copy > p { margin-top: 22px; color: var(--stone); font-size: 16.5px; max-width: 50ch; }
.area-note {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--brass-soft);
  border-left: 2px solid var(--brass);
  font-size: 14.5px;
  color: var(--ink-2);
}
.towns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.towns li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.towns svg { color: var(--brass); flex: none; }

/* ============================================================
   CTA band + contact
   ============================================================ */
.cta {
  position: relative;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(12, 15, 19, 0.94) 30%, rgba(12, 15, 19, 0.72) 100%);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(44px, 6vw, 100px);
  align-items: center;
}
.cta-copy .label { color: var(--brass-2); }
.cta-copy h2 { font-size: clamp(36px, 4.6vw, 64px); margin-top: 22px; }
.cta-copy > p { margin-top: 22px; font-size: 17px; color: rgba(255, 253, 249, 0.8); max-width: 46ch; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  color: var(--white);
  transition: color 0.3s;
}
.cta-phone:hover { color: var(--brass-2); }
.cta-phone svg { color: var(--brass-2); }
.cta-points { display: flex; gap: 26px; margin-top: 30px; flex-wrap: wrap; }
.cta-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 253, 249, 0.85);
}
.cta-points svg { color: var(--brass-2); }
.cta-points a { color: var(--brass-2); transition: color 0.3s; }
.cta-points a:hover { color: var(--white); }

/* Form */
.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 4px;
  padding: clamp(28px, 3vw, 44px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
}
.form-card .fc-sub { margin-top: 8px; font-size: 14px; color: var(--stone); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px var(--brass-soft);
}
.form-card .btn { width: 100%; margin-top: 22px; }
.form-msg { margin-top: 14px; font-size: 14px; text-align: center; color: var(--brass-deep); display: none; }
.form-msg.show { display: block; }
.form-err { margin-top: 14px; font-size: 14px; text-align: center; color: #a4281f; }
.form-err:empty { display: none; }
.field input[aria-invalid="true"] { border-color: #a4281f; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(247, 244, 238, 0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 56px;
}
.footer-brand img { height: 88px; width: auto; }
.footer-brand p { margin-top: 18px; font-size: 14.5px; line-height: 1.7; max-width: 34ch; }
.footer h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: 14.5px; transition: color 0.3s; }
.footer ul a:hover { color: var(--white); }
.footer-bar {
  border-top: 1px solid var(--line-dark);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(247, 244, 238, 0.5);
}

/* Sticky mobile call bar */
.callbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.callbar .btn { flex: 1; padding: 14px 10px; font-size: 12px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .svc-a, .svc-b { grid-column: span 12; min-height: 440px; }
  .svc-c, .svc-d, .svc-e { grid-column: span 12; min-height: 380px; }
  .masonry { columns: 2; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line-dark); padding-left: 0; }
  .steps { border-top: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav, .header-cta .btn { display: none; }
  .burger { display: flex; }
  .featured-grid, .craft-grid, .area-grid, .cta-grid { grid-template-columns: 1fr; }
  .craft-media .cm-accent { right: 4%; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 16px 28px; }
  .callbar { display: flex; }
  body { padding-bottom: 64px; }
  .scroll-hint { display: none; }
}

@media (max-width: 560px) {
  .hero-kicker::before, .hero-kicker::after { display: none; }
  .hero-kicker { letter-spacing: 0.16em; }
  .masonry { columns: 1; }
  .steps { grid-template-columns: 1fr; }
  .header-inner { height: 72px; }
  .brand .brand-mark { height: 46px; }
  .hero-actions .btn { width: 100%; }
  .towns { grid-template-columns: 1fr; }
}

/* ============================================================
   Video tiles + lightbox video
   ============================================================ */
.tile-video { cursor: pointer; }
/* without JS there is no lightbox — don't promise a play action */
html:not(.js) .tile-video .play-badge { display: none; }
.tile-video .play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(16, 20, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.tile-video .play-badge svg { margin-left: 3px; }
.tile-video:hover .play-badge,
.tile-video:focus-visible .play-badge {
  background: var(--brass-deep);
  transform: translate(-50%, -50%) scale(1.08);
}
.lightbox .lb-video {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   Hero light variant — A/B demo, activated via ?hero=light
   ============================================================ */
.hero-visual { display: none; }
.hero-light .hero {
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  align-items: center;
}
.hero-light .hero-media,
.hero-light .hero::after { display: none; }
.hero-light .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.76fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
  padding-top: clamp(96px, 13vh, 132px);
}
.hero-light .hero h1 { font-size: clamp(42px, 6.4vw, 84px); }
.hero-light .hero-meta { margin-top: clamp(30px, 4.5vh, 48px); }
.hero-light .hero-visual {
  display: block;
  position: relative;
  z-index: 0;
}
.hero-light .hv-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(20, 24, 29, 0.16);
}
.hero-light .hv-main img {
  width: 100%;
  height: auto;
  max-height: min(64vh, 620px);
  object-fit: cover;
  /* favour the lower half so the mosaic pan reads as a shower, not a slab wall */
  object-position: center center;
  display: block;
}
.hero-light .hero-visual::before {
  /* offset brass frame — quiet editorial accent */
  content: "";
  position: absolute;
  top: -22px;
  right: -22px;
  width: 58%;
  height: 52%;
  border: 1px solid var(--brass);
  border-radius: var(--radius);
  opacity: 0.55;
  z-index: -1;
}
.hero-light .hv-accent {
  position: absolute;
  left: max(-48px, -5vw);
  bottom: -34px;
  width: min(56%, 320px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 5px solid var(--paper);
  box-shadow: 0 24px 48px rgba(20, 24, 29, 0.2);
}
.hero-light .hv-accent img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .hero-light .hero-inner { grid-template-columns: 1fr; }
  .hero-light .hero-visual {
    margin: 44px auto 26px;
    max-width: 440px;
    width: 100%;
  }
  .hero-light .hv-main img { max-height: 44vh; }
  .hero-light .hv-accent { left: -10px; bottom: -26px; }
}
.hero-light .hero-kicker { color: var(--brass-deep); }
.hero-light .hero-kicker::before,
.hero-light .hero-kicker::after { background: var(--brass-deep); }
.hero-light .hero .display em { color: var(--brass-em); }
.hero-light .hero-sub { color: rgba(20, 24, 29, 0.78); }
.hero-light .hero .btn-ghost { border-color: rgba(20, 24, 29, 0.35); color: var(--ink); }
.hero-light .hero .btn-ghost:hover { border-color: var(--ink); background: rgba(20, 24, 29, 0.05); }
.hero-light .hero-meta { border-top-color: rgba(20, 24, 29, 0.16); }
.hero-light .hero-meta li { color: rgba(20, 24, 29, 0.85); }
.hero-light .hero-meta svg { color: var(--brass-deep); }
.hero-light .scroll-hint { color: rgba(20, 24, 29, 0.55); }
.hero-light .scroll-hint::after { background: linear-gradient(to bottom, var(--brass-deep), transparent); }
.hero-light .header:not(.scrolled) .brand-light { opacity: 0; }
.hero-light .header:not(.scrolled) .brand-dark { opacity: 1; }
.hero-light .header:not(.scrolled) .nav a { color: var(--ink); }
.hero-light .header:not(.scrolled) .header-phone { color: var(--ink); }
.hero-light .header:not(.scrolled) .header-phone svg { color: var(--brass-deep); }
.hero-light .header:not(.scrolled) .burger span { background: var(--ink); }
/* open mobile menu is a dark overlay — header chrome must go light again */
html.menu-open .header:not(.scrolled) .burger span { background: var(--paper); }
html.menu-open .header:not(.scrolled) .header-phone { color: var(--paper); }

/* ============================================================
   Screenshot helper — disable animations via ?noanim=1
   ============================================================ */
.noanim .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
.noanim .hero-media img { animation: none !important; }
.noanim .marquee-track { animation: none !important; }
.noanim .scroll-hint::after { animation: none !important; }
