:root {
  --bg: #050505;
  --bg-2: #0b0b0d;
  --line: rgba(255, 255, 255, 0.08);
  --blue: #00b4ff;
  --blue-glow: rgba(0, 180, 255, 0.35);
  --gold: #d4af37;
  --gold-bright: #f0d26b;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --white: #f6f6f8;
  --muted: #9b9ba6;
  --radius: 22px;
  --nav-h: 82px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Bebas Neue", sans-serif;
  --script: "Cormorant Garamond", Georgia, serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute; left: 12px; top: -40px; background: var(--blue); color: #041018; padding: 8px 12px; z-index: 100;
}
.skip-link:focus { top: 12px; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.eyebrow {
  letter-spacing: 0.28em; text-transform: uppercase; font-size: 0.72rem;
  color: var(--blue); font-weight: 600; margin-bottom: 14px;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2, .about__copy h2, .book__copy h2 {
  font-family: var(--display); font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: 0.04em; line-height: 0.95; font-weight: 400;
}
.section-head p:last-child { color: var(--muted); margin-top: 14px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 26px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 600; letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1a1404; box-shadow: 0 10px 30px var(--gold-glow);
}
.btn--ghost, .btn--outline {
  border-color: rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.03);
}
.btn--ghost:hover, .btn--outline:hover {
  border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0, 180, 255, 0.12);
}
.btn--full { width: 100%; }

.nav {
  position: fixed; inset: 0 0 auto; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 28px;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5, 5, 5, 0.78); backdrop-filter: blur(18px); border-bottom-color: var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__mark { width: 42px; height: 42px; color: var(--blue); }
.nav__mark svg { width: 100%; height: 100%; }
.nav__name {
  display: flex; flex-direction: column; font-family: var(--display);
  letter-spacing: 0.14em; font-size: 1.15rem; line-height: 1;
}
.nav__name em { font-style: normal; color: var(--blue); font-size: 0.95rem; }
.nav__links {
  display: flex; align-items: center; gap: 28px; font-size: 0.92rem; color: #d7d7de; z-index: 2;
}
.nav__links a:hover { color: white; }
.nav__cta {
  background: var(--blue); color: #041018 !important; padding: 10px 18px; border-radius: 999px; font-weight: 600;
}
.nav__toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; }
.nav__toggle span { display: block; height: 2px; margin: 6px 0; background: white; transition: 0.25s ease; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center;
  padding: calc(var(--nav-h) + 40px) 20px 40px; text-align: center;
}
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: kenburns 22s ease-in-out infinite alternate; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(5, 5, 5, 0.35) 50%, rgba(5, 5, 5, 0.88) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.2) 40%, rgba(5, 5, 5, 0.92) 100%);
}
.hero__content { position: relative; z-index: 1; max-width: 920px; }
.hero h1 { display: flex; flex-direction: column; line-height: 0.82; }
.hero__driveway, .hero__detailers {
  font-family: var(--display); font-size: clamp(4.4rem, 14vw, 10.5rem); letter-spacing: 0.06em;
}
.hero__detailers { color: var(--blue); text-shadow: 0 0 40px var(--blue-glow); }
.hero__slogan { margin-top: 18px; letter-spacing: 0.32em; text-transform: uppercase; font-size: clamp(0.78rem, 1.4vw, 1rem); }
.hero__script { font-family: var(--script); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 2.1rem); color: var(--gold-bright); margin: 10px 0 28px; }
.hero__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero__phone { margin-top: 22px; font-family: var(--display); font-size: 2rem; letter-spacing: 0.12em; }
.hero__phone a:hover { color: var(--blue); }
.hero__bottom {
  position: absolute; left: 0; right: 0; bottom: 28px; display: grid; justify-items: center; gap: 18px; z-index: 1;
}
.hero__mobile-banner {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px;
  border: 1px solid rgba(0, 180, 255, 0.28); border-radius: 999px;
  background: rgba(0, 20, 32, 0.55); backdrop-filter: blur(12px); color: #d9f4ff; font-size: 0.9rem;
}
.hero__mobile-banner svg { width: 22px; height: 22px; color: var(--blue); }
.hero__scroll {
  width: 24px; height: 38px; border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px; display: grid; place-items: center;
}
.hero__scroll span { width: 4px; height: 8px; border-radius: 99px; background: var(--blue); animation: bounce 1.6s infinite; }

.pillars { padding: 36px 0 20px; border-top: 1px solid var(--line); background: linear-gradient(180deg, #07080a, var(--bg)); }
.pillars__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar { padding: 28px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.02); }
.pillar__icon { width: 48px; height: 48px; color: var(--blue); margin-bottom: 16px; }
.pillar h2 { font-size: 1.05rem; margin-bottom: 8px; }
.pillar p { color: var(--muted); font-size: 0.92rem; }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: #07080c; padding: 16px 0; }
.ticker__track {
  display: flex; gap: 48px; width: max-content; animation: ticker 28s linear infinite;
  font-family: var(--display); letter-spacing: 0.18em; text-transform: uppercase; color: #8d8d98; font-size: 1.15rem;
}
.ticker__track span::after { content: " · "; color: var(--blue); }

.about, .packages, .addons, .gallery, .process, .book { padding: 100px 0; }
.about { background: radial-gradient(600px 280px at 10% 20%, rgba(0, 180, 255, 0.08), transparent 60%), var(--bg); }
.about__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.about__visual { position: relative; }
.about__visual img { width: 100%; height: 520px; object-fit: cover; border-radius: 28px; border: 1px solid var(--line); }
.about__badge {
  position: absolute; left: 24px; bottom: 24px; background: rgba(5, 5, 5, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.45); border-radius: 18px; padding: 16px 18px; backdrop-filter: blur(10px);
}
.about__badge strong { display: block; font-family: var(--display); font-size: 2.2rem; color: var(--gold-bright); line-height: 1; }
.about__copy p { color: var(--muted); margin: 18px 0 24px; }
.about__list { list-style: none; display: grid; gap: 12px; }
.about__list li { padding-left: 28px; position: relative; }
.about__list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--blue), #06324a); box-shadow: 0 0 12px var(--blue-glow);
}

.packages { background: var(--bg-2); }
.packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.card {
  position: relative; display: flex; flex-direction: column; padding: 32px 28px 28px;
  border-radius: 28px; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-8px); }
.card--blue:hover { border-color: rgba(0, 180, 255, 0.45); box-shadow: 0 20px 50px rgba(0, 180, 255, 0.12); }
.card--gold {
  border-color: rgba(212, 175, 55, 0.45);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 50px rgba(212, 175, 55, 0.12);
}
.card__ribbon {
  position: absolute; top: 18px; right: -34px; width: 140px; transform: rotate(32deg);
  background: var(--gold); color: #1a1404; text-align: center; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 0;
}
.card__icon { width: 48px; height: 48px; margin-bottom: 18px; }
.card--blue .card__icon, .card--blue .card__price, .card--blue .card__tier { color: var(--blue); }
.card--gold .card__icon, .card--gold .card__price, .card--gold .card__tier { color: var(--gold-bright); }
.card__tier { letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.78rem; font-weight: 700; }
.card__price { font-family: var(--display); font-size: 4.4rem; line-height: 1; margin: 6px 0 18px; }
.card ul { list-style: none; display: grid; gap: 10px; color: #c9c9d1; margin-bottom: 28px; flex: 1; }
.card li { padding-left: 26px; position: relative; }
.card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.card--gold li::before { color: var(--gold); }

.addons__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.addon {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}
.addon__icon { width: 52px; height: 52px; color: var(--blue); }
.addon h3 { margin-top: 4px; }
.addon p:not(.addon__price) { color: var(--muted); font-size: 0.92rem; }
.addon__price {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1a1404;
  box-shadow: 0 10px 28px var(--gold-glow);
}
.addon__price span {
  font-family: var(--display);
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #1a1404;
}

.gallery { background: var(--bg-2); }
.gallery__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.gallery__item { position: relative; overflow: hidden; border-radius: 24px; min-height: 280px; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; transition: transform 0.8s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; left: 18px; bottom: 16px; font-family: var(--script);
  font-style: italic; font-size: 1.3rem; text-shadow: 0 8px 20px #000;
}

.process__list { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process__list li {
  padding: 28px 22px; border-top: 1px solid rgba(0, 180, 255, 0.35);
  background: linear-gradient(180deg, rgba(0, 180, 255, 0.06), transparent);
}
.process__list span { font-family: var(--display); font-size: 2.4rem; color: var(--blue); }
.process__list h3 { margin: 8px 0 10px; }
.process__list p { color: var(--muted); font-size: 0.95rem; }

.book { background: radial-gradient(500px 240px at 80% 20%, rgba(212, 175, 55, 0.12), transparent 60%), var(--bg); }
.book__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.book__lead { color: var(--muted); margin: 16px 0 20px; max-width: 460px; }
.book__number {
  display: block; font-family: var(--display); font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: 0.08em; color: var(--blue); margin-bottom: 22px;
}
.book__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.book__note { margin-top: 22px; color: var(--gold-bright); font-family: var(--script); font-style: italic; font-size: 1.3rem; }
.book__form {
  display: grid; gap: 14px; padding: 28px; border-radius: 28px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03);
}
.book__form label, .book__form legend { display: grid; gap: 8px; font-size: 0.86rem; color: #cfcfd6; }
.book__form input, .book__form select, .book__form textarea {
  width: 100%; background: #0a0a0c; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; outline: none;
}
.book__form input:focus, .book__form select:focus, .book__form textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0, 180, 255, 0.12);
}
.book__form fieldset { border: 0; display: grid; gap: 8px; }
.check {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0a0a0c;
}
.check input { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }
.check span { flex: 1; color: var(--white); }
.check b {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #1a1404;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  padding: 5px 11px;
  border-radius: 8px;
  line-height: 1;
}
.form-status {
  min-height: 1.2em;
  color: var(--muted);
  font-size: 0.92rem;
  display: grid;
  gap: 4px;
}
.form-status--ok {
  color: #d9f4ff;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0, 180, 255, 0.35);
  background: rgba(0, 180, 255, 0.08);
}
.form-status--ok strong { color: var(--gold-bright); }
.form-status--ok code { color: var(--blue); }
.form-status--err { color: #ff8f8f; }

.footer { border-top: 1px solid var(--line); padding: 42px 0 28px; text-align: center; }
.footer__inner { display: grid; justify-items: center; gap: 14px; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); letter-spacing: 0.12em; font-size: 1.4rem; }
.footer__script {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-family: var(--script); font-style: italic; font-size: 1.5rem; color: var(--gold-bright);
}
.footer__script span { width: 56px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer__copy { margin-top: 22px; color: #6f6f78; font-size: 0.82rem; }

.float-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 30; width: 58px; height: 58px;
  border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1a1404; box-shadow: 0 12px 30px var(--gold-glow);
}
.float-call svg { width: 24px; height: 24px; }

.reveal { opacity: 0; transform: translateY(22px); animation: rise 0.8s ease forwards; animation-play-state: paused; }
.reveal.is-in { animation-play-state: running; }

@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1.16) translate3d(0, -2%, 0); } }
@keyframes bounce { 0%, 100% { transform: translateY(-4px); opacity: 0.4; } 50% { transform: translateY(4px); opacity: 1; } }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .pillars__grid, .packages__grid, .process__list, .about__grid, .book__grid, .addons__grid, .gallery__grid {
    grid-template-columns: 1fr;
  }
  .about__visual img, .gallery__item, .gallery__item img { height: 340px; min-height: 340px; }
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: var(--nav-h); left: 0; right: 0; display: none; flex-direction: column;
    gap: 0; background: rgba(5, 5, 5, 0.96); border-bottom: 1px solid var(--line); padding: 12px 0 20px;
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__links a { padding: 14px 24px; }
  .nav__cta { margin: 8px 24px 0; text-align: center; }
  .hero__mobile-banner span { font-size: 0.78rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__img, .reveal, .hero__scroll span, .ticker__track { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
