:root {
  --bg: #0E0F12;
  --panel: #16181D;
  --panel-2: #121419;
  --border: rgba(139,144,154,.18);
  --border-strong: rgba(139,144,154,.28);
  --ink: #EAECEF;
  --ash: #8B909A;
  --gold: #C79A54;
  --gold-hover: #d8ad68;
  --blue: #1C57B5;
  --purple: #6A4A99;
  --red: #C8102E;
  --ok: #7BB98C;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Onest', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--bg); }
input, button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@keyframes revealUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
[data-reveal] { opacity: 0; animation: revealUp .8s cubic-bezier(.2,.7,.2,1) forwards; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { animation: none !important; opacity: 1 !important; transform: none !important; }
}

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.gold { color: var(--gold); }

/* ===== Stripe ===== */
.stripe { display: flex; height: 2px; }
.stripe > div { flex: 1; }
.stripe .b1 { background: var(--blue); }
.stripe .b2 { background: var(--purple); }
.stripe .b3 { background: var(--red); }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(14,15,18,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav.scrolled { background: rgba(14,15,18,.96); border-bottom-color: var(--border-strong); }
.nav-inner {
  max-width: 1220px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; gap: 20px;
}
.brand { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.brand-name { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: 2px; }
.brand-tag { font-size: 9px; color: var(--ash); letter-spacing: 1.5px; }
.nav-links { display: flex; gap: 24px; margin-left: auto; font-size: 14px; color: var(--ash); }
.nav-links a:hover { color: var(--ink); }
.nav-phone { font-size: 14px; font-weight: 600; letter-spacing: .5px; white-space: nowrap; }
.btn-gold {
  background: var(--gold); color: var(--bg); font-weight: 600; font-size: 14px;
  padding: 11px 18px; border: none; cursor: pointer; white-space: nowrap; display: inline-block;
}
.btn-gold:hover { background: var(--gold-hover); }

@media (max-width: 900px) { .nav-links { display: none; } }
@media (max-width: 560px) { .nav-phone { display: none; } }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,15,18,.55) 0%, rgba(14,15,18,.72) 55%, var(--bg) 100%);
}
.hero-wrap { position: relative; max-width: 1220px; margin: 0 auto; padding: 76px 20px 64px; }
.eyebrow { font-size: 12px; color: var(--gold); letter-spacing: 2px; margin-bottom: 22px; }
.hero h1 {
  font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: clamp(34px,7vw,68px);
  line-height: 1.04; letter-spacing: -.5px; margin: 0 0 22px; max-width: 16ch;
}
.hero-sub { font-size: clamp(16px,2.3vw,20px); color: var(--ash); max-width: 58ch; line-height: 1.55; margin: 0 0 34px; }

.hero-form { background: var(--panel); border: 1px solid var(--border); padding: 20px; max-width: 560px; }
.hero-form-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ash); letter-spacing: 1.5px; margin-bottom: 14px; }
.hero-form-row { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-form input {
  flex: 1; min-width: 180px; background: var(--bg); border: 1px solid var(--border-strong);
  color: var(--ink); font-family: 'JetBrains Mono', monospace; font-size: 15px; padding: 14px;
}
.social-row { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 7px; flex: 1; min-width: 120px; justify-content: center;
  border: 1px solid var(--border-strong); padding: 11px; font-size: 13px; color: var(--ink);
}
.social-link:hover { border-color: var(--gold); }
.social-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.hero-meta { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 20px; font-size: 13px; color: var(--ash); }
.hero-meta-item { display: flex; align-items: center; gap: 8px; }
.hero-meta a:hover { color: var(--ink); }
.hero-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ===== Section shell ===== */
.section { border-top: 1px solid var(--border); }
.section.alt { background: var(--panel-2); }
.section-inner { max-width: 1220px; margin: 0 auto; padding: 64px 20px; }
.section-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.section h2 { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: clamp(26px,4.5vw,40px); margin: 0 0 10px; line-height: 1.1; }
.section-sub { color: var(--ash); max-width: 54ch; margin: 0 0 30px; font-size: 16px; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }

/* ===== Decoder / selector ===== */
.selector-card { border: 1px solid var(--border-strong); background: var(--panel); }
.brand-tabs { display: flex; border-bottom: 1px solid var(--border); }
.brand-tab {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 16px 8px; border: none; cursor: pointer; background: #101216;
  border-bottom: 2px solid transparent; color: var(--ash); transition: all .18s;
}
.brand-tab.active { background: var(--panel); border-bottom-color: var(--gold); color: var(--ink); }
.brand-tab-name { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 15px; }
.brand-tab-meta { font-family: 'JetBrains Mono', monospace; font-size: 10px; margin-top: 3px; }

.decoder-grid { display: grid; grid-template-columns: 1fr 1fr; }
.decoder-col { display: flex; flex-direction: column; }
.decoder-col.left { border-right: 1px solid var(--border); }
.decoder-col-head { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--ash); letter-spacing: 1.5px; padding: 14px 16px 8px; }
.decoder-list { max-height: 340px; overflow-y: auto; }
.panel-row {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 16px; border: none; cursor: pointer; text-align: left; background: transparent;
  border-left: 2px solid transparent; color: var(--ash); font-size: 15px; transition: all .15s;
}
.panel-row.selected { background: rgba(199,154,84,.12); border-left-color: var(--gold); color: var(--ink); }
.panel-row .code { font-family: 'JetBrains Mono', monospace; font-weight: 600; letter-spacing: 1px; font-size: 13px; }
.panel-row .years { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ash); white-space: nowrap; }

.selected-bar { border-top: 1px solid var(--border); padding: 20px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; background: var(--panel-2); }
.selected-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ash); letter-spacing: 1.5px; margin-bottom: 6px; }
.selected-title { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: clamp(18px,3vw,24px); }
.selected-sub { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--gold); margin-top: 4px; }

@media (max-width: 760px) {
  .brand-tabs { flex-wrap: wrap; }
  .decoder-grid { grid-template-columns: 1fr; }
  .decoder-col.left { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 1px; background: var(--border-strong); border: 1px solid var(--border-strong); }
.service-card { background: var(--panel); padding: 22px; display: flex; flex-direction: column; gap: 10px; min-height: 120px; }
.service-card:hover { background: #1b1e24; }
.service-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--gold); letter-spacing: 1px; }
.service-name { font-family: 'Unbounded', sans-serif; font-weight: 500; font-size: 18px; line-height: 1.2; }

/* ===== Stats / proof ===== */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 1px; background: var(--border-strong); border: 1px solid var(--border-strong); margin-bottom: 30px; }
.stat-tile { background: var(--bg); padding: 28px 20px; }
.stat-value { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: clamp(30px,5vw,44px); line-height: 1; }
.stat-label { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ash); margin-top: 10px; letter-spacing: .5px; }

.photos-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 14px; }
.photo-tile { position: relative; aspect-ratio: 4/3; border: 1px solid var(--border); overflow: hidden; }
.photo-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== Reviews ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 14px; align-items: start; }
.review-card { background: var(--panel); border: 1px solid var(--border); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.review-top { display: flex; align-items: center; justify-content: space-between; }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.review-car { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ash); }
.review-text { margin: 0; font-size: 14px; line-height: 1.55; }
.review-bottom { margin-top: auto; display: flex; justify-content: space-between; font-size: 13px; color: var(--ash); font-family: 'JetBrains Mono', monospace; }
.review-link { border: 1px solid var(--border-strong); padding: 14px 18px; display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ash); line-height: 1.35; }
.review-link:hover { border-color: var(--gold); }

/* ===== Blog ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 14px; }
.blog-card { background: var(--bg); border: 1px solid var(--border); display: flex; flex-direction: column; }
.blog-card:hover { border-color: var(--gold); }
.blog-thumb { aspect-ratio: 16/9; background: repeating-linear-gradient(135deg,var(--panel),var(--panel) 12px,#1b1e24 12px,#1b1e24 24px); display: flex; align-items: flex-end; padding: 12px; }
.blog-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--gold); }
.blog-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-title { font-family: 'Unbounded', sans-serif; font-weight: 500; font-size: 16px; line-height: 1.3; }
.blog-date { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ash); margin-top: auto; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 40px; }
.about-text p { color: var(--ash); font-size: 16px; line-height: 1.6; margin: 0 0 16px; }
.badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.badge { border: 1px solid var(--border-strong); padding: 9px 14px; font-family: 'JetBrains Mono', monospace; font-size: 12px; }
.fact-panel { border: 1px solid var(--border); background: var(--panel); padding: 26px; }
.fact-panel-head { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ash); letter-spacing: 1.5px; margin-bottom: 18px; }
.fact-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(139,144,154,.12); font-size: 14px; }
.fact-row .k { color: var(--ash); }
.fact-row .v { font-family: 'JetBrains Mono', monospace; text-align: right; }

/* ===== Booking ===== */
.book-card { border: 1px solid var(--border-strong); background: var(--panel); padding: 24px; max-width: 760px; }
.book-step-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ash); letter-spacing: 1.5px; margin-bottom: 12px; }
.day-row, .time-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.day-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 12px 14px; min-width: 64px;
  border: 1px solid var(--border-strong); background: var(--bg); color: var(--ink); cursor: pointer; transition: all .15s;
}
.day-btn .dow, .day-btn .mon { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--ash); }
.day-btn .day { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 16px; }
.day-btn.active { border-color: var(--gold); background: rgba(199,154,84,.12); }
.time-btn {
  padding: 12px 18px; border: 1px solid var(--border-strong); background: var(--bg); color: var(--ink);
  font-family: 'JetBrains Mono', monospace; font-size: 14px; cursor: pointer; transition: all .15s;
}
.time-btn.active { border-color: var(--gold); background: rgba(199,154,84,.12); }
.book-contact-row { display: flex; gap: 10px; flex-wrap: wrap; }
.book-contact-row input {
  flex: 1; min-width: 200px; background: var(--bg); border: 1px solid var(--border-strong); color: var(--ink);
  font-family: 'JetBrains Mono', monospace; font-size: 15px; padding: 14px;
}
.book-submit { background: #2a2d34; color: var(--ash); font-weight: 600; font-size: 15px; padding: 14px 24px; border: none; cursor: not-allowed; transition: all .15s; }
.book-submit.ready { background: var(--gold); color: var(--bg); cursor: pointer; }
.book-msg { margin-top: 14px; min-height: 20px; font-size: 14px; font-family: 'JetBrains Mono', monospace; }
.book-msg.ok { color: var(--ok); }
.book-msg.err { color: var(--red); }
.book-fine { margin: 16px 0 0; font-size: 12px; color: var(--ash); }
.book-fine a { color: var(--gold); }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); }
.footer-grid { max-width: 1220px; margin: 0 auto; padding: 52px 20px; display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 32px; }
.footer-brand { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: 2px; margin-bottom: 8px; }
.footer-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ash); letter-spacing: 1px; margin-bottom: 16px; }
.footer-about { color: var(--ash); font-size: 14px; line-height: 1.6; margin: 0; }
.footer-heading { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ash); letter-spacing: 1.5px; margin-bottom: 14px; }
.footer-phone { display: block; font-family: 'JetBrains Mono', monospace; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.footer-address { color: var(--ash); font-size: 14px; line-height: 1.6; display: block; }
.footer-address:hover { color: var(--ink); }
.footer-social { display: flex; gap: 8px; margin-top: 14px; }
.footer-social a { border: 1px solid var(--border-strong); padding: 8px 12px; font-size: 12px; }
.footer-social a:hover { border-color: var(--gold); }
.map-card {
  display: flex; align-items: center; justify-content: center; aspect-ratio: 16/10;
  background: repeating-linear-gradient(45deg,var(--panel),var(--panel) 10px,#1b1e24 10px,#1b1e24 20px);
  border: 1px solid var(--border); font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ash);
}
.map-card:hover { border-color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(139,144,154,.12); }
.footer-bottom-inner { max-width: 1220px; margin: 0 auto; padding: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--ash); font-family: 'JetBrains Mono', monospace; }
.footer-bottom-inner a:hover { color: var(--ink); }

/* ===== Floating CTA ===== */
.float-cta {
  position: fixed; right: 16px; bottom: 16px; z-index: 50; display: flex; align-items: center; gap: 6px;
  background: var(--panel); border: 1px solid rgba(199,154,84,.5); padding: 6px 6px 6px 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.float-cta a { color: var(--gold); font-weight: 600; font-size: 14px; }
.float-cta button { background: transparent; border: none; color: var(--ash); font-size: 18px; cursor: pointer; padding: 4px 8px; line-height: 1; }
.float-cta button:hover { color: var(--ink); }
.float-cta.hidden { display: none; }

@media (max-width: 760px) {
  .section-inner { padding: 40px 20px; }
  .book-card { padding: 18px; }
}
