/* ==========================================================================
   SJ DALLAS AUTO DETAILING — DESIGN SYSTEM
   Palette: Deep Blue & Red (client-provided)
   Type: Clash Display (display) + Plus Jakarta Sans (body)
   ========================================================================== */

@font-face {
  font-family: 'Clash Display';
  src: url('https://cdn.jsdelivr.net/npm/@fontsource/unbounded/files/unbounded-latin-700-normal.woff2') format('woff2');
  font-weight: 600 800;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  /* ---- Brand palette (sampled directly from client logo) ---- */
  --navy-950: #050608;      /* deepest bg — matches logo's black background */
  --navy-900: #0a0e14;      /* primary bg */
  --navy-800: #11161f;      /* elevated surface */
  --navy-700: #1a2233;      /* secondary / card surface */
  --navy-600: #26314a;      /* border / hover surface — true logo navy */
  --red-600: #8e2e35;       /* deep red (pressed) */
  --red-500: #b23b43;       /* brand accent red — matches logo red */
  --red-400: #d1555d;       /* red hover */
  --silver-300: #d1d5db;    /* chrome / muted text */
  --silver-200: #e4e7ec;
  --off-white: #f7f6f2;     /* near-white */
  --white: #ffffff;

  /* ---- Semantic ---- */
  --bg: var(--navy-900);
  --bg-elevated: var(--navy-800);
  --surface: var(--navy-700);
  --border-hairline: rgba(209, 213, 219, 0.14);
  --border-hairline-strong: rgba(209, 213, 219, 0.24);
  --text-primary: var(--off-white);
  --text-secondary: rgba(247, 246, 242, 0.68);
  --text-muted: rgba(247, 246, 242, 0.46);
  --accent: var(--red-500);
  --accent-hover: var(--red-400);
  --focus-ring: #f29aa0;

  /* ---- Type ---- */
  --font-display: 'Space Grotesk', 'Clash Display', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.32, 0.72, 0, 1);

  /* ---- Radius ---- */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  color: var(--white);
}

h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); }
p { margin: 0; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

section { position: relative; padding: 100px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-hairline-strong);
  background: rgba(230, 57, 70, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.25);
}

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head p { color: var(--text-secondary); font-size: 1.08rem; margin-top: 18px; max-width: 560px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 600ms var(--ease-smooth), background 400ms var(--ease-smooth), box-shadow 400ms var(--ease-smooth), border-color 400ms var(--ease-smooth);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 32px -10px rgba(230, 57, 70, 0.55);
}
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 16px 40px -8px rgba(230, 57, 70, 0.7); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(247, 246, 242, 0.04);
  border-color: var(--border-hailine-strong, rgba(209,213,219,0.28));
  color: var(--off-white);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(247, 246, 242, 0.1); border-color: rgba(209,213,219,0.5); transform: translateY(-2px); }
.btn-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 500ms var(--ease-spring);
  flex-shrink: 0;
}
.btn:hover .btn-icon { transform: translate(3px, -2px); }
.btn-sm { padding: 11px 18px; font-size: 0.85rem; }
:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 3px; }

/* ---- Nav ---- */
.nav-wrap {
  position: fixed;
  top: 18px; left: 0; right: 0;
  z-index: 90;
  display: flex; justify-content: center;
  pointer-events: none;
  padding: 0 16px;
}
.nav-pill {
  pointer-events: auto;
  width: 100%;
  max-width: 1160px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 20px;
  background: rgba(11, 19, 43, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-pill);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
  transition: background 400ms ease, border-color 400ms ease;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--white); letter-spacing: -0.01em; }
.nav-logo img { height: 46px; width: auto; }
.nav-logo .tag { font-size: 0.62rem; letter-spacing: 0.16em; color: var(--silver-300); font-weight: 600; text-transform: uppercase; display: block; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.89rem; font-weight: 600; color: var(--silver-200); transition: color 300ms ease; position: relative; }
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 700; color: var(--silver-200); }
.nav-burger { display: none; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); border: none; align-items: center; justify-content: center; }
.nav-burger span { display: block; width: 18px; height: 2px; background: var(--white); position: relative; transition: transform 400ms var(--ease-smooth), opacity 300ms ease; }
.nav-burger span::before, .nav-burger span::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--white); transition: transform 400ms var(--ease-smooth); }
.nav-burger span::before { top: -6px; } .nav-burger span::after { top: 6px; }
.nav-burger.active span { background: transparent; }
.nav-burger.active span::before { transform: translateY(6px) rotate(45deg); }
.nav-burger.active span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 85;
  background: rgba(7, 10, 20, 0.92);
  backdrop-filter: blur(30px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 450ms var(--ease-smooth), visibility 450ms, transform 450ms var(--ease-smooth);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--white); opacity: 0; transform: translateY(18px); transition: transform 600ms var(--ease-smooth), opacity 600ms var(--ease-smooth); }
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 80ms; }
.mobile-menu.open a:nth-child(2) { transition-delay: 140ms; }
.mobile-menu.open a:nth-child(3) { transition-delay: 200ms; }
.mobile-menu.open a:nth-child(4) { transition-delay: 260ms; }
.mobile-menu.open a:nth-child(5) { transition-delay: 320ms; }
.mobile-menu.open a:nth-child(6) { transition-delay: 380ms; }

@media (max-width: 880px) {
  .nav-links, .nav-phone-label { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-pill { padding: 8px 8px 8px 16px; }
}

/* ---- Hero ---- */
.hero {
  min-height: 100dvh;
  display: flex; align-items: flex-end;
  position: relative;
  padding-top: 140px;
  padding-bottom: 90px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-bg.mobile-only { display: none; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,10,20,0.55) 0%, rgba(7,10,20,0.15) 30%, rgba(7,10,20,0.55) 68%, rgba(7,10,20,0.96) 100%),
    linear-gradient(90deg, rgba(7,10,20,0.75) 0%, rgba(7,10,20,0.1) 55%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-content h1 { color: var(--white); text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.hero-content .lede { margin-top: 24px; font-size: 1.18rem; color: var(--silver-200); max-width: 560px; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 28px; margin-top: 56px; flex-wrap: wrap; }
.hero-meta .item { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: var(--silver-300); font-weight: 600; }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

@media (max-width: 768px) {
  .hero { padding-top: 120px; padding-bottom: 60px; align-items: flex-end; }
  .hero-bg.desktop-only { display: none; }
  .hero-bg.mobile-only { display: block; }
  .hero-content .lede { font-size: 1.02rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

/* ---- Service selector strip ---- */
.service-strip { padding: 34px 0; background: var(--navy-950); border-top: 1px solid var(--border-hairline); border-bottom: 1px solid var(--border-hairline); }
.service-strip .row { display: flex; gap: 12px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.service-strip .row::-webkit-scrollbar { display: none; }
.service-chip {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-hairline);
  background: rgba(255,255,255,0.03);
  font-size: 0.86rem; font-weight: 600; color: var(--silver-200);
  transition: background 300ms ease, border-color 300ms ease, transform 300ms var(--ease-smooth);
}
.service-chip:hover { background: rgba(230,57,70,0.12); border-color: rgba(230,57,70,0.4); color: var(--white); transform: translateY(-2px); }
.service-chip .ic { width: 8px; height: 8px; border-radius: 2px; background: var(--accent); flex-shrink: 0; }

/* ---- Cards: double-bezel ---- */
.card-shell {
  padding: 6px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border-hairline);
}
.card-core {
  border-radius: calc(var(--r-lg) - 6px);
  background: var(--navy-800);
  padding: 32px;
  height: 100%;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.05);
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.reveal { opacity: 0; transform: translateY(28px); filter: blur(6px); }
.reveal.in { opacity: 1; transform: translateY(0); filter: blur(0); transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out), filter 900ms var(--ease-out); }

/* ---- Service feature card ---- */
.service-card { display: flex; flex-direction: column; gap: 18px; }
.service-card .num { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--accent); font-weight: 700; }
.service-card h3 { color: var(--white); }
.service-card p { color: var(--text-secondary); font-size: 0.96rem; }
.service-card .thumb { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/3; margin-bottom: 4px; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease-smooth); }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 700; color: var(--white); margin-top: 4px; }
.service-card .link svg { transition: transform 400ms var(--ease-spring); }
.service-card:hover .link svg { transform: translate(3px,-2px); }

/* ---- Process steps ---- */
.process-list { display: flex; flex-direction: column; }
.process-item { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid var(--border-hairline); }
.process-item:last-child { border-bottom: 1px solid var(--border-hairline); }
.process-item .step-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: transparent; -webkit-text-stroke: 1.5px rgba(209,213,219,0.4); }
.process-item h3 { margin-bottom: 8px; }
.process-item p { color: var(--text-secondary); max-width: 560px; }

/* ---- Stat / highlight strip ---- */
.highlight-strip { display: flex; gap: 40px; flex-wrap: wrap; }
.highlight-strip .hs-item { flex: 1 1 200px; }
.highlight-strip .hs-num { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; color: var(--white); }
.highlight-strip .hs-label { color: var(--text-muted); font-size: 0.86rem; margin-top: 4px; }

/* ---- Testimonial / trust placeholder callout ---- */
.trust-note { border-left: 3px solid var(--accent); padding-left: 20px; color: var(--text-secondary); font-size: 0.95rem; }

/* ---- FAQ accordion ---- */
.faq-item { border-top: 1px solid var(--border-hairline); }
.faq-item:last-child { border-bottom: 1px solid var(--border-hairline); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; background: none; border: none; text-align: left; color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; }
.faq-q .plus { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-hairline-strong); flex-shrink: 0; position: relative; transition: transform 450ms var(--ease-smooth), background 300ms ease; }
.faq-q .plus::before, .faq-q .plus::after { content: ''; position: absolute; background: var(--silver-200); top: 50%; left: 50%; }
.faq-q .plus::before { width: 10px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-q .plus::after { width: 1.5px; height: 10px; transform: translate(-50%,-50%); transition: opacity 300ms ease; }
.faq-item.open .plus { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 500ms var(--ease-smooth); }
.faq-a p { color: var(--text-secondary); padding-bottom: 26px; max-width: 640px; font-size: 0.96rem; }

/* ---- Footer ---- */
footer { background: var(--navy-950); border-top: 1px solid var(--border-hairline); padding: 80px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; line-height: 1.6; }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver-300); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 12px; transition: color 250ms ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border-hairline); flex-wrap: wrap; gap: 14px; }
.footer-bottom small { color: var(--text-muted); font-size: 0.82rem; }
.footer-bottom .credit { color: var(--text-muted); font-size: 0.78rem; }
.footer-bottom .credit a { color: var(--text-muted); border-bottom: 1px solid rgba(209,213,219,0.2); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ---- Sticky mobile CTA ---- */
.sticky-cta { position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 80; display: none; gap: 10px; }
.sticky-cta a { flex: 1; justify-content: center; }
@media (max-width: 768px) { .sticky-cta { display: flex; } body { padding-bottom: 76px; } }

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); padding-top: 128px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--silver-200); }
.breadcrumb span.sep { opacity: 0.5; }
.breadcrumb .current { color: var(--silver-200); }

/* ---- Inner page hero (non-full-bleed) ---- */
.page-hero { padding: 24px 0 70px; }
.page-hero h1 { margin-top: 16px; max-width: 820px; }
.page-hero .lede { margin-top: 20px; font-size: 1.1rem; color: var(--text-secondary); max-width: 640px; }
.page-hero-media { border-radius: var(--r-lg); overflow: hidden; margin-top: 48px; aspect-ratio: 16/7; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) { .page-hero-media { aspect-ratio: 4/5; } }

/* ---- Content prose (blog / legal) ---- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 52px; margin-bottom: 18px; font-size: clamp(1.5rem,2.6vw,2rem); }
.prose h3 { margin-top: 34px; margin-bottom: 12px; font-size: 1.25rem; }
.prose p { color: var(--text-secondary); margin-bottom: 18px; font-size: 1.02rem; }
.prose ul, .prose ol { color: var(--text-secondary); margin: 0 0 20px; padding-left: 22px; }
.prose li { margin-bottom: 10px; }
.prose a { color: var(--white); text-decoration: underline; text-decoration-color: rgba(230,57,70,0.5); text-underline-offset: 3px; }
.prose blockquote { border-left: 3px solid var(--accent); padding-left: 20px; margin: 28px 0; font-style: italic; color: var(--silver-200); }
.prose table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 0.92rem; }
.prose th, .prose td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border-hairline); color: var(--text-secondary); }
.prose th { color: var(--white); font-family: var(--font-display); font-weight: 600; }
.byline { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: 0.85rem; margin-top: 20px; }
.byline .avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--surface); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--silver-300); font-size: 0.8rem; }

/* ---- Blog grid ---- */
.post-card { display: block; }
.post-card .thumb { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 16/10; margin-bottom: 18px; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease-smooth); }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .tag { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.post-card h3 { margin-top: 10px; color: var(--white); }
.post-card p { color: var(--text-secondary); margin-top: 10px; font-size: 0.92rem; }
.post-card .meta { margin-top: 14px; font-size: 0.8rem; color: var(--text-muted); }

/* ---- Form (multi-step lead capture) ---- */
.lead-form-wrap { border-radius: var(--r-lg); padding: 6px; background: rgba(255,255,255,0.035); border: 1px solid var(--border-hairline); }
.lead-form { border-radius: calc(var(--r-lg) - 6px); background: var(--navy-800); padding: 44px; }
@media (max-width: 640px) { .lead-form { padding: 26px 22px; } }
.lf-progress { display: flex; gap: 6px; margin-bottom: 32px; }
.lf-progress span { height: 3px; flex: 1; border-radius: 2px; background: rgba(255,255,255,0.1); overflow: hidden; }
.lf-progress span i { display: block; height: 100%; width: 0%; background: var(--accent); transition: width 500ms var(--ease-smooth); }
.lf-step { display: none; }
.lf-step.active { display: block; animation: lfin 500ms var(--ease-out); }
@keyframes lfin { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: translateX(0); } }
.lf-step-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 10px; }
.lf-step h3 { margin-bottom: 26px; }
.lf-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 500px) { .lf-options { grid-template-columns: 1fr; } }
.lf-option { position: relative; }
.lf-option input { position: absolute; opacity: 0; }
.lf-option label {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-hairline-strong);
  background: rgba(255,255,255,0.02);
  font-weight: 600; font-size: 0.92rem;
  transition: border-color 250ms ease, background 250ms ease;
}
.lf-option input:checked + label { border-color: var(--accent); background: rgba(230,57,70,0.1); }
.lf-field { margin-bottom: 18px; }
.lf-field label { display: block; font-size: 0.84rem; font-weight: 700; color: var(--silver-200); margin-bottom: 8px; }
.lf-field input, .lf-field select, .lf-field textarea {
  width: 100%; padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-hairline-strong);
  background: rgba(255,255,255,0.03);
  color: var(--white); font-family: inherit; font-size: 0.95rem;
}
.lf-field input:focus, .lf-field select:focus, .lf-field textarea:focus { outline: none; border-color: var(--accent); }
.lf-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .lf-row-2 { grid-template-columns: 1fr; } }
.lf-upload { border: 1.5px dashed var(--border-hairline-strong); border-radius: var(--r-md); padding: 30px; text-align: center; color: var(--text-secondary); font-size: 0.88rem; cursor: pointer; }
.lf-upload:hover { border-color: var(--accent); }
.lf-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 14px; }
.lf-back { color: var(--text-muted); font-weight: 600; font-size: 0.88rem; }
.lf-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ---- Utility ---- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.flex { display: flex; }
.gap-10 { gap: 10px; }
.w-full { width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---- Splash intro (homepage entry only) ---- */
#splash {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  background: radial-gradient(ellipse 70% 55% at 50% 45%, #0a0a0a 0%, #000000 78%);
  transition: opacity 900ms var(--ease-smooth), visibility 900ms;
}
#splash.splash-hide { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-ring {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  border: 1px solid rgba(209,213,219,0.12);
  opacity: 0; transform: scale(0.82);
  transition: opacity 1300ms var(--ease-out) 100ms, transform 1300ms var(--ease-out) 100ms;
}
.splash-ring::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 50%; border: 1px solid transparent;
  border-top-color: rgba(178,59,67,0.6);
  animation: splashSpin 3.4s linear infinite;
}
#splash.splash-in .splash-ring { opacity: 1; transform: scale(1); }
@keyframes splashSpin { to { transform: rotate(360deg); } }
.splash-logo {
  width: 210px; height: auto; object-fit: contain;
  opacity: 0; transform: scale(0.9) translateY(8px);
  transition: opacity 950ms var(--ease-out) 150ms, transform 950ms var(--ease-out) 150ms;
  filter: drop-shadow(0 10px 34px rgba(0,0,0,0.6));
  position: relative; z-index: 1;
}
#splash.splash-in .splash-logo { opacity: 1; transform: scale(1) translateY(0); }
.splash-rule {
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  margin: 20px 0 15px;
  transition: width 950ms var(--ease-smooth) 520ms;
}
#splash.splash-in .splash-rule { width: 130px; }
.splash-tag {
  font-family: var(--font-display); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--silver-300);
  opacity: 0; transform: translateY(6px);
  transition: opacity 850ms var(--ease-out) 760ms, transform 850ms var(--ease-out) 760ms;
}
#splash.splash-in .splash-tag { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  #splash, .splash-ring, .splash-ring::before, .splash-logo, .splash-rule, .splash-tag { transition: opacity 300ms linear !important; animation: none !important; transform: none !important; }
}

/* noise overlay */
.grain { position: fixed; inset: 0; pointer-events: none; z-index: 999; opacity: 0.025; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
