/* ============================================================
   STREET SHINE DETAILING — Tri-Cities, WA
   Black / Red / Chrome — matched to the brand badge
   ============================================================ */

:root {
  --bg: #08080a;
  --bg-2: #0e0e11;
  --panel: #121215;
  --panel-2: #17171b;
  --line: rgba(255, 255, 255, 0.08);
  --red: #d81f26;
  --red-dark: #9e1218;
  --red-glow: rgba(216, 31, 38, 0.45);
  --text: #eef0f4;
  --muted: #9aa0ab;
  --chrome: linear-gradient(180deg, #ffffff 0%, #d9dde3 38%, #838a95 52%, #f2f4f7 68%, #aeb4bd 100%);
  --font-display: "Kanit", sans-serif;
  --font-marker: "Permanent Marker", cursive;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

::selection { background: var(--red); color: #fff; }

/* ---------- Text treatments ---------- */
.chrome-text {
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.red-text {
  color: var(--red);
  text-shadow: 0 0 24px var(--red-glow);
}

.marker-text {
  font-family: var(--font-marker);
  font-size: 0.62em;
  color: var(--red);
  text-shadow: 0 0 18px var(--red-glow);
  letter-spacing: 0.01em;
  text-transform: none;
  display: inline-block;
  transform: rotate(-2deg);
}

/* animated shine sweeping across chrome text */
.shine-sweep {
  position: relative;
  background: var(--chrome);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}
.shine-sweep::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.9) 50%, transparent 70%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: sweep 4.5s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}
@keyframes sweep {
  0%, 55% { background-position: 130% 0; }
  85%, 100% { background-position: -130% 0; }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.6; }
}

.tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.25) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.btn:hover::before { transform: translateX(120%); }

.btn--red {
  background: linear-gradient(180deg, #ec3a41, var(--red) 45%, var(--red-dark));
  color: #fff;
  box-shadow: 0 6px 24px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--red:hover { transform: translateY(-2px); box-shadow: 0 10px 34px var(--red-glow); }

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.btn--ghost:hover { border-color: #fff; transform: translateY(-2px); background: rgba(255, 255, 255, 0.08); }

.btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }
.btn__arrow { transition: transform 0.25s ease; }
.btn:hover .btn__arrow { transform: translateX(5px); }

.link-red {
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease, letter-spacing 0.2s ease;
}
.link-red:hover { opacity: 0.8; letter-spacing: 0.08em; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(0, 0, 0, 0.45);
  padding: 8px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 16px rgba(216, 31, 38, 0.35);
}
.nav__wordmark {
  display: flex; flex-direction: column; line-height: 1.05;
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 1.15rem; letter-spacing: 0.02em;
}
.nav__wordmark small {
  font-family: var(--font-body);
  font-style: normal; font-weight: 600;
  font-size: 0.55rem; letter-spacing: 0.42em;
  color: var(--red);
}
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  transition: width 0.25s ease;
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav__burger span { width: 24px; height: 2px; background: #fff; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero__glow--red {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(216, 31, 38, 0.28), transparent 65%);
  top: -180px; right: -140px;
  animation: drift 12s ease-in-out infinite alternate;
}
.hero__glow--silver {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(160, 170, 185, 0.12), transparent 65%);
  bottom: -160px; left: -160px;
  animation: drift 14s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-50px, 40px) scale(1.12); }
}
.hero__streak {
  position: absolute;
  width: 140%; height: 2px;
  left: -20%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), rgba(216, 31, 38, 0.35), transparent);
  transform: rotate(-18deg);
  animation: streak 7s linear infinite;
  opacity: 0;
}
.hero__streak--1 { top: 25%; animation-delay: 0s; }
.hero__streak--2 { top: 52%; animation-delay: 2.3s; }
.hero__streak--3 { top: 76%; animation-delay: 4.6s; }
@keyframes streak {
  0% { transform: translateX(-30%) rotate(-18deg); opacity: 0; }
  12% { opacity: 1; }
  45% { opacity: 0.4; }
  70%, 100% { transform: translateX(35%) rotate(-18deg); opacity: 0; }
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.hero__sub {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero__sub em { color: var(--text); font-style: italic; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num, .stat__plus {
  font-family: var(--font-display);
  font-weight: 800; font-style: italic;
  font-size: 1.9rem;
  line-height: 1.1;
}
.stat__num { display: inline; }
.stat__plus { color: var(--red); display: inline; -webkit-text-fill-color: var(--red); }
.stat__label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.hero__visual { position: relative; display: grid; gap: 18px; justify-items: end; }
.hero__badge-ring {
  position: absolute;
  top: -60px; left: -30px;
  z-index: 3;
  width: 148px; height: 148px;
}
.hero__logo {
  width: 148px; height: 148px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 40px rgba(216, 31, 38, 0.45), 0 18px 40px rgba(0, 0, 0, 0.6);
}
.hero__ring {
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1px solid transparent;
}
.hero__ring--red { border-top-color: var(--red); border-right-color: var(--red); animation: spin 9s linear infinite; }
.hero__ring--chrome { inset: -20px; border-bottom-color: rgba(255, 255, 255, 0.35); animation: spin 14s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.float { animation: float 5s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__card {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}
.hero__card img { width: 100%; height: 320px; object-fit: cover; }
.hero__card--small { width: 68%; }
.hero__card--small img { height: 180px; }
.hero__card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  font-size: 0.85rem;
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll span { display: inline-block; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(5px); } }

/* ---------- Ken Burns animated photos ---------- */
.kenburns-wrap { overflow: hidden; }
.kenburns {
  transform-origin: center;
  animation: kenburns 16s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.14) translate(-2%, 2%); }
}

/* branded fallback when a stock photo can't load */
.img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(216, 31, 38, 0.35), transparent 55%),
    linear-gradient(145deg, #1a1a1f, #0b0b0e 60%, #17171c);
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-align: center;
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #0c0c0f, #141317, #0c0c0f);
  overflow: hidden;
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 800; font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1rem;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.75);
  padding-right: 8px;
}
.marquee__track i { color: var(--red); font-style: normal; padding: 0 14px; text-shadow: 0 0 10px var(--red-glow); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 110px 0; position: relative; }
.section--panel {
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(216, 31, 38, 0.07), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head { max-width: 720px; margin-bottom: 60px; }
.section__title {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.06;
  margin-bottom: 16px;
}
.section__sub { color: var(--muted); font-size: 1rem; }

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.service:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 31, 38, 0.5);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(216, 31, 38, 0.25), 0 0 40px rgba(216, 31, 38, 0.12);
}
.service__img { position: relative; height: 210px; }
.service__img img, .service__img .img-fallback { width: 100%; height: 100%; object-fit: cover; }
.service__price {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(216, 31, 38, 0.55);
  color: var(--muted);
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
}
.service__price b { color: #fff; font-size: 0.95rem; margin-left: 3px; }
.service__body { padding: 24px; display: grid; gap: 10px; }
.service__body h3 {
  font-family: var(--font-display);
  font-weight: 800; font-style: italic;
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.service__body p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Pricing ---------- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
  margin-bottom: 70px;
}
.price-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 30px;
  display: grid;
  gap: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.price-card:hover { transform: translateY(-6px); }
.price-card h3 {
  font-family: var(--font-display);
  font-weight: 800; font-style: italic;
  text-transform: uppercase;
  font-size: 1.6rem;
}
.price-card__desc { color: var(--muted); font-size: 0.9rem; min-height: 44px; }
.price-card__price {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 3rem;
  line-height: 1;
  display: flex; align-items: baseline; gap: 8px;
}
.price-card__price small { font-family: var(--font-body); font-weight: 500; font-style: normal; font-size: 0.8rem; color: var(--muted); }
.price-card ul { display: grid; gap: 9px; padding: 8px 0 12px; border-top: 1px solid var(--line); }
.price-card ul li {
  font-size: 0.9rem; color: #c9cdd4;
  padding-left: 22px; position: relative;
}
.price-card ul li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--red);
  font-weight: 700;
}
.price-card--featured {
  background: linear-gradient(180deg, rgba(216, 31, 38, 0.14), rgba(216, 31, 38, 0.03) 40%), var(--panel-2);
  border-color: rgba(216, 31, 38, 0.6);
  box-shadow: 0 0 60px rgba(216, 31, 38, 0.18), 0 30px 60px rgba(0, 0, 0, 0.45);
  transform: scale(1.03);
}
.price-card--featured:hover { transform: scale(1.03) translateY(-6px); }
.price-card__flag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: linear-gradient(180deg, #ec3a41, var(--red-dark));
  color: #fff;
  font-family: var(--font-marker);
  font-size: 0.85rem;
  padding: 5px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 18px var(--red-glow);
  white-space: nowrap;
}

.addons__title {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  text-transform: uppercase;
  font-size: 1.7rem;
  margin-bottom: 26px;
}
.addons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.addon {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.92rem;
  color: #c9cdd4;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.addon:hover { border-color: rgba(216, 31, 38, 0.5); transform: translateY(-3px); }
.addon b { color: #fff; font-family: var(--font-display); font-style: italic; font-size: 1.05rem; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 26px;
  align-items: start;
}
.step { text-align: left; }
.step__num {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 3.4rem;
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 800; font-style: italic;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.step p { color: var(--muted); font-size: 0.92rem; max-width: 300px; }
.step__line {
  height: 1px;
  width: 60px;
  margin-top: 30px;
  background: linear-gradient(90deg, var(--red), transparent);
  box-shadow: 0 0 10px var(--red-glow);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery__item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.gallery__item img, .gallery__item .img-fallback { width: 100%; height: 100%; object-fit: cover; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.22) 50%, transparent 60%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}
.gallery__item:hover::after { transform: translateX(130%); }

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about__visual { position: relative; display: flex; justify-content: center; }
.about__logo {
  width: min(360px, 80%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 80px rgba(216, 31, 38, 0.35), 0 40px 80px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
}
.about__glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 31, 38, 0.3), transparent 70%);
  filter: blur(50px);
  animation: pulse 4s ease-in-out infinite;
}
.about__text { color: var(--muted); margin-bottom: 26px; }
.checks { display: grid; gap: 12px; margin-bottom: 32px; }
.checks li { display: flex; gap: 12px; align-items: baseline; font-size: 0.96rem; color: #c9cdd4; }
.check {
  color: var(--red);
  font-weight: 700;
  text-shadow: 0 0 12px var(--red-glow);
}

/* ---------- Reviews ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  display: grid;
  gap: 16px;
  align-content: start;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.review:hover { transform: translateY(-5px); border-color: rgba(216, 31, 38, 0.4); }
.review__stars { color: var(--red); letter-spacing: 4px; text-shadow: 0 0 12px var(--red-glow); }
.review p { color: #c9cdd4; font-size: 0.94rem; }
.review footer { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* ---------- Service area ---------- */
.area .section__head { margin-bottom: 40px; }
.area__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area__city {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  padding: 34px 10px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.area__city:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 31, 38, 0.55);
  box-shadow: 0 0 30px rgba(216, 31, 38, 0.15);
}
.area__note { text-align: center; color: var(--muted); margin-top: 26px; font-size: 0.92rem; }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(216, 31, 38, 0.22), transparent 65%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.cta__streak {
  position: absolute;
  top: 0; left: -20%;
  width: 140%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 20px var(--red-glow);
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.04;
  margin-bottom: 18px;
}
.cta p { color: var(--muted); margin-bottom: 34px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: #060608;
  padding: 70px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer__logo {
  width: 84px; height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 24px rgba(216, 31, 38, 0.3);
  margin-bottom: 16px;
}
.footer__tag { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.75rem; font-weight: 700;
  color: var(--muted);
  transition: 0.25s ease;
}
.footer__social a:hover {
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 0 16px var(--red-glow);
  transform: translateY(-3px);
}
.footer__col { display: grid; gap: 10px; align-content: start; }
.footer__col h4 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #fff;
}
.footer__col a, .footer__col span { color: var(--muted); font-size: 0.9rem; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  color: var(--muted);
  font-size: 0.82rem;
}
.footer__bottom a:hover { color: #fff; }

/* ---------- Floating book button ---------- */
.fab {
  display: none;
  position: fixed;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  background: linear-gradient(180deg, #ec3a41, var(--red) 45%, var(--red-dark));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800; font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 30px;
  border-radius: 999px;
  box-shadow: 0 10px 30px var(--red-glow), 0 4px 14px rgba(0, 0, 0, 0.5);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal--delay { transition-delay: 0.15s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; gap: 80px; }
  .hero__visual { justify-items: start; }
  .hero__badge-ring { top: -70px; left: auto; right: 10px; }
  .services__grid, .pricing__grid, .reviews { grid-template-columns: repeat(2, 1fr); }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-6px); }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step__line { width: 1px; height: 40px; margin: 0 0 0 28px; background: linear-gradient(180deg, var(--red), transparent); }
  .about { grid-template-columns: 1fr; gap: 50px; }
  .addons__grid { grid-template-columns: repeat(2, 1fr); }
  .area__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(8, 8, 10, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.35s ease;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { font-size: 1.05rem; }
  .nav__burger { display: flex; }
  .nav__actions .btn { display: none; }
  .nav__wordmark { font-size: 1rem; }

  .hero { padding-top: 120px; }
  .hero__stats { gap: 24px; }
  .hero__card img { height: 240px; }
  .hero__badge-ring, .hero__logo { width: 110px; height: 110px; }
  .hero__badge-ring { top: -50px; }

  .section { padding: 80px 0; }
  .services__grid, .pricing__grid, .reviews, .addons__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery__item--wide { grid-column: span 1; }
  .area__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 10px; }

  .fab { display: inline-flex; }
  body { padding-bottom: 70px; }
}
