/* ============================================================
   CERAMIC PRO VANCOUVER — site stylesheet
   Theme: "Showroom at night" — deep black, electric blue,
   glossy light sweeps, condensed automotive type.
   ============================================================ */

:root {
  --ink: #05070a;
  --ink-2: #0a0e14;
  --panel: #0d131b;
  --panel-2: #111925;
  --line: rgba(255, 170, 215, 0.10);
  --line-strong: rgba(255, 170, 215, 0.22);
  --text: #e9eef4;
  --muted: #8fa0b3;
  --accent: #e91d8f;
  --accent-deep: #a80f66;
  --accent-ice: #ffa3d8;
  --glow: rgba(233, 29, 143, 0.35);
  --radius: 14px;
  --font-display: "Big Shoulders Display", sans-serif;
  --font-body: "Barlow", sans-serif;
  --header-h: 74px;
}

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

html { scroll-behavior: smooth; }

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

/* Grain overlay for depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  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='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

a { color: var(--accent-ice); text-decoration: none; }

::selection { background: var(--accent); color: #1f0412; }

.wrap {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* ---------- Typography ---------- */

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

.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-title {
  font-size: clamp(38px, 5.4vw, 64px);
  margin-bottom: 18px;
}
.section-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
}

.lede {
  color: var(--muted);
  font-size: 18px;
  max-width: 62ch;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5, 7, 10, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  line-height: 1;
}
.logo-img { height: 46px; width: auto; display: block; }
.logo-text { display: flex; flex-direction: column; }
.logo .logo-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 25px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.logo .logo-main span { color: var(--accent); }
.logo .logo-sub {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.main-nav a.active { color: var(--accent-ice); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #1f0412;
  box-shadow: 0 8px 30px -8px var(--glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -8px var(--glow);
  color: #1f0412;
}
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-ice);
  transform: translateY(-2px);
}
.btn-sm { padding: 11px 22px; font-size: 13px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  width: 46px; height: 42px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 12px;
  width: 21px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle span { top: 20px; }
.nav-toggle span::before { left: 0; top: -7px; }
.nav-toggle span::after { left: 0; top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 64px;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(233, 29, 143, 0.16), transparent 60%),
    radial-gradient(800px 400px at -10% 110%, rgba(168, 15, 102, 0.12), transparent 60%),
    var(--ink);
}

/* Diagonal hairlines backdrop */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    transparent 0 120px,
    rgba(255, 170, 215, 0.035) 120px 121px
  );
  pointer-events: none;
}

/* Sweeping gloss beam */
.hero::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -30%;
  width: 45%;
  height: 140%;
  background: linear-gradient(100deg, transparent, rgba(255, 163, 216, 0.06) 45%, rgba(255, 163, 216, 0.12) 50%, rgba(255, 163, 216, 0.06) 55%, transparent);
  transform: skewX(-18deg);
  animation: beam-sweep 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes beam-sweep {
  0%, 100% { transform: translateX(-40%) skewX(-18deg); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translateX(320%) skewX(-18deg); opacity: 1; }
  60%, 99% { opacity: 0; }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(56px, 8.2vw, 118px);
  font-weight: 900;
  margin: 0 0 26px;
}
.hero h1 .stroke {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 163, 216, 0.75);
}
.hero h1 .shine {
  display: block;
  background: linear-gradient(100deg, #fff 20%, var(--accent-ice) 40%, var(--accent) 55%, #fff 75%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-shine 5.5s ease-in-out infinite;
}
@keyframes title-shine {
  0%, 100% { background-position: 120% 0; }
  50% { background-position: -20% 0; }
}

.hero .lede { margin-bottom: 36px; }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.hero-stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}
.stat .stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: var(--accent-ice);
  line-height: 1;
}
.stat .stat-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* Hero visual card */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(160% 90% at 50% 0%, rgba(233, 29, 143, 0.22), transparent 55%),
    linear-gradient(160deg, #101823, #070b11 70%);
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
}
.hero-visual .car-svg {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  filter: drop-shadow(0 24px 30px rgba(0,0,0,0.6));
}
.hero-visual .droplet {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.9), rgba(154,220,255,0.35) 45%, rgba(31,168,255,0.12) 70%, transparent);
  animation: droplet-float 6s ease-in-out infinite;
}
@keyframes droplet-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-visual .visual-tag {
  position: absolute;
  left: 22px;
  top: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-ice);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 16px;
  background: rgba(5, 7, 10, 0.55);
  backdrop-filter: blur(6px);
}
.hero-visual .visual-note {
  position: absolute;
  left: 22px;
  bottom: 20px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-visual .visual-note b { color: var(--accent-ice); font-weight: 700; }

/* ---------- Photo elements ---------- */

.hero-visual .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.05), rgba(5, 7, 10, 0.0) 40%, rgba(5, 7, 10, 0.6) 92%);
  pointer-events: none;
}
.hero-visual .visual-tag,
.hero-visual .visual-note,
.hero-visual .droplet { z-index: 2; }

/* Service slideshow — crossfading install shots */
.hero-visual .hero-photo {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.hero-visual .hero-photo.active { opacity: 1; }

.hero-visual .visual-tag { transition: opacity 0.25s ease; }
.hero-visual .visual-tag.swap { opacity: 0; }

.visual-tabs {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.visual-tabs button {
  flex: 1;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 6px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(5, 7, 10, 0.6);
  backdrop-filter: blur(8px);
  color: var(--muted);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.visual-tabs button:hover { color: var(--text); border-color: var(--accent); }
.visual-tabs button.active {
  background: linear-gradient(135deg, var(--accent), #a80f66);
  color: #1f0412;
  border-color: transparent;
}

.card-media {
  margin: -38px -32px 26px;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 19, 27, 0.85));
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-media img { transform: scale(1.06); }

.page-hero.has-photo {
  background-size: cover;
  background-position: center;
}
.page-hero.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 10, 0.94) 0%, rgba(5, 7, 10, 0.82) 45%, rgba(5, 7, 10, 0.55) 100%),
              linear-gradient(180deg, rgba(5, 7, 10, 0.45), transparent 40%, rgba(5, 7, 10, 0.9));
}
.page-hero .wrap { position: relative; z-index: 1; }

.photo-panel {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  min-height: 460px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
}
.photo-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-panel .photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 90px 30px 26px;
  background: linear-gradient(180deg, transparent, rgba(4, 6, 10, 0.94));
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.photo-panel .photo-caption b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .g-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(5, 7, 10, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 16px;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 7, 10, 0.55));
}
.gallery-item .g-label { z-index: 2; }

/* ---------- Sections ---------- */

section { position: relative; }
.section { padding: 78px 0; }
.section-dark { background: var(--ink-2); border-block: 1px solid var(--line); }

.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::before { display: none; }
.section-head.center .lede { margin-inline: auto; }

/* Marquee strip */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
}
.marquee-track span::after {
  content: "◆";
  color: var(--accent);
  font-size: 11px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Service cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  position: relative;
  background: linear-gradient(165deg, var(--panel-2), var(--panel) 65%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9), 0 0 50px -20px var(--glow);
}
.card:hover::before { opacity: 1; }

.card .card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: rgba(233, 29, 143, 0.07);
}
.card .card-icon svg { width: 26px; height: 26px; stroke: var(--accent-ice); }

.card h3 {
  font-size: 27px;
  margin-bottom: 12px;
}
.card p { color: var(--muted); font-size: 15.5px; margin-bottom: 22px; }

.card .card-link {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card .card-link::after { content: "→"; transition: transform 0.25s ease; }
.card:hover .card-link::after { transform: translateX(5px); }

/* Feature / why-us split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-list { display: grid; gap: 0; margin-top: 10px; }
.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.feature-item:last-child { border-bottom: none; }
.feature-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  min-width: 44px;
  padding-top: 2px;
}
.feature-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  text-transform: none;
}
.feature-item p { color: var(--muted); font-size: 15px; }

/* Glass panel visual */
.glass-panel {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(150deg, rgba(31,168,255,0.10), rgba(13,19,27,0.9) 55%);
  padding: 44px 38px;
  overflow: hidden;
}
.glass-panel::after {
  content: "";
  position: absolute;
  top: -60%; left: -20%;
  width: 40%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(154,220,255,0.10) 50%, transparent);
  transform: skewX(-20deg);
  animation: beam-sweep 9s ease-in-out infinite;
}
.glass-panel .big-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 6vw, 84px);
  text-transform: uppercase;
  line-height: 0.92;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 163, 216, 0.5);
}
.glass-panel .big-word b {
  color: var(--accent-ice);
  -webkit-text-stroke: 0;
  font-weight: 900;
}
.glass-panel .panel-note {
  margin-top: 26px;
  color: var(--muted);
  font-size: 15px;
  max-width: 40ch;
}

/* Package tiers */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.tier {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.tier:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 50px -28px rgba(0,0,0,0.9);
}
.tier.featured {
  border-color: var(--accent);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(233, 29, 143, 0.14), transparent 60%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: 0 0 60px -20px var(--glow);
}
.tier .tier-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #1f0412;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier h3 { font-size: 30px; margin-bottom: 4px; }
.tier .tier-term {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.tier ul {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 28px;
  flex: 1;
}
.tier ul li {
  font-size: 14.5px;
  color: var(--muted);
  padding-left: 24px;
  position: relative;
}
.tier ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.tier .btn { width: 100%; }

/* Comparison / spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 15px;
}
.spec-table th, .spec-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.spec-table th {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--panel-2);
  color: var(--accent-ice);
}
.spec-table td { color: var(--muted); }
.spec-table td:first-child { color: var(--text); font-weight: 600; }
.spec-table tr:last-child td { border-bottom: none; }
.table-scroll { overflow-x: auto; border-radius: var(--radius); }

/* Steps (process) */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 163, 216, 0.4);
  display: block;
  margin-bottom: 16px;
}
.step h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.step p { color: var(--muted); font-size: 14.5px; }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 16.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 15.5px;
}
.faq details[open] { border-color: var(--line-strong); }

/* Service area */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.area-tags span {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.area-tags span:hover { color: var(--accent-ice); border-color: var(--accent); }

/* CTA band */
.cta-band {
  position: relative;
  padding: 72px 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(900px 400px at 50% 120%, rgba(233, 29, 143, 0.2), transparent 65%),
    var(--ink-2);
  border-block: 1px solid var(--line);
}
.cta-band h2 {
  font-size: clamp(44px, 6.5vw, 84px);
  margin-bottom: 20px;
}
.cta-band .lede { margin: 0 auto 38px; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- Footer ---------- */

.site-footer {
  background: #04060a;
  border-top: 1px solid var(--line);
  padding: 52px 0 28px;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 38px;
}
.footer-grid h5 {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ice);
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { color: var(--muted); transition: color 0.25s ease; }
.footer-grid a:hover { color: var(--accent-ice); }
.footer-grid p { color: var(--muted); }
.footer-about .logo { margin-bottom: 16px; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #5d6b7a;
  font-size: 13px;
}
.footer-bottom .legal { max-width: 70ch; }

/* ---------- Conversion elements ---------- */

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.trust-chips span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.trust-chips span::before {
  content: "";
  width: 13px;
  height: 8px;
  border-left: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(-45deg) translateY(-2px);
  flex-shrink: 0;
}

.phone-inline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--accent-ice);
  margin-top: 8px;
}
.phone-inline:hover { color: var(--accent); }
.phone-inline svg { width: 26px; height: 26px; stroke: var(--accent); flex-shrink: 0; }

.form-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.04em;
}

.form-status {
  margin-top: 14px;
  font-size: 14.5px;
  font-weight: 600;
  text-align: center;
  min-height: 1em;
}
.form-status.ok { color: #7ce3a8; }
.form-status.err { color: #ffb37c; }

.sticky-call { display: none; }

@media (max-width: 760px) {
  .sticky-call {
    display: flex;
    gap: 10px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 95;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(5, 7, 10, 0.95);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line-strong);
  }
  .sticky-call .btn { flex: 1; padding: 14px 10px; font-size: 13px; }
  body { padding-bottom: 78px; }
}

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

/* Hero load-in */
.hero .load-in {
  opacity: 0;
  transform: translateY(30px);
  animation: load-in 0.9s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}
.hero .li-1 { animation-delay: 0.05s; }
.hero .li-2 { animation-delay: 0.18s; }
.hero .li-3 { animation-delay: 0.32s; }
.hero .li-4 { animation-delay: 0.46s; }
.hero .li-5 { animation-delay: 0.6s; }
@keyframes load-in {
  to { opacity: 1; transform: none; }
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  padding: calc(var(--header-h) + 64px) 0 56px;
  background:
    radial-gradient(900px 420px at 80% -20%, rgba(233, 29, 143, 0.15), transparent 60%),
    var(--ink);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    transparent 0 120px,
    rgba(255, 170, 215, 0.03) 120px 121px
  );
}
.page-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 20px;
}
.page-hero h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
}
.page-hero .lede { margin-bottom: 34px; }
.breadcrumb {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
  display: inline-block;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent-ice); }
.breadcrumb .sep { margin: 0 8px; color: var(--accent); }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.info-block {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.info-block:last-of-type { border-bottom: none; }
.info-block .info-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  background: rgba(233, 29, 143, 0.07);
}
.info-block .info-icon svg { width: 21px; height: 21px; stroke: var(--accent-ice); }
.info-block h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.info-block p, .info-block a { font-size: 17px; color: var(--text); font-weight: 500; }
.info-block a:hover { color: var(--accent-ice); }

.quote-form {
  background: linear-gradient(170deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 42px 38px;
}
.quote-form h3 { font-size: 30px; margin-bottom: 8px; }
.quote-form .form-sub { color: var(--muted); font-size: 15px; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(5, 7, 10, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15.5px;
  padding: 14px 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(233, 29, 143, 0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; }

.map-embed {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 60px;
  filter: grayscale(0.9) invert(0.92) hue-rotate(310deg) saturate(2.5) brightness(0.9);
}
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

/* Review CTA strip */
.review-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 36px 40px;
  background:
    radial-gradient(500px 200px at 10% 0%, rgba(233, 29, 143, 0.12), transparent 60%),
    var(--panel);
}
.review-strip .stars { color: var(--accent); font-size: 22px; letter-spacing: 6px; }
.review-strip h3 { font-size: 30px; margin: 8px 0 6px; }
.review-strip p { color: var(--muted); font-size: 15px; }

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 480px; aspect-ratio: 5/4; }
  .cards-3 { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(5, 7, 10, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 6vw 34px;
    gap: 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .nav-open .main-nav {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .main-nav a { font-size: 17px; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .tiers { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .photo-panel { min-height: 340px; }
  .section { padding: 60px 0; }
  .hero-stats { gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
