/* ============================================================
   Point-Man Home Inspections LLC — Precision Is Our Mission
   Palette: navy · metallic gold · silver · cream
   ============================================================ */

:root {
  --navy-900: #071022;
  --navy-800: #0a1730;
  --navy-700: #0d2148;
  --navy-600: #142d5e;
  --navy-500: #1c3d78;
  --cream: #f5f0e4;
  --cream-2: #efe8d6;
  --gold: #c9a24a;
  --gold-lt: #e6c877;
  --gold-hi: #f3e0a6;
  --silver: #c8ccd4;
  --silver-lt: #e8ebf0;
  --white: #ffffff;
  --ink: #0a1730;
  --text-dim: rgba(226, 233, 246, 0.72);
  --text-cream-dim: #5b6577;
  --line: rgba(180, 200, 235, 0.18);
  --radius: 14px;
  --shadow-lg: 0 26px 60px -20px rgba(3, 9, 22, 0.7);
  --gold-grad: linear-gradient(135deg, #b8862f 0%, #e6c877 42%, #f3e0a6 55%, #c9a24a 100%);
  --gold-text: linear-gradient(180deg, #f3e0a6 0%, #e6c877 40%, #c9a24a 75%, #a9822f 100%);
  --silver-text: linear-gradient(180deg, #ffffff 0%, #d5d9e0 55%, #a7adb9 100%);
  --font: "Barlow", system-ui, sans-serif;
  --font-cond: "Barlow Condensed", "Barlow", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--navy-800);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(1200px, 92%); margin-inline: auto; }

.accent {
  background: var(--gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold-lt);
  margin-bottom: 0.8rem;
}

h1, h2, h3 { font-weight: 800; line-height: 1.12; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.01em; }

/* ---------- reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
  transition-delay: calc(var(--i,0) * 85ms);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font); font-weight: 700;
  border: 2px solid transparent; border-radius: 999px;
  cursor: pointer; white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn-sm { padding: .5rem 1.15rem; font-size: .92rem; }
.btn-lg { padding: .95rem 1.9rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-gold {
  background: var(--gold-grad);
  color: #2a1c00;
  box-shadow: 0 12px 30px -8px rgba(201, 162, 74, .55);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 42px -10px rgba(230, 200, 119, .7); }

.btn-ghost { border-color: rgba(232, 235, 240, .4); color: var(--white); }
.btn-ghost:hover { border-color: var(--gold-lt); color: var(--gold-lt); transform: translateY(-3px); }

/* ============================================================ NAVBAR */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 1rem 0; transition: padding .3s ease, background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: .5rem 0;
  background: rgba(8, 18, 38, .86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px -14px rgba(0,0,0,.6);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .65rem; }
.brand-mark { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,.5)) drop-shadow(0 0 6px rgba(230,200,119,.35)) saturate(1.12) brightness(1.04); flex-shrink: 0; transition: filter .3s ease, transform .3s ease; }
.brand:hover .brand-mark { transform: scale(1.05) rotate(-3deg); filter: drop-shadow(0 4px 12px rgba(0,0,0,.5)) drop-shadow(0 0 12px rgba(230,200,119,.6)) saturate(1.2) brightness(1.08); }
.brand-text { line-height: 1.02; }
.brand-text strong {
  display: block; font-family: var(--font-cond); font-size: 1.4rem; font-weight: 800; letter-spacing: .04em;
  background: var(--gold-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand-text small {
  display: block; font-size: .6rem; font-weight: 700; letter-spacing: .3em;
  background: var(--silver-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 1.15rem; font-weight: 600; font-size: .9rem; }
.nav-links a, .nav-call { white-space: nowrap; }
.brand-text strong, .brand-text small { white-space: nowrap; }
.nav-links > a:not(.btn):not(.nav-call) { position: relative; padding: .25rem 0; color: var(--text-dim); transition: color .25s ease; }
.nav-links > a:not(.btn):not(.nav-call)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav-links > a:not(.btn):not(.nav-call):hover { color: var(--white); }
.nav-links > a:not(.btn):not(.nav-call):hover::after { transform: scaleX(1); }
.nav-call { display: inline-flex; align-items: center; gap: .4rem; color: var(--gold-lt); font-weight: 700; }
.nav-call svg { color: var(--gold-lt); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; z-index: 110; }
.nav-toggle span { width: 26px; height: 3px; border-radius: 2px; background: var(--gold-lt); transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================ HERO */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 7.5rem 0 4rem; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .5; mix-blend-mode: screen;
}
.hero-photo {
  position: absolute; inset: 0;
  background:
    linear-gradient(107deg, rgba(7,16,34,.97) 34%, rgba(7,16,34,.82) 58%, rgba(10,23,48,.6)),
    url("../assets/hero-twilight.jpg") center 40% / cover no-repeat;
  transform: translateY(calc(var(--scroll-y,0) * .22px)); will-change: transform;
}
body.no-hero-photo .hero-photo { background: radial-gradient(1200px 700px at 72% 30%, var(--navy-600), var(--navy-900) 72%); }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,162,74,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(201,162,74,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 92% 82% at 40% 42%, black 28%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 92% 82% at 40% 42%, black 28%, transparent 76%);
}
.hero-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 78% 45%, transparent 40%, rgba(7,16,34,.55) 100%); }

.hero-inner {
  display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 2.5rem;
}

/* ---- logo motion stage ---- */
.hero-logo-stage {
  position: relative; display: grid; place-items: center;
  min-height: 420px; order: 2;
  perspective: 900px;
}
.logo-glow {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,200,119,.28), rgba(201,162,74,.1) 45%, transparent 68%);
  filter: blur(6px); animation: glowPulse 4.5s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.12); opacity: 1; } }

.logo-rings { position: absolute; inset: 0; display: grid; place-items: center; }
.ring { position: absolute; border-radius: 50%; border: 1px solid rgba(201,162,74,.28); }
.ring-1 { width: 300px; height: 300px; animation: spin 26s linear infinite; border-style: dashed; }
.ring-2 { width: 380px; height: 380px; animation: spin 40s linear infinite reverse; border-color: rgba(200,204,212,.16); }
.ring-3 { width: 460px; height: 460px; border-color: rgba(201,162,74,.14); }
@keyframes spin { to { transform: rotate(360deg); } }

.logo-tilt {
  position: relative; transform-style: preserve-3d;
  transition: transform .2s ease-out; will-change: transform;
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -16px; } }
.hero-logo {
  width: min(370px, 76vw); height: auto;
  filter:
    drop-shadow(0 22px 40px rgba(0,0,0,.6))
    drop-shadow(0 0 30px rgba(230,200,119,.45))
    saturate(1.14) contrast(1.06) brightness(1.05);
  transform: translateZ(40px);
}
/* masked overlay layer holding the moving highlights, clipped to the emblem shape */
.logo-shine {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  -webkit-mask: url("../assets/logo.png") center / contain no-repeat;
  mask: url("../assets/logo.png") center / contain no-repeat;
  mix-blend-mode: screen;
}
/* slow metallic sheen that glides across the gold + silver, keeping it alive */
.logo-shine::before {
  content: ""; position: absolute; inset: -20%;
  background: linear-gradient(115deg,
    transparent 30%, rgba(243,224,166,.22) 44%, rgba(255,255,255,.5) 50%,
    rgba(200,204,212,.28) 56%, transparent 70%);
  background-size: 260% 260%;
  animation: logoSheen 6.5s ease-in-out infinite;
}
@keyframes logoSheen { 0% { background-position: 120% 0; } 100% { background-position: -60% 0; } }
/* bright specular streak sweeping the metal */
.logo-shine::after {
  content: ""; position: absolute; top: -25%; left: -60%; width: 34%; height: 150%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.95), transparent);
  transform: skewX(-18deg); animation: shineSweep 5s ease-in-out infinite;
}
@keyframes shineSweep { 0% { left: -60%; } 46%,100% { left: 135%; } }

.sparkles { position: absolute; inset: 0; pointer-events: none; }
.sparkles i {
  position: absolute; left: var(--x); top: var(--y); width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold-hi); box-shadow: 0 0 8px 2px rgba(243,224,166,.8);
  animation: sparkle 3s ease-in-out infinite; animation-delay: var(--d); opacity: 0;
}
@keyframes sparkle { 0%,100% { opacity: 0; transform: scale(.3); } 50% { opacity: 1; transform: scale(1); } }

body.no-logo .hero-logo-stage { display: none; }

/* ---- hero copy ---- */
.hero-copy { order: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem; padding: .45rem 1rem;
  border: 1px solid rgba(201,162,74,.3); border-radius: 999px;
  background: rgba(201,162,74,.08); backdrop-filter: blur(6px);
  font-size: .86rem; font-weight: 600; color: var(--text-dim); margin-bottom: 1.2rem;
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-lt); position: relative; }
.pulse-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--gold-lt); animation: pulse 1.9s ease-out infinite; }
@keyframes pulse { from { transform: scale(1); opacity: .8; } to { transform: scale(3.4); opacity: 0; } }

.hero-tagline {
  font-family: var(--font-cond); font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  font-size: 1.15rem; margin-bottom: .5rem;
  background: var(--gold-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-title {
  font-family: var(--font-cond); font-size: clamp(2.5rem, 5.4vw, 4.6rem); font-weight: 800;
  letter-spacing: .01em; margin-bottom: 1.2rem; line-height: 1.02;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: inline-block; transform: translateY(110%); animation: riseUp .9s cubic-bezier(.22,1,.36,1) forwards; }
.hero-title .line:nth-child(1) span { animation-delay: .2s; }
.hero-title .line:nth-child(2) span { animation-delay: .38s; }
@keyframes riseUp { to { transform: translateY(0); } }
.accent-line span { background: var(--gold-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

.hero-sub { max-width: 34rem; font-size: 1.1rem; color: var(--text-dim); margin-bottom: 1.9rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.9rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; font-size: .92rem; font-weight: 600; color: var(--text-dim); }
.hero-trust li { display: flex; align-items: center; gap: .45rem; }
.hero-trust svg { width: 16px; height: 16px; color: var(--gold-lt); flex-shrink: 0; }

.scroll-hint { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); opacity: .7; }
.mouse { display: block; width: 26px; height: 42px; border: 2px solid rgba(232,235,240,.5); border-radius: 14px; position: relative; }
.wheel { position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; margin-left: -2px; border-radius: 3px; background: var(--gold-lt); animation: wheelDrop 1.7s ease-in-out infinite; }
@keyframes wheelDrop { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }

/* ============================================================ MARQUEE */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--navy-900); padding: .85rem 0; }
.marquee-track {
  display: flex; align-items: center; gap: 2.2rem; width: max-content; animation: marquee 32s linear infinite;
  font-family: var(--font-cond); font-weight: 700; font-size: 1.05rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(232,235,240,.55);
}
.marquee-track i { color: var(--gold); font-style: normal; font-size: .6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================ SECTIONS */
.section { padding: 6.2rem 0; }
.section-head { max-width: 46rem; margin: 0 auto 3.4rem; text-align: center; }
.section-head p { margin-top: 1rem; color: var(--text-dim); font-size: 1.05rem; }

/* ============================================================ PILLARS */
.pillars { background: var(--navy-900); padding: 4.2rem 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.pillar {
  text-align: center; padding: 2rem 1.3rem; border-radius: var(--radius);
  border: 1px solid var(--line); background: linear-gradient(165deg, rgba(20,45,94,.4), rgba(10,23,48,.3));
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.pillar:hover { transform: translateY(-6px); border-color: rgba(201,162,74,.5); box-shadow: var(--shadow-lg); }
.pillar-ico {
  width: 64px; height: 64px; margin: 0 auto 1.1rem; display: grid; place-items: center; border-radius: 16px;
  background: rgba(201,162,74,.12); color: var(--gold-lt); transition: transform .35s ease;
}
.pillar-ico svg { width: 34px; height: 34px; }
.pillar:hover .pillar-ico { transform: scale(1.1) rotate(-4deg); }
.pillar h3 { font-size: 1.08rem; margin-bottom: .4rem; font-family: var(--font-cond); letter-spacing: .02em; text-transform: uppercase; }
.pillar p { font-size: .92rem; color: var(--text-dim); }

/* ============================================================ SERVICES */
.services { background: var(--cream); color: var(--ink); }
.services .section-head p { color: var(--text-cream-dim); }
.services .eyebrow { color: #a9822f; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.service-card {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--white);
  border: 1px solid rgba(10,23,48,.08); box-shadow: 0 12px 30px -18px rgba(10,23,48,.4);
  transition: transform .2s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card:hover { box-shadow: 0 26px 50px -22px rgba(10,23,48,.45); border-color: rgba(201,162,74,.55); }
.service-photo { position: relative; height: 160px; background-size: cover; background-position: center; background-color: var(--navy-700); }
.service-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,23,48,.35)); }
.service-scan {
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
  opacity: 0; box-shadow: 0 0 14px 2px rgba(230,200,119,.7);
}
.service-card:hover .service-scan { opacity: 1; animation: cardScan 1.4s ease-in-out infinite; }
@keyframes cardScan { 0% { top: 0; } 100% { top: 100%; } }
.service-body { padding: 1.3rem 1.4rem 1.5rem; }
.service-body h3 { font-size: 1.15rem; margin-bottom: .4rem; color: var(--ink); }
.service-body p { font-size: .93rem; color: var(--text-cream-dim); }

.service-card--more {
  display: grid; place-items: center; text-align: center;
  background: var(--gold-grad); border: 0;
}
.service-card--more .service-body { padding: 2rem 1.4rem; }
.service-card--more h3, .service-card--more p { color: #2a1c00; }
.service-card--more p { opacity: .85; }
.more-ico { width: 56px; height: 56px; margin: 0 auto 1rem; display: grid; place-items: center; border-radius: 50%; background: rgba(42,28,0,.14); color: #2a1c00; }
.more-ico svg { width: 30px; height: 30px; }

/* ============================================================ WHY US */
.why-us { background: radial-gradient(800px 500px at 88% 12%, rgba(20,45,94,.5), transparent 60%), var(--navy-800); }
.why-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 4rem; align-items: center; }
.why-media { position: relative; min-height: 480px; }
.why-photo { position: absolute; border-radius: 16px; overflow: hidden; border: 1px solid rgba(201,162,74,.3); box-shadow: var(--shadow-lg); background: var(--navy-700) center/cover no-repeat; }
.photo-inspector { width: 74%; height: 64%; top: 0; left: 0; background-image: linear-gradient(rgba(7,16,34,.12), rgba(7,16,34,.12)), url("../assets/inspector.jpg"); }
.photo-thermal { width: 60%; height: 52%; bottom: 0; right: 0; background-image: linear-gradient(rgba(7,16,34,.1), rgba(7,16,34,.1)), url("../assets/sys-thermal.jpg"); animation: logoFloat 8s 1s ease-in-out infinite; }
body.no-hero-photo .photo-inspector, body.no-hero-photo .photo-thermal { background-image: linear-gradient(150deg, var(--navy-600), var(--navy-900)); }
.photo-frame { position: absolute; inset: 8px; border: 1px solid rgba(230,200,119,.35); border-radius: 10px; pointer-events: none; }
.photo-scanline { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 47%, rgba(230,200,119,.35) 50%, transparent 53%); animation: photoScan 4s ease-in-out infinite; }
@keyframes photoScan { 0% { transform: translateY(-55%); } 55% { transform: translateY(55%); } 100% { transform: translateY(-55%); } }
.why-card-float {
  position: absolute; left: 4%; bottom: 8%; display: flex; align-items: center; gap: .7rem;
  padding: .9rem 1.2rem; border-radius: 14px; background: rgba(8,18,38,.95);
  border: 1px solid rgba(201,162,74,.5); box-shadow: var(--shadow-lg); color: var(--gold-lt);
  animation: logoFloat 5s ease-in-out infinite;
}
.why-card-float strong { display: block; color: var(--white); font-size: .98rem; line-height: 1.2; }
.why-card-float span { font-size: .8rem; color: var(--text-dim); }
.why-copy h2 { margin-bottom: 1.1rem; }
.why-copy > p { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 1.7rem; }
.why-list { display: grid; gap: 1.1rem; margin-bottom: 2rem; }
.why-list li { display: flex; gap: .95rem; align-items: flex-start; }
.why-check { flex-shrink: 0; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(201,162,74,.16); color: var(--gold-lt); margin-top: 2px; }
.why-check svg { width: 16px; height: 16px; }
.why-list strong { font-size: 1.03rem; }
.why-list p { color: var(--text-dim); font-size: .93rem; }

/* ============================================================ WALKTHROUGH */
.walkthrough { position: relative; height: 420vh; background: linear-gradient(180deg, var(--navy-800), var(--navy-900) 20%, var(--navy-900) 80%, var(--navy-800)); }
.walkthrough-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.walkthrough-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3.5rem; }
.wt-hint { color: var(--text-dim); font-size: .95rem; margin: .8rem 0 1.8rem; display: flex; align-items: center; gap: .5rem; }
.wt-hint::before { content: ""; width: 34px; height: 2px; background: var(--gold-grad); }
.wt-steps { display: grid; gap: .4rem; }
.wt-step { display: flex; gap: 1rem; padding: .95rem 1.1rem; border-radius: 12px; border: 1px solid transparent; opacity: .34; transform: translateX(-6px); transition: opacity .4s ease, transform .4s ease, border-color .4s ease, background .4s ease; }
.wt-step.active { opacity: 1; transform: none; background: rgba(20,45,94,.5); border-color: rgba(201,162,74,.4); }
.wt-step-num { flex-shrink: 0; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; border: 2px solid rgba(200,204,212,.4); font-weight: 800; font-size: .95rem; transition: border-color .4s ease, background .4s ease, color .4s ease; }
.wt-step.active .wt-step-num { border-color: var(--gold); background: var(--gold-grad); color: #2a1c00; }
.wt-step h3 { font-size: 1.06rem; margin-bottom: .15rem; }
.wt-step p { font-size: .91rem; color: var(--text-dim); }
.wt-visual { position: relative; }
.wt-house { width: 100%; max-width: 460px; margin-inline: auto; }
.wt-line { fill: none; stroke: rgba(200,204,212,.75); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.wt-line.thin { stroke-width: 1.6; stroke: rgba(200,204,212,.45); }
.wt-zone { fill: url(#zoneGlow); stroke: var(--gold); stroke-width: 2; opacity: 0; transition: opacity .45s ease; }
.wt-zone.active { opacity: 1; }
.wt-marker { transition: transform .12s linear; }
.wtm-ring { fill: none; stroke: var(--gold-lt); stroke-width: 2; animation: markerPulse 1.6s ease-out infinite; transform-origin: center; }
@keyframes markerPulse { 0% { opacity: .9; } 70% { opacity: .25; } 100% { opacity: .9; } }
.wtm-core { fill: var(--gold-lt); }
.wtm-cross { stroke: rgba(230,200,119,.55); stroke-width: 1.5; stroke-dasharray: 4 5; }
.wt-check circle { fill: var(--gold); }
.wt-check path { fill: none; stroke: #2a1c00; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.wt-check { opacity: 0; transform-box: fill-box; transform-origin: center; scale: .3; transition: opacity .4s ease, scale .45s cubic-bezier(.34,1.56,.64,1); }
.wt-check.done { opacity: 1; scale: 1; }
.wt-progress { margin-top: 1.6rem; display: flex; align-items: center; gap: .9rem; max-width: 460px; margin-inline: auto; }
.wt-progress-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-dim); white-space: nowrap; }
.wt-progress-bar { flex: 1; height: 8px; border-radius: 6px; background: rgba(200,204,212,.2); overflow: hidden; }
.wt-progress-bar span { display: block; height: 100%; width: 0%; border-radius: 6px; background: var(--gold-grad); transition: width .12s linear; }
.wt-progress-pct { font-family: var(--font-cond); font-weight: 800; font-size: 1.1rem; color: var(--gold-lt); min-width: 3ch; text-align: right; }

/* ============================================================ STATS */
.stats { background: var(--gold-grad); color: #2a1c00; padding: 3.4rem 0; position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%); animation: statsShine 6s ease-in-out infinite; }
@keyframes statsShine { 0% { transform: translateX(-60%); } 55%,100% { transform: translateX(120%); } }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { display: block; font-family: var(--font-cond); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; line-height: 1; }
.stat-label { display: block; margin-top: .4rem; font-weight: 700; font-size: .95rem; opacity: .82; }

/* ============================================================ REVIEWS */
.reviews { background: var(--navy-900); }
.quote-slider { max-width: 780px; margin: 0 auto; overflow: hidden; }
.quote-track { display: flex; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.quote { flex: 0 0 100%; text-align: center; padding: 1rem 2rem 0; }
.quote-stars { color: var(--gold-lt); letter-spacing: .3em; font-size: 1.15rem; margin-bottom: 1.1rem; }
.quote p { font-size: clamp(1.1rem, 2.2vw, 1.45rem); font-weight: 600; font-style: italic; line-height: 1.55; margin-bottom: 1.2rem; }
.quote footer { color: var(--gold-lt); font-weight: 700; font-size: .95rem; }
.quote-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.8rem; }
.quote-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(200,204,212,.3); transition: background .3s ease, transform .3s ease; }
.quote-dots button.active { background: var(--gold-grad); transform: scale(1.35); }
.reviews-note { text-align: center; margin-top: 1.8rem; font-size: .85rem; color: var(--text-dim); }

/* ============================================================ CONTACT */
.contact { position: relative; background: var(--navy-800); overflow: hidden; }
.contact-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,162,74,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(201,162,74,.06) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(ellipse 70% 70% at 28% 50%, black 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 70% 70% at 28% 50%, black 20%, transparent 70%); }
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-copy h2 { margin-bottom: 1rem; }
.contact-copy > p { color: var(--text-dim); font-size: 1.06rem; margin-bottom: 2rem; max-width: 30rem; }
.contact-links { display: grid; gap: .9rem; max-width: 30rem; }
.contact-link { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-radius: 14px; border: 1px solid var(--line); background: rgba(20,45,94,.35); transition: transform .3s ease, border-color .3s ease; }
a.contact-link:hover { transform: translateX(6px); border-color: rgba(201,162,74,.6); }
.contact-link--static { cursor: default; }
.contact-ico { flex-shrink: 0; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: rgba(201,162,74,.14); color: var(--gold-lt); }
.contact-link strong { display: block; font-size: .98rem; word-break: break-word; }
.contact-link small { color: var(--text-dim); font-size: .84rem; }

.contact-form { padding: 2.2rem; border-radius: 18px; background: linear-gradient(165deg, rgba(20,45,94,.6), rgba(10,23,48,.5)); border: 1px solid rgba(201,162,74,.28); box-shadow: var(--shadow-lg); backdrop-filter: blur(8px); }
.contact-form h3 { font-size: 1.45rem; margin-bottom: 1.4rem; }
.contact-form label { display: block; font-size: .84rem; font-weight: 700; letter-spacing: .03em; color: var(--text-dim); margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: .35rem; padding: .8rem 1rem; border-radius: 10px; border: 1px solid rgba(200,204,212,.28); background: rgba(7,16,34,.6); color: var(--white); font-family: var(--font); font-size: .98rem; transition: border-color .25s ease, box-shadow .25s ease; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold-lt); box-shadow: 0 0 0 3px rgba(201,162,74,.2); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(232,235,240,.35); }
.form-note { margin-top: .9rem; text-align: center; font-size: .85rem; color: var(--text-dim); }
.form-note a { color: var(--gold-lt); font-weight: 700; }
.form-success { margin-top: .9rem; text-align: center; font-weight: 700; color: var(--gold-lt); }

/* ============================================================ FOOTER */
.footer { background: var(--navy-900); padding: 3rem 0 2.2rem; text-align: center; border-top: 1px solid var(--line); }
.footer-inner { display: grid; justify-items: center; gap: .8rem; }
.brand-footer { justify-content: center; }
.footer-tag { font-family: var(--font-cond); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: .9rem; background: var(--gold-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-contact { font-size: .9rem; color: var(--text-dim); line-height: 1.9; }
.footer-contact a { color: var(--gold-lt); }
.footer-legal { font-size: .82rem; color: rgba(232,235,240,.4); }

/* ============================================================ ENHANCEMENTS */
/* scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--gold-hi), var(--gold));
  box-shadow: 0 0 10px rgba(230,200,119,.6); z-index: 200;
  transition: transform .1s linear;
}

/* back-to-top */
.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 120;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  display: grid; place-items: center; color: #2a1c00; background: var(--gold-grad);
  box-shadow: 0 12px 26px -8px rgba(201,162,74,.6);
  opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, box-shadow .3s ease;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 18px 34px -10px rgba(230,200,119,.75); }

/* subtle diagonal edges on the cream services section (echoes the flyer chevron) */
.services { clip-path: polygon(0 1.8vw, 100% 0, 100% 100%, 0 calc(100% - 1.8vw)); }

/* service-card 3D tilt (driven by JS custom props, composes with hover lift) */
.services-grid { perspective: 1000px; }
.service-card {
  transform: perspective(900px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)) translateY(var(--ty,0));
  transform-style: preserve-3d; will-change: transform;
}
.service-card:hover { --ty: -8px; }

/* pillar icon line-draw on reveal */
.pillar-ico svg path, .pillar-ico svg circle {
  stroke-dasharray: 300; stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.3s ease .15s;
}
.pillar.in .pillar-ico svg path, .pillar.in .pillar-ico svg circle { stroke-dashoffset: 0; }

/* ============================================================ REAL FINDINGS */
.findings { background: var(--navy-900); }
.findings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.finding-card { margin: 0; }
.finding-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(214,40,40,.35); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3;
}
.finding-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.finding-card:hover .finding-photo img { transform: scale(1.05); }
.finding-card figcaption {
  margin-top: .95rem; font-weight: 600; color: var(--text-dim);
  display: flex; align-items: center; gap: .6rem; font-size: .98rem;
}
.find-tag {
  font-family: var(--font-cond); font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  font-size: .72rem; color: #fff; background: #d62828; padding: .22rem .6rem; border-radius: 5px; flex-shrink: 0;
}
.find-tag--safety { background: #e08a1e; color: #201200; }
.findings-note { text-align: center; margin-top: 2.2rem; color: var(--text-dim); font-size: .95rem; }

/* thermal service badge */
.service-badge {
  position: absolute; top: .7rem; right: .7rem; z-index: 2;
  font-family: var(--font-cond); font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  font-size: .7rem; color: #201200; background: var(--gold-grad);
  padding: .25rem .65rem; border-radius: 999px; box-shadow: 0 6px 16px -6px rgba(201,162,74,.6);
}

/* ============================================================ THERMAL BAND */
.thermal-band { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); }
.thermal-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; align-items: center; }
.thermal-frame { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid rgba(201,162,74,.3); box-shadow: var(--shadow-lg); }
.thermal-frame img { width: 100%; display: block; }
.thermal-chip {
  position: absolute; font-size: .8rem; font-weight: 700; padding: .45rem .85rem; border-radius: 999px;
  backdrop-filter: blur(4px); box-shadow: 0 8px 20px -6px rgba(0,0,0,.55); animation: logoFloat 5s ease-in-out infinite;
}
.chip-cool { left: 5%; bottom: 9%; background: rgba(40,90,200,.85); color: #eaf1ff; }
.chip-warm { right: 5%; top: 11%; background: rgba(230,120,20,.92); color: #201200; animation-delay: .8s; }
.thermal-copy h2 { margin-bottom: 1rem; }
.thermal-copy > p { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 1.7rem; max-width: 32rem; }

/* ============================================================ RESPONSIVE */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-logo-stage { min-height: 320px; order: 1; }
  .hero-copy { order: 2; text-align: center; }
  .hero-copy .hero-badge, .hero-copy .hero-cta, .hero-copy .hero-trust { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .walkthrough-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .walkthrough-sticky { align-items: flex-start; padding-top: 4.5rem; }
  .wt-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-media { min-height: 380px; max-width: 560px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .findings-grid { grid-template-columns: 1fr 1fr; }
  .thermal-inner { grid-template-columns: 1fr; gap: 2.2rem; }
}
/* collapse nav to a drawer before the inline links get crowded */
@media (max-width: 1080px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(80vw, 330px); flex-direction: column; justify-content: center; gap: 1.8rem; background: rgba(7,16,34,.98); backdrop-filter: blur(16px); transform: translateX(100%); transition: transform .4s cubic-bezier(.22,1,.36,1); font-size: 1.2rem; box-shadow: -20px 0 60px rgba(0,0,0,.5); }
  .nav-links.open { transform: translateX(0); }
  .nav-links a, .nav-call { white-space: normal; }
  .nav-toggle { display: flex; }
}
@media (max-width: 760px) {
  .findings-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .section { padding: 4.5rem 0; }
  .walkthrough { height: 380vh; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-title .line span { transform: none; animation: none; }
  .hero-video { display: none; }
  .logo-tilt { animation: none; }
  .pillar-ico svg path, .pillar-ico svg circle { stroke-dashoffset: 0; }
  .service-card { transform: none; }
}
