/* ==========================================================================
   PUREVISIONS MOBILE DETAILING — design system v2
   Dark editorial luxe. Fraunces (display) + Inter (UI).
   Palette pulled from the PV logo: ice-blue gradient on deep navy black.
   ========================================================================== */

:root {
  /* brand */
  --bg: #030710;
  --bg-2: #060d1c;
  --panel: #0a1322;
  --panel-2: #0d1830;
  --ink: #edf3fb;
  --muted: #94a6bf;
  --faint: #5f7291;
  --blue-l: #a9cef3;
  --blue: #4e90d8;
  --blue-d: #2e6aae;
  --grad: linear-gradient(128deg, #b9d8f7 0%, #5e9cdd 48%, #2e6aae 100%);
  --hairline: rgba(148, 190, 235, 0.13);
  --hairline-2: rgba(148, 190, 235, 0.22);
  --glow: 0 0 0 1px rgba(94, 156, 221, 0.35), 0 10px 45px -8px rgba(46, 106, 174, 0.45);
  --shadow: 0 18px 50px -18px rgba(0, 0, 0, 0.65);

  /* type */
  --display: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* shape + motion */
  --r: 16px;
  --r-sm: 10px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --nav-h: 78px;
}

/* ---------- reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

/* Scroll lock for the mobile menu + lightbox.
   It has to sit on <html>, not <body>: because html above has an explicit
   overflow-x, body's overflow no longer propagates to the viewport, so
   <html> stays the scroller and body{overflow:hidden} locks nothing. */
html.menu-locked, html.menu-locked body,
html.lb-locked,   html.lb-locked body { overflow: hidden; }

/* Safety net: the slide-in menu cannot exist above the breakpoint, so a menu
   lock stranded there (stale state, JS error, missed resize event) must never
   freeze the desktop page. The lightbox opens at any width, so it is exempt. */
@media (min-width: 961px) {
  html.menu-locked:not(.lb-locked),
  html.menu-locked:not(.lb-locked) body { overflow-x: hidden; overflow-y: auto; }
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

/* filmic grain — keeps big dark surfaces from banding and feeling synthetic */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2147483000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: rgba(94, 156, 221, 0.35); }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.container.wide { width: min(1320px, 94vw); }

section { position: relative; }

/* ---------- type helpers ---------- */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 420;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: 1.35rem; font-weight: 480; }

h1 em, h2 em, .grad-text {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--muted);
  max-width: 56ch;
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue-l);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--grad);
  flex: none;
}

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head .lead { margin-top: 1rem; }

.pad { padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.pad-top { padding-top: clamp(4.5rem, 9vw, 7.5rem); }
.pad-btm { padding-bottom: clamp(4.5rem, 9vw, 7.5rem); }

.tint { background: var(--bg-2); border-block: 1px solid var(--hairline); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: #061225;
  background: linear-gradient(128deg, #cfe4fa, #6da8e4 55%, #3f7fc7);
  border: 1px solid rgba(185, 216, 247, 0.5);
  box-shadow: 0 8px 28px -10px rgba(78, 144, 216, 0.55);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), filter 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 14px 34px -10px rgba(78, 144, 216, 0.7); }
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: rgba(10, 19, 34, 0.6);
  color: var(--ink);
  border: 1px solid var(--hairline-2);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: rgba(148, 190, 235, 0.5); background: rgba(14, 26, 46, 0.8); }

.btn-line {
  padding: 0.4rem 0;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
  color: var(--blue-l);
  border-bottom: 1px solid var(--hairline-2);
}
.btn-line:hover { transform: none; border-color: var(--blue-l); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: height 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  background: linear-gradient(180deg, rgba(3, 7, 16, 0.82), rgba(3, 7, 16, 0));
}
.nav.scrolled {
  height: 64px;
  background: rgba(4, 9, 19, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--hairline), 0 12px 34px -18px rgba(0, 0, 0, 0.8);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.brand img { height: 40px; width: auto; }
.brand b {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.brand b i { font-style: normal; color: var(--blue-l); }
.brand b span {
  display: block;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  color: var(--faint);
  margin-top: 1px;
}

.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links .link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s var(--ease);
}
.nav-links .link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links .link:hover, .nav-links .link.active { color: var(--ink); }
.nav-links .link:hover::after, .nav-links .link.active::after { transform: scaleX(1); }
.nav-links .btn { padding: 0.62rem 1.25rem; font-size: 0.88rem; }

.nav-cta { display: flex; align-items: center; gap: 1.1rem; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--blue-l);
  white-space: nowrap;
  transition: color 0.3s;
}
.nav-phone:hover { color: #fff; }

.nav-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 8px; min-width: 44px; min-height: 44px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s; }

/* ---------- hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(52vw 42vw at 82% 8%, rgba(46, 106, 174, 0.22), transparent 62%),
    radial-gradient(40vw 34vw at 6% 92%, rgba(46, 106, 174, 0.12), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy .eyebrow { margin-bottom: 1.5rem; }
.hero-copy h1 { margin-bottom: 1.4rem; }
.hero-copy .lead { margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.fact-chips { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; }
.fact-chips li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 500;
}
.fact-chips svg { color: var(--blue); flex: none; }

/* layered editorial image stack */
.hero-stack { position: relative; }
.hero-stack .ph-main {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  border: 1px solid var(--hairline);
}
.hero-stack .ph-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 18s var(--ease) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.09) translateY(-2%); }
}
.hero-stack .ph-side {
  position: absolute;
  left: -3.4rem;
  bottom: -2.6rem;
  width: 42%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--hairline-2);
  box-shadow: var(--shadow);
}
.hero-stack .ph-side img { width: 100%; height: 100%; object-fit: cover; }

.badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  background: rgba(6, 13, 28, 0.82);
  border: 1px solid var(--hairline-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.badge-float small { display: block; font-weight: 500; font-size: 0.72rem; color: var(--muted); }
.badge-float .b-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(78, 144, 216, 0.16);
  color: var(--blue-l);
  flex: none;
}
.badge-float.tr { top: 1.4rem; right: -1.2rem; }
.badge-float.bl { bottom: 2rem; right: 2rem; }

.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--faint);
}
.scroll-cue .mouse {
  width: 22px; height: 34px;
  border: 1px solid var(--hairline-2);
  border-radius: 12px;
  position: relative;
}
.scroll-cue .mouse::after {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: var(--blue-l);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 0%,100% { transform: translateY(0); opacity: 1; } 65% { transform: translateY(9px); opacity: 0; } }

/* ---------- marquee ticker ---------- */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--hairline);
  background: var(--bg-2);
  padding: 1.05rem 0;
  user-select: none;
}
.ticker-track {
  display: flex;
  gap: 3.2rem;
  width: max-content;
  animation: ticker 46s linear infinite;
}
.ticker span {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--muted);
  white-space: nowrap;
}
.ticker i { font-style: normal; color: var(--blue-d); font-size: 0.7rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- editorial service cards ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.svc-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--panel);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--hairline-2); box-shadow: var(--shadow); }
.svc-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.06); }
.svc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 19, 34, 0.9));
}
.svc-no {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(169, 206, 243, 0.5);
  z-index: 2;
}
.svc-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.svc-body h3 { font-size: 1.42rem; }
.svc-body p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.svc-body .more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--blue-l);
  margin-top: 0.4rem;
}
.svc-body .more svg { transition: transform 0.35s var(--ease); }
.svc-card:hover .more svg { transform: translateX(4px); }

/* title + price side by side */
.svc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
}
.svc-head h3 { flex: 1; min-width: 0; padding-top: 0.15rem; }
.svc-price {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  padding: 0.45rem 0.85rem 0.5rem;
  border-radius: 12px;
  border: 1px solid var(--hairline-2);
  background: rgba(78, 144, 216, 0.1);
  white-space: nowrap;
}
.svc-price small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.3rem;
}
.svc-price b {
  font-family: var(--display);
  font-weight: 460;
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.svc-card.featured {
  background: linear-gradient(170deg, #0e1e38, #081226 60%);
  border-color: rgba(94, 156, 221, 0.55);
  box-shadow: var(--glow);
}
.svc-card.featured .svc-price { background: rgba(78, 144, 216, 0.18); border-color: rgba(148, 190, 235, 0.45); }
.svc-flag {
  position: absolute;
  top: 0.95rem;
  left: 1rem;
  z-index: 3;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #061225;
  background: var(--grad);
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px -8px rgba(78, 144, 216, 0.7);
}
.svc-foot {
  margin-top: 1.8rem;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}
.svc-foot a {
  color: var(--blue-l);
  font-weight: 600;
  border-bottom: 1px solid var(--hairline-2);
  transition: border-color 0.3s;
}
.svc-foot a:hover { border-color: var(--blue-l); }

/* ---------- LeadConnector booking calendar (book page) ---------- */
#schedule, #quote { scroll-margin-top: calc(var(--nav-h) + 1rem); }
.sched-card {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--hairline-2);
  background: #fff;
  box-shadow: var(--glow);
  padding: clamp(0.5rem, 1.5vw, 1.1rem);
}
.sched-card iframe { display: block; width: 100%; min-height: 760px; border: 0; }
.sched-note {
  margin-top: 1.5rem;
  font-size: 0.93rem;
  color: var(--muted);
  text-align: center;
  text-wrap: pretty;
}
.sched-note a {
  color: var(--blue-l);
  font-weight: 600;
  border-bottom: 1px solid var(--hairline-2);
  transition: border-color 0.3s;
}
.sched-note a:hover { border-color: var(--blue-l); }

/* ---------- split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .frame {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.split-media .frame.landscape { aspect-ratio: 16 / 11; }
.split-media .frame img, .split-media .frame video { width: 100%; height: 100%; object-fit: cover; }
.split-body .eyebrow { margin-bottom: 1.2rem; }
.split-body h2 { margin-bottom: 1.2rem; }
.split-body > p { color: var(--muted); margin-bottom: 1.6rem; max-width: 54ch; }

.checklist { display: grid; gap: 0.85rem; margin-bottom: 2rem; }
.checklist li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--ink); font-size: 0.97rem; }
.checklist li svg { color: var(--blue); flex: none; margin-top: 4px; }
.checklist li small { display: block; color: var(--muted); font-size: 0.88rem; }

/* ---------- video reel strip ---------- */
.reels {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 24vw, 300px);
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0.4rem 4vw 1.6rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-d) transparent;
}
.reels::-webkit-scrollbar { height: 6px; }
.reels::-webkit-scrollbar-thumb { background: var(--blue-d); border-radius: 3px; }
.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--hairline);
  scroll-snap-align: center;
  background: var(--panel);
}
.reel video { width: 100%; height: 100%; object-fit: cover; }
.reel .reel-tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 9px;
  background: rgba(4, 9, 19, 0.72);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.reel .reel-tag small { display: block; font-weight: 500; font-size: 0.72rem; color: var(--muted); }

/* ---------- process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  counter-reset: step;
}
.proc-card {
  position: relative;
  padding: 1.8rem 1.5rem 1.6rem;
  border-radius: var(--r);
  border: 1px solid var(--hairline);
  background: linear-gradient(165deg, var(--panel), rgba(10, 19, 34, 0.35));
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.proc-card:hover { border-color: var(--hairline-2); transform: translateY(-4px); }
.proc-card::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--display);
  font-style: italic;
  font-size: 2.6rem;
  line-height: 1;
  display: block;
  margin-bottom: 1.1rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.85;
}
.proc-card h3 { font-size: 1.16rem; margin-bottom: 0.5rem; }
.proc-card p { color: var(--muted); font-size: 0.92rem; }

/* ---------- plan cards ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}
.plans-grid.five { grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.7rem 1.9rem;
  border-radius: var(--r);
  border: 1px solid var(--hairline);
  background: var(--panel);
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.plan:hover { transform: translateY(-6px); border-color: var(--hairline-2); box-shadow: var(--shadow); }
.plan.featured {
  background: linear-gradient(170deg, #0e1e38, #081226 60%);
  border-color: rgba(94, 156, 221, 0.55);
  box-shadow: var(--glow);
}
.plan-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #061225;
  background: var(--grad);
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
}
.plan-name { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-l); }
.plan-price { display: flex; align-items: baseline; gap: 0.45rem; margin: 0.9rem 0 0.2rem; }
.plan-price b {
  font-family: var(--display);
  font-weight: 460;
  font-size: clamp(2.4rem, 3.4vw, 3.1rem);
  line-height: 1;
}
.plan-price span { color: var(--muted); font-size: 0.9rem; }
.plan-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.3rem; }
.plan-list { display: grid; gap: 0.55rem; margin-bottom: 1.6rem; flex: 1; }
.plan-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--ink); }
.plan-list li.dim { color: var(--muted); }
.plan-list svg { color: var(--blue); flex: none; margin-top: 4px; }
.plan .btn, .plan .btn-ghost { width: 100%; }

.plan-note {
  margin-top: 2rem;
  font-size: 0.84rem;
  color: var(--faint);
  max-width: 74ch;
}

/* add-on chips */
.chip-grid { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--hairline-2);
  background: rgba(10, 19, 34, 0.55);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}
.chip svg { color: var(--blue-l); }

/* ---------- gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.2rem; }
.filter-btn {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--hairline-2);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { color: var(--ink); border-color: rgba(148, 190, 235, 0.5); }
.filter-btn.active {
  color: #061225;
  background: var(--grad);
  border-color: transparent;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 1.1rem;
}
.gitem {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--hairline);
  cursor: pointer;
  background: var(--panel);
}
.gitem.tall { grid-row: span 2; }
.gitem img, .gitem video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gitem:hover img { transform: scale(1.05); }
.gitem.hide { display: none; }
.gitem .cap {
  position: absolute;
  inset: auto 0 0;
  padding: 2.2rem 1rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 600;
  background: linear-gradient(180deg, transparent, rgba(3, 7, 16, 0.88));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gitem:hover .cap { opacity: 1; transform: none; }
.gitem .cap small { display: block; font-weight: 500; color: var(--muted); font-size: 0.76rem; }
.gitem .zoom {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(4, 9, 19, 0.65);
  border: 1px solid var(--hairline-2);
  color: var(--blue-l);
  opacity: 0;
  transition: opacity 0.35s;
  backdrop-filter: blur(6px);
}
.gitem:hover .zoom { opacity: 1; }
.gitem .vid-mark {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(4, 9, 19, 0.7);
  border: 1px solid var(--hairline-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue-l);
  backdrop-filter: blur(6px);
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 4vmin;
  background: rgba(2, 5, 11, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img, .lightbox video {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--hairline-2);
  box-shadow: var(--shadow);
}
.lb-close, .lb-nav {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(10, 19, 34, 0.8);
  border: 1px solid var(--hairline-2);
  color: var(--ink);
  transition: all 0.3s;
  z-index: 2;
}
.lb-close:hover, .lb-nav:hover { background: var(--blue-d); }
.lb-close { top: 1.4rem; right: 1.4rem; }
.lb-nav.prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-nav.next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  border-block: 1px solid var(--hairline);
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60vw 40vw at 50% 110%, rgba(46, 106, 174, 0.35), transparent 65%),
    linear-gradient(180deg, var(--bg) 0%, rgba(3, 7, 16, 0.72) 40%, var(--bg) 100%);
}
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin-inline: auto; }
.cta-inner h2 { margin-bottom: 1.1rem; }
.cta-inner p { color: var(--muted); margin-bottom: 2.2rem; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ---------- page head (interior pages) ---------- */
.page-head {
  position: relative;
  padding: calc(var(--nav-h) + clamp(3.5rem, 8vw, 6rem)) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
  background:
    radial-gradient(55vw 40vw at 88% 0%, rgba(46, 106, 174, 0.2), transparent 62%),
    var(--bg);
  border-bottom: 1px solid var(--hairline);
}
.page-head-bg { position: absolute; inset: 0; }
.page-head-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.14; }
.page-head-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,7,16,0.5), var(--bg)); }
.page-head .container { position: relative; z-index: 2; }
.crumbs { font-size: 0.8rem; color: var(--faint); margin-bottom: 1.2rem; letter-spacing: 0.06em; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--blue-l); }
.page-head h1 { max-width: 800px; margin-bottom: 1rem; }

/* ---------- forms ---------- */
.form-card {
  position: relative;
  border-radius: var(--r);
  border: 1px solid var(--hairline);
  background: linear-gradient(170deg, var(--panel-2), var(--panel));
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  background: rgba(3, 7, 16, 0.65);
  border: 1px solid var(--hairline-2);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394a6bf' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(78, 144, 216, 0.18);
}
.field .msg { display: none; font-size: 0.8rem; color: #ff8f8f; margin-top: 0.35rem; }
.field.err input, .field.err select, .field.err textarea { border-color: #d66; }
.field.err .msg { display: block; }

.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 1rem; }
.check-grid label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  margin: 0;
  cursor: pointer;
}
.check-grid input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--blue);
  padding: 0;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}
.form-success.show { display: block; }
.form-success .ok-ico {
  width: 74px; height: 74px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #061225;
  background: var(--grad);
}
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--muted); }

.form-error {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(214, 102, 102, 0.5);
  background: rgba(214, 102, 102, 0.08);
  font-size: 0.88rem;
  color: #ffb3b3;
}
.form-error.show { display: block; }

/* contact cards */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-cards { display: grid; gap: 1rem; }
.cc {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.4rem 1.5rem;
  border-radius: var(--r);
  border: 1px solid var(--hairline);
  background: var(--panel);
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.cc:hover { border-color: var(--hairline-2); transform: translateY(-3px); }
.cc .cc-ico {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(78, 144, 216, 0.14);
  color: var(--blue-l);
}
.cc h3 { font-family: var(--sans); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.cc p, .cc a.big { font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.cc a.big:hover { color: var(--blue-l); }
.cc small { color: var(--muted); font-size: 0.85rem; display: block; margin-top: 0.2rem; }

.map-wrap {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--hairline);
  filter: grayscale(0.4) invert(0.92) hue-rotate(185deg) saturate(0.6);
  height: 300px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--hairline);
  background: #020509;
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 3rem;
}
.foot-brand img { height: 74px; width: auto; margin-bottom: 1.1rem; }
.foot-brand p { color: var(--muted); font-size: 0.92rem; max-width: 34ch; }
.foot-head { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-l); margin-bottom: 1.1rem; }
.foot-links { display: grid; gap: 0.6rem; }
.foot-links a, .foot-lines li { color: var(--muted); font-size: 0.93rem; transition: color 0.3s; }
.foot-links a:hover { color: var(--ink); }
.foot-lines { display: grid; gap: 0.7rem; }
.foot-lines li { display: flex; gap: 0.65rem; align-items: flex-start; }
.foot-lines svg { color: var(--blue-d); flex: none; margin-top: 4px; }
.foot-lines a { color: var(--ink); font-weight: 600; }
.foot-lines a:hover { color: var(--blue-l); }
.foot-base {
  border-top: 1px solid var(--hairline);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: var(--faint);
}
.foot-base i { font-family: var(--display); font-style: italic; color: var(--muted); }

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.from-left { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.d5 { transition-delay: 0.5s; }
.reveal.d6 { transition-delay: 0.6s; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .plans-grid.five { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stack { max-width: 480px; }
  .hero-stack .ph-side { left: auto; right: -1rem; bottom: -2.2rem; }
  .scroll-cue { display: none; }
  .svc-grid, .process-grid, .plans-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }

  .nav-phone span { display: none; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 5.5rem 2.4rem 2rem;
    background: rgba(4, 9, 19, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-left: 1px solid var(--hairline);
    transform: translateX(102%);
    transition: transform 0.5s var(--ease);
    z-index: 950;
  }
  .nav-links .link { font-size: 1.25rem; font-family: var(--display); font-weight: 440; }
  body.menu-open .nav-links { transform: none; }
  /* position:relative is load-bearing — z-index is inert on a static box,
     which would let the slide-in panel paint over the close button. */
  .nav-toggle { display: flex; position: relative; z-index: 960; }
  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 620px) {
  .svc-grid, .process-grid, .plans-grid, .plans-grid.five, .check-grid, .form-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-stack .ph-side { display: none; }
  .badge-float.tr { right: 0.6rem; }
  .badge-float.bl { right: 0.8rem; bottom: 1rem; }
  .reels { grid-auto-columns: min(72vw, 280px); }
  .fact-chips { flex-direction: column; gap: 0.55rem; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-stack .ph-main img { animation: none; }
  .ticker-track { animation: none; }
}

/* ---------- FAQ accordion (native <details>, no JS) ---------- */
.faq { display: grid; gap: 0.8rem; max-width: 860px; }
.faq details {
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.faq details[open] { border-color: var(--hairline-2); background: var(--panel-2); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue-l); }
.faq summary .q-ico {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline-2);
  color: var(--blue-l);
  transition: transform 0.4s var(--ease), background 0.35s;
}
.faq details[open] summary .q-ico { transform: rotate(45deg); background: rgba(78, 144, 216, 0.16); }
.faq .a {
  padding: 0 1.4rem 1.35rem;
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 68ch;
}
.faq .a a { color: var(--blue-l); font-weight: 600; }
.faq .a a:hover { text-decoration: underline; }

.faq-aside {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  padding: 1.3rem 1.5rem;
  border-radius: var(--r);
  border: 1px solid var(--hairline-2);
  background: linear-gradient(150deg, rgba(14, 30, 56, 0.85), rgba(8, 18, 38, 0.6));
}
.faq-aside p { color: var(--muted); font-size: 0.95rem; flex: 1; min-width: 220px; }
.faq-aside b { color: var(--ink); display: block; font-size: 1.02rem; margin-bottom: 0.15rem; }

/* ---------- review CTA ---------- */
.review-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  border-radius: var(--r);
  border: 1px solid var(--hairline-2);
  background:
    radial-gradient(60% 120% at 100% 0%, rgba(46, 106, 174, 0.22), transparent 70%),
    linear-gradient(150deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
}
.review-band .rb-copy { flex: 1; min-width: 260px; }
.review-band .stars { color: #f0c25e; letter-spacing: 0.18em; font-size: 1.05rem; display: block; margin-bottom: 0.5rem; }
.review-band h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.review-band p { color: var(--muted); font-size: 0.95rem; max-width: 48ch; }

.foot-review {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--hairline-2);
  background: rgba(10, 19, 34, 0.6);
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
}
.foot-review:hover { border-color: rgba(148, 190, 235, 0.5); background: rgba(14, 26, 46, 0.85); transform: translateY(-2px); }
.foot-review .stars { color: #f0c25e; letter-spacing: 0.1em; }
.foot-review small { display: block; font-weight: 500; color: var(--faint); font-size: 0.74rem; }
