/* ==========================================================================
   WOLFEBUILT — wolfebuilt.com  (v2)
   Dark industrial + wolf identity. Edit :root to re-brand instantly.
   ========================================================================== */
:root {
  --bg: #0c0b0a;             /* page background (warm black) */
  --bg-2: #131110;           /* raised panels */
  --bg-3: #1a1714;           /* cards */
  --ink: #f4f1ea;
  --ink-dim: rgba(244, 241, 234, 0.64);
  --steel: #9a968e;
  --bronze: #b09a77;
  --bronze-bright: #d8bd8e;
  --bronze-deep: #7d6a4d;
  --line: rgba(176, 154, 119, 0.22);
  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--bronze); color: #0c0b0a; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wolf-svg { fill: currentColor; }

/* film-grain overlay for texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Utility type ---------- */
.eyebrow {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bronze);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow .wolf-icon { width: 30px; height: 30px; flex-shrink: 0; object-fit: contain; }
.wolf-icon { object-fit: contain; }

.display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.section { padding: 120px 6vw; max-width: 1440px; margin: 0 auto; position: relative; }
.section-head { margin-bottom: 60px; display: grid; gap: 20px; }
.section-head h2 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); }
.section-head h2 .accent { color: var(--bronze-bright); }
.section-head p { max-width: 580px; color: var(--ink-dim); font-size: 1.05rem; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 34px;
  border: 1px solid var(--bronze);
  color: #0c0b0a;
  background: linear-gradient(135deg, var(--bronze-bright), var(--bronze));
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s, filter 0.3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 14px 40px rgba(176,154,119,0.3); }
.btn.ghost { background: rgba(12,11,10,0.4); color: var(--ink); border-color: rgba(244,241,234,0.35); backdrop-filter: blur(6px); }
.btn.ghost:hover { border-color: var(--bronze); color: var(--bronze-bright); box-shadow: none; }
.btn .arrow { transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(5px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4vw;
  transition: background 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(12, 11, 10, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 12px 4vw;
}
.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand-logo { height: 44px; width: auto; }
.brand-mark { width: 40px; height: 40px; color: var(--bronze); }
.brand-text { display: grid; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: 0.06em; }
.brand-sub { font-size: 8.5px; letter-spacing: 0.32em; color: var(--bronze); font-weight: 600; margin-top: 4px; text-transform: uppercase; white-space: nowrap; }
.nav-links { display: flex; gap: 34px; font-size: 13px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); }
.nav-links a { transition: color 0.25s; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--bronze); transition: width 0.3s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.nav-phone { font-weight: 700; font-size: 14px; letter-spacing: 0.08em; color: var(--ink-dim); transition: color 0.25s; white-space: nowrap; }
.nav-phone:hover { color: var(--bronze-bright); }
.nav .btn { padding: 12px 22px; font-size: 11.5px; }

/* ---------- Cinematic scrub sections ---------- */
.cinematic { position: relative; height: 520vh; }
.cinematic.short { height: 400vh; }
.cinematic.tall { height: 680vh; }
.cinematic .sticky {
  position: sticky;
  top: 0;
  height: 100vh; height: 100svh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #080706;
}
.cinematic canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(130% 95% at 50% 42%, transparent 42%, rgba(0,0,0,0.7) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 26%, transparent 68%, rgba(8,7,6,0.92) 100%);
}

/* Overlay copy inside scrub sections */
.overlay { position: absolute; inset: 0; z-index: 10; pointer-events: none; }
.reveal-line {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 0 4vw;
  opacity: 0;
  will-change: opacity, transform;
}
.reveal-line .big {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.7rem, 8.5vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-shadow: 0 6px 60px rgba(0,0,0,0.9);
}
.reveal-line .big .accent { color: var(--bronze-bright); }
.reveal-line .small {
  display: block;
  margin-top: 20px;
  font-size: clamp(0.78rem, 1.4vw, 1.02rem);
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.85);
}

/* Waypoint chips — room labels that change as you scroll the house tour */
.reveal-line.wp {
  place-content: end start;
  text-align: left;
  padding: 0 0 150px 6vw;
}
.wp-chip { display: grid; gap: 6px; }
.wp-chip .wp-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bronze-bright);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wp-chip .wp-kicker::before { content: ""; width: 26px; height: 2px; background: var(--bronze); }
.wp-chip .wp-room {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1;
  text-shadow: 0 4px 40px rgba(0,0,0,0.9);
}

/* BEFORE / AFTER stamps in the renovation scrub */
.reveal-line.stamp-left  { place-content: start start; text-align: left;  padding: 130px 0 0 6vw; }
.reveal-line.stamp-right { place-content: start end;   text-align: right; padding: 130px 6vw 0 0; }
.stamp {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  padding: 10px 20px 10px 24px;
  border: 2px solid var(--bronze);
  color: var(--bronze-bright);
  background: rgba(12,11,10,0.55);
  backdrop-filter: blur(4px);
}
.stamp.ghosted { border-color: rgba(244,241,234,0.4); color: rgba(244,241,234,0.75); }

/* Hero-only chrome */
.hero-intro { pointer-events: none; }
.hero-cta {
  position: absolute;
  bottom: 132px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  gap: 16px;
  pointer-events: auto;
}
.hero-badges {
  position: absolute;
  bottom: 84px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  gap: 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.68);
  white-space: nowrap;
}
.hero-badges span { display: flex; align-items: center; gap: 10px; }
.hero-badges span::before { content: ""; width: 5px; height: 5px; background: var(--bronze); transform: rotate(45deg); }
.progress {
  position: absolute;
  left: 4vw; right: 4vw; bottom: 40px;
  height: 1px;
  background: rgba(244,241,234,0.14);
  z-index: 12;
}
.progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--bronze), var(--bronze-bright)); box-shadow: 0 0 14px rgba(176,154,119,0.7); }
.scroll-hint {
  position: absolute;
  bottom: 52px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.55);
  animation: bob 2s ease-in-out infinite;
  transition: opacity 0.4s;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }

/* ---------- Marquee ticker ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #14110e, #0e0c0a);
  padding: 18px 0;
  white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 0; animation: ticker 30s linear infinite; will-change: transform; }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.8);
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee-track span::after { content: "\25C6"; color: var(--bronze); font-size: 0.7rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Quick estimate bar (subtle inline form) ---------- */
.quickbar {
  background: linear-gradient(180deg, #16130f, #100e0c);
  border-bottom: 1px solid var(--line);
  padding: 22px 6vw;
}
.quickbar-form {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.quickbar-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.25rem;
  color: var(--ink);
  margin-right: auto;
}
.quickbar-label .wolf-icon { width: 32px; height: 32px; }
.quickbar-form input, .quickbar-form select {
  background: rgba(10,9,8,0.6);
  border: 1px solid rgba(244,241,234,0.16);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  width: 170px;
}
.quickbar-form select { width: 160px; background-image: linear-gradient(45deg, transparent 50%, var(--bronze) 50%), linear-gradient(135deg, var(--bronze) 50%, transparent 50%); background-position: calc(100% - 19px) 50%, calc(100% - 13px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.quickbar-form input:focus, .quickbar-form select:focus { border-color: var(--bronze); }
.quickbar-form .btn { padding: 13px 24px; font-size: 11.5px; }
.quickbar-done {
  max-width: 1440px;
  margin: 0 auto;
  font-weight: 600;
  color: var(--bronze-bright);
  letter-spacing: 0.06em;
  padding: 6px 0;
}

/* ---------- Stats ---------- */
.stats { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.stats-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 66px 6vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat { display: grid; gap: 8px; text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  color: var(--bronze-bright);
  line-height: 1;
}
.stat-label { font-size: 12px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-dim); }

/* ---------- Services ---------- */
.services-bg { background: radial-gradient(70% 60% at 15% 0%, rgba(176,154,119,0.07), transparent 60%); overflow: hidden; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative;
  background: linear-gradient(160deg, var(--bg-3), #141210);
  border: 1px solid rgba(176,154,119,0.16);
  padding: 42px 34px 38px;
  display: grid;
  gap: 15px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.35s, box-shadow 0.35s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(176,154,119,0.5); box-shadow: 0 24px 60px rgba(0,0,0,0.55); }
.service-card::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--bronze-bright), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover::after { transform: scaleX(1); }
.service-top { display: flex; justify-content: space-between; align-items: center; }
.service-num { font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: 0.2em; color: var(--bronze); }
.service-top .wolf-icon { width: 34px; height: 34px; opacity: 0.45; transition: opacity 0.3s, transform 0.3s; }
.service-card:hover .wolf-icon { opacity: 1; transform: scale(1.12); }
.service-card h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.7rem; letter-spacing: 0.03em; }
.service-card p { color: var(--ink-dim); font-size: 0.97rem; }

/* ---------- Services 3D coverflow ---------- */
.svc-carousel { display: grid; gap: 28px; }
.svc-stage {
  position: relative;
  height: 360px;
  perspective: 1500px;
  transform-style: preserve-3d;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.svc-card {
  position: absolute;
  left: 50%; top: 10px;
  width: min(440px, 80vw);
  min-height: 300px;
  padding: 40px 36px;
  display: grid;
  gap: 15px;
  align-content: start;
  background: linear-gradient(160deg, var(--bg-3), #141210);
  border: 1px solid rgba(176,154,119,0.22);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.65s, filter 0.65s;
  will-change: transform, opacity;
  cursor: pointer;
  backface-visibility: hidden;
}
.svc-card.is-active { cursor: default; border-color: rgba(176,154,119,0.55); }
.svc-card.is-active::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--bronze-bright), transparent);
}
.svc-card h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.8rem; letter-spacing: 0.03em; }
.svc-card p { color: var(--ink-dim); font-size: 1rem; }
.svc-nav { display: flex; align-items: center; justify-content: center; gap: 22px; }
.svc-dots { display: flex; gap: 10px; }
.svc-dot {
  width: 8px; height: 8px;
  border: none;
  background: rgba(244,241,234,0.22);
  transform: rotate(45deg);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.svc-dot.on { background: var(--bronze-bright); transform: rotate(45deg) scale(1.35); }

/* ---------- WhatsApp floating wolf ---------- */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 300;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1c1815, #0c0b0a);
  border: 1.5px solid var(--bronze);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 34px rgba(0,0,0,0.6), 0 0 0 0 rgba(37,211,102,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: wa-pulse 3s ease-out infinite;
}
.wa-fab:hover { transform: scale(1.09); }
.wa-fab img { width: 40px; height: 40px; object-fit: contain; }
.wa-badge {
  position: absolute;
  right: -4px; bottom: -2px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #25d366;
  border: 2px solid #0c0b0a;
  display: grid;
  place-items: center;
}
.wa-badge svg { width: 14px; height: 14px; fill: #fff; }
@keyframes wa-pulse {
  0% { box-shadow: 0 10px 34px rgba(0,0,0,0.6), 0 0 0 0 rgba(37,211,102,0.35); }
  60% { box-shadow: 0 10px 34px rgba(0,0,0,0.6), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 34px rgba(0,0,0,0.6), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Our Work — scrollable showcase with callouts ---------- */
.work { padding-bottom: 110px; background: radial-gradient(70% 60% at 85% 10%, rgba(176,154,119,0.06), transparent 60%); overflow: hidden; }
.work-head-wrap { display: flex; justify-content: space-between; align-items: end; gap: 30px; padding-bottom: 44px; }
.work-arrows { display: flex; gap: 12px; flex-shrink: 0; }
.work-arrow {
  width: 54px; height: 54px;
  border: 1px solid var(--line);
  background: rgba(26,23,20,0.7);
  color: var(--bronze-bright);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.15s;
}
.work-arrow:hover { border-color: var(--bronze); background: rgba(176,154,119,0.14); }
.work-arrow:active { transform: scale(0.94); }

.work-strip {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 6vw 26px;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.work-strip::-webkit-scrollbar { display: none; }
.work-strip.dragging { cursor: grabbing; scroll-snap-type: none; }
.work-strip.dragging .work-card { pointer-events: none; }

.work-card {
  position: relative;
  flex: 0 0 min(66vw, 620px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(176,154,119,0.25);
  scroll-snap-align: center;
  user-select: none;
  -webkit-user-select: none;
  background: var(--bg-3);
}
.work-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 5s ease; }
.work-card:hover > img { transform: scale(1.05); }
.work-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,7,6,0.25) 0%, transparent 35%, transparent 55%, rgba(8,7,6,0.88) 100%);
  pointer-events: none;
}
.work-info { position: absolute; left: 24px; right: 24px; bottom: 20px; display: grid; gap: 2px; pointer-events: none; }
.work-num { font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: 0.3em; color: var(--bronze-bright); }
.work-info h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.9rem; letter-spacing: 0.03em; line-height: 1; }
.work-info p { color: rgba(244,241,234,0.7); font-size: 0.9rem; }

/* callout boxes that point at details */
.hotspot { position: absolute; left: var(--hx); top: var(--hy); pointer-events: none; display: flex; align-items: center; }
.hotspot.flip { flex-direction: row-reverse; transform: translateX(-100%); }
.hotspot.flip .hs-label { margin-left: 0; margin-right: 14px; border-left: 1px solid rgba(176,154,119,0.5); border-right: 2px solid var(--bronze-bright); }
.hotspot.flip .hs-label::before { left: auto; right: -14px; }
.hs-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bronze-bright);
  box-shadow: 0 0 0 3px rgba(12,11,10,0.55);
  position: relative;
  flex-shrink: 0;
}
.hs-dot::after {
  content: "";
  position: absolute; inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(216,189,142,0.8);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
.hs-label {
  margin-left: 14px;
  position: relative;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(12,11,10,0.78);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(176,154,119,0.5);
  border-left: 2px solid var(--bronze-bright);
  padding: 8px 12px;
  white-space: nowrap;
}
.hs-label::before {
  content: "";
  position: absolute; left: -14px; top: 50%;
  width: 14px; height: 1px;
  background: var(--bronze-bright);
}
.work-hint {
  max-width: 1440px;
  margin: 18px auto 0;
  padding: 0 6vw;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.45);
}
.work-hint b { color: var(--bronze); font-weight: 700; }

/* ---------- Before / After sliders ---------- */
.proof { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.proof { padding-bottom: 90px; overflow: hidden; }
.ba-strip {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 6vw 26px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.ba-strip::-webkit-scrollbar { display: none; }
.ba-strip .ba-card { flex: 0 0 min(74vw, 820px); scroll-snap-align: center; }
.ba-card { display: grid; gap: 18px; perspective: 1200px; }
.ba-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(176,154,119,0.3);
  aspect-ratio: 16 / 9;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out, box-shadow 0.3s;
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
  --pos: 50%;
}
.ba-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-before-clip { position: absolute; inset: 0; overflow: hidden; width: var(--pos); }
.ba-before-clip img { width: auto; height: 100%; max-width: none; }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  background: var(--bronze-bright);
  box-shadow: 0 0 18px rgba(216,189,142,0.8);
  transform: translateX(-1px);
}
.ba-handle {
  position: absolute;
  top: 50%; left: var(--pos);
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--bronze-bright);
  background: rgba(12,11,10,0.8);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  color: var(--bronze-bright);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  pointer-events: none;
}
.ba-tag {
  position: absolute;
  top: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 7px 14px 7px 17px;
  background: rgba(12,11,10,0.65);
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.ba-tag.before { left: 16px; color: rgba(244,241,234,0.85); border: 1px solid rgba(244,241,234,0.35); }
.ba-tag.after { right: 16px; color: var(--bronze-bright); border: 1px solid var(--bronze); }
.ba-caption { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.ba-caption h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.5rem; letter-spacing: 0.04em; }
.ba-caption span { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--bronze); font-weight: 600; }

/* ---------- Testimonials ---------- */
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.voice-card {
  background: linear-gradient(160deg, var(--bg-3), #141210);
  border: 1px solid rgba(176,154,119,0.16);
  padding: 38px 32px;
  display: grid;
  gap: 18px;
  align-content: start;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.35s;
}
.voice-card:hover { transform: translateY(-5px); border-color: rgba(176,154,119,0.45); }
.voice-stars { color: var(--bronze-bright); letter-spacing: 4px; font-size: 15px; }
.voice-card blockquote { color: var(--ink); font-size: 1.02rem; line-height: 1.65; font-style: italic; }
.voice-who { display: flex; align-items: center; gap: 14px; }
.voice-ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-deep));
  color: #0c0b0a;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}
.voice-who b { display: block; font-size: 0.98rem; letter-spacing: 0.04em; }
.voice-who small { color: var(--ink-dim); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* ---------- Process ---------- */
.process { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--line); }
.step { padding: 38px 32px 44px; border-right: 1px solid var(--line); display: grid; gap: 14px; align-content: start; }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(176,154,119,0.6);
}
.step h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.45rem; letter-spacing: 0.04em; }
.step p { color: var(--ink-dim); font-size: 0.95rem; }

/* ---------- Contact / booking ---------- */
.contact { position: relative; background: var(--bg); overflow: hidden; }
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 85% 15%, rgba(176,154,119,0.1), transparent 60%);
  pointer-events: none;
}
.contact-watermark {
  position: absolute;
  right: -60px; bottom: -40px;
  width: 420px; height: 420px;
  object-fit: contain;
  opacity: 0.06;
  pointer-events: none;
}
.contact-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 76px; position: relative; }
.contact-info { display: grid; gap: 26px; align-content: start; }
.contact-info h2 { font-size: clamp(2.6rem, 5vw, 4.4rem); }
.contact-info > p { color: var(--ink-dim); max-width: 460px; }
.contact-lines { display: grid; gap: 18px; margin-top: 8px; }
.contact-line { display: flex; align-items: center; gap: 16px; font-weight: 600; font-size: 1.05rem; }
.contact-line .tag { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--bronze); width: 90px; flex-shrink: 0; }
.contact-line a:hover { color: var(--bronze-bright); }

.form-card {
  background: linear-gradient(160deg, var(--bg-3), #14110f);
  border: 1px solid rgba(176,154,119,0.25);
  padding: 46px 42px;
  display: grid;
  gap: 26px;
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze-bright), var(--bronze), transparent);
}
.form-step-label { font-size: 11px; font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase; color: var(--bronze); }
.form-card h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.9rem; letter-spacing: 0.03em; }

.choice-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.choice {
  border: 1px solid rgba(244,241,234,0.18);
  background: transparent;
  color: var(--ink);
  padding: 18px 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  display: grid;
  gap: 6px;
  justify-items: center;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.choice .ico { font-size: 20px; }
.choice:hover { border-color: rgba(176,154,119,0.6); }
.choice.active { border-color: var(--bronze); background: rgba(176,154,119,0.12); color: var(--bronze-bright); }

.field { display: grid; gap: 8px; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-dim); }
.field input, .field select, .field textarea {
  background: rgba(10,9,8,0.6);
  border: 1px solid rgba(244,241,234,0.16);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  appearance: none;
}
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--bronze) 50%), linear-gradient(135deg, var(--bronze) 50%, transparent 50%); background-position: calc(100% - 21px) 50%, calc(100% - 15px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--bronze); }
.field textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-back { background: none; border: none; cursor: pointer; color: var(--ink-dim); font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; transition: color 0.25s; }
.form-back:hover { color: var(--ink); }
.form-note { font-size: 12.5px; color: rgba(244,241,234,0.4); }
.form-success { display: grid; gap: 14px; text-align: center; padding: 30px 0; }
.form-success .big-check { font-size: 44px; color: var(--bronze-bright); }
.hidden { display: none !important; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 60px 6vw 40px; position: relative; overflow: hidden; }
.footer-wrap { max-width: 1440px; margin: 0 auto; display: grid; gap: 36px; position: relative; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-tag { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bronze); font-size: 1.15rem; }
.footer-links { display: flex; gap: 30px; font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-dim); flex-wrap: wrap; }
.footer-links a:hover { color: var(--bronze-bright); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(244,241,234,0.38); border-top: 1px solid rgba(176,154,119,0.12); padding-top: 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav-phone { display: none; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .voices-grid { grid-template-columns: 1fr; max-width: 620px; }
  .process-grid { grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
  .step { border-bottom: 1px solid var(--line); }
  .ba-grid { grid-template-columns: 1fr; max-width: 760px; }
  .ba-strip .ba-card { flex-basis: 88vw; }
  .svc-stage { height: 340px; }
  .svc-card { padding: 32px 26px; min-height: 280px; }
  .svc-card h3 { font-size: 1.5rem; }
  .wa-fab { width: 56px; height: 56px; right: 16px; }
  .wa-fab img { width: 36px; height: 36px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 54px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
.btn-mini { display: none; }
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 84px 6vw; }
  .brand-logo { height: 34px; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-name { font-size: 21px; }
  .brand-sub { display: none; }
  .nav { padding: 14px 4vw; }
  .nav .btn { padding: 11px 14px; font-size: 10.5px; letter-spacing: 0.14em; }
  .btn-full { display: none; }
  .btn-mini { display: inline; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 22px; }
  .hero-badges { display: none; }
  .hero-cta { flex-direction: column; width: min(86vw, 340px); bottom: 104px; gap: 12px; }
  .hero-cta .btn { width: 100%; }
  .reveal-line.wp { padding-bottom: 268px; }
  .marquee-track span { font-size: 1.05rem; padding: 0 18px; gap: 36px; }
  .stamp { font-size: 0.95rem; letter-spacing: 0.26em; padding: 8px 14px 8px 18px; }
  .work-card { flex-basis: 84vw; aspect-ratio: 4 / 3; }
  .quickbar-form { flex-direction: column; align-items: stretch; }
  .quickbar-label { margin-right: 0; justify-content: center; }
  .quickbar-form input, .quickbar-form select { width: 100%; }
  .work-head-wrap { flex-direction: column; align-items: start; }
  .hs-label { font-size: 10px; padding: 6px 9px; letter-spacing: 0.1em; white-space: normal; max-width: 36vw; line-height: 1.35; }
  .work-info h3 { font-size: 1.5rem; }
  .reveal-line.stamp-left, .reveal-line.stamp-right { padding-top: 96px; }
  .ba-handle { width: 40px; height: 40px; }
  .contact-watermark { width: 260px; height: 260px; }
}
