/* ============================================================
   SA Detailing — premium cream theme
   Warm cream base · charcoal ink · confident orange pop.
   Minimal, airy, high-end.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --cream: #0c0c0e;          /* page background (black) */
  --cream-2: #17171b;        /* raised cards / panels */
  --ink: #131317;            /* subtle alternate-section background + inputs */
  --char: #000000;           /* deepest black (footer, CTA) */
  --orange: #c9a24a;         /* gold accent */
  --orange-deep: #b18935;
  --orange-soft: rgba(201, 162, 74, 0.15);
  --text: #f5f3ef;           /* primary text (warm white) */
  --muted: #9b948a;          /* secondary text */
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.20);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.38);
  --radius: 16px;
  --radius-lg: 26px;
  --maxw: 1160px;
  --nav-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .display { font-family: "Montserrat", "Inter", system-ui, sans-serif; font-weight: 800; line-height: 1.06; letter-spacing: -0.02em; text-transform: none; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Inter", sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem; color: var(--orange);
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--orange); }

.section { padding: clamp(72px, 10vw, 132px) 0; position: relative; }
.section--alt { background: var(--ink); }
.section-head { max-width: 660px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); margin: 16px 0 16px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.text-orange { color: var(--orange); }
.fst-italic { font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; border: 1.5px solid var(--orange); cursor: pointer;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  background: var(--orange); color: #14110a;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn:hover { transform: translateY(-3px); background: var(--orange-deep); border-color: var(--orange-deep); box-shadow: 0 14px 32px rgba(201, 162, 74, 0.32); }
.btn.ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn.ghost:hover { border-color: var(--text); background: transparent; color: var(--text); box-shadow: none; transform: translateY(-3px); }
.btn.block { width: 100%; }
.btn.light { background: #fff; color: var(--char); border-color: #fff; }
.btn.light:hover { background: #e7e4dd; border-color: #e7e4dd; }

/* ---------- Nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100; display: flex; align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, height 0.4s, border-color 0.4s, box-shadow 0.4s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(10, 10, 12, 0.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); height: 66px; }
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 56px; width: auto; transition: height 0.4s; }
.nav.scrolled .brand img { height: 46px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 9px 15px; border-radius: 10px; font-weight: 500; font-size: 0.96rem; color: var(--muted); transition: color 0.25s; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { content: ""; display: block; height: 2px; width: 22px; margin: 2px auto 0; background: var(--orange); border-radius: 2px; }
.nav-links a.nav-cta { margin-left: 10px; padding: 11px 22px; color: #14110a; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: var(--nav-h); padding-bottom: 70px; overflow: hidden; min-height: 100vh; display: flex; align-items: center; }
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(100deg, rgba(7,7,8,0.95) 0%, rgba(7,7,8,0.78) 44%, rgba(7,7,8,0.30) 100%),
  linear-gradient(to top, rgba(7,7,8,0.9), transparent 55%); }
.hero-inner { max-width: 640px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; width: 100%; }
.hero-copy h1 { font-size: clamp(2.8rem, 6.6vw, 5rem); font-weight: 500; }
.hero-copy h1 .line { display: block; overflow: hidden; }
.hero-copy h1 .line > span { display: block; transform: translateY(110%); animation: rise 1s var(--ease) forwards; }
.hero-copy h1 .line:nth-child(2) > span { animation-delay: 0.12s; }
.hero-copy h1 .line:nth-child(3) > span { animation-delay: 0.24s; }
@keyframes rise { to { transform: translateY(0); } }
.hero-copy .lead { color: var(--muted); font-size: 1.15rem; margin: 26px 0 32px; max-width: 480px; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.5s forwards; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.65s forwards; }
.hero-trust { display: flex; gap: 40px; margin-top: 44px; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.8s forwards; }
.hero-trust .stat .n { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 2rem; color: var(--text); }
.hero-trust .stat .l { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.02em; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.hero-media { position: relative; justify-self: center; }
.ring { position: absolute; width: 116%; aspect-ratio: 1; border: 1.5px solid var(--line-strong); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; }
.ring::after { content: ""; position: absolute; top: 8%; right: 12%; width: 12px; height: 12px; border-radius: 50%; background: var(--orange); }
.show-card { position: relative; z-index: 1; width: min(330px, 76vw); aspect-ratio: 9 / 16; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); background: var(--char); animation: floaty 8s ease-in-out infinite; }
.show-card video, .show-card img { width: 100%; height: 100%; object-fit: cover; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.chip { position: absolute; z-index: 2; bottom: 16px; left: 16px; background: rgba(14,14,17,0.74); backdrop-filter: blur(6px); border-radius: 12px; padding: 9px 14px; display: flex; align-items: center; gap: 9px; box-shadow: var(--shadow-sm); }
.chip .d { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); }
.chip .t { font-weight: 600; font-size: 0.86rem; color: var(--text); }

/* ---------- Cards (services) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card { position: relative; background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.45s var(--ease), box-shadow 0.45s; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card .media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card .media img, .card .media video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .media img, .card:hover .media video { transform: scale(1.06); }
.card .body { padding: 24px 24px 26px; }
.card .body .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.card .body h3 { font-size: 1.4rem; }
.card .body .from { font-family: "Inter"; font-weight: 600; color: var(--orange); font-size: 0.95rem; white-space: nowrap; }
.card .body p { color: var(--muted); font-size: 0.96rem; margin-top: 8px; }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.split-media video, .split-media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(2rem, 4.2vw, 2.9rem); margin: 14px 0 10px; }
.split p { color: var(--muted); }
.checklist { list-style: none; margin-top: 24px; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; color: var(--text); }
.checklist li::before { content: ""; flex: none; margin-top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.price { position: relative; background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column; transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.45s; }
.price:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.price.popular { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.price .pill { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-family: "Inter"; font-weight: 600; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 16px; border-radius: 999px; }
.price h3 { font-size: 1.45rem; }
.price .sub { color: var(--muted); font-size: 0.92rem; min-height: 40px; margin-top: 6px; }
.price .amount { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 3.1rem; margin: 16px 0 6px; color: var(--text); }
.price .amount .cur { color: var(--orange); font-size: 1.5rem; vertical-align: super; font-weight: 500; }
.price ul { list-style: none; margin: 18px 0 28px; display: grid; gap: 11px; }
.price ul li { color: var(--text); font-size: 0.93rem; display: flex; gap: 11px; align-items: flex-start; }
.price ul li::before { content: ""; flex: none; margin-top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.price .btn { margin-top: auto; }
.price.help { background: linear-gradient(180deg, var(--orange-soft), var(--cream-2) 55%); }

/* ---------- Reels gallery ---------- */
.reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reel { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 9/16; cursor: pointer; background: var(--char); box-shadow: var(--shadow-sm); transition: transform 0.45s var(--ease), box-shadow 0.45s; }
.reel:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.reel video, .reel img { width: 100%; height: 100%; object-fit: cover; }
.reel .play { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 55%); transition: opacity 0.3s; }
.reel .play span { width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,0.92); display: grid; place-items: center; color: var(--orange); font-size: 1.1rem; padding-left: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.35); transition: transform 0.3s var(--ease); }
.reel:hover .play span { transform: scale(1.08); }
.reel .cap { position: absolute; bottom: 14px; left: 16px; right: 16px; z-index: 2; font-weight: 600; font-size: 0.92rem; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 760px; margin: 0 auto; }
.review { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.review .stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 14px; }
.review p { color: var(--text); font-size: 1.02rem; }
.review .who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.review .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); display: grid; place-items: center; font-weight: 700; }
.review .who .n { font-weight: 600; font-size: 0.95rem; }
.review .who .c { font-size: 0.82rem; color: var(--muted); }
.video-review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 720px; margin: 0 auto; }
.vr-slot { aspect-ratio: 9/16; border-radius: var(--radius); border: 1.5px dashed var(--line-strong); display: grid; place-items: center; text-align: center; color: var(--muted); padding: 20px; background: var(--cream-2); }
.vr-slot .ic { font-size: 1.8rem; margin-bottom: 10px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-grid h2 { font-size: 1.8rem; }
.info-list { display: grid; gap: 20px; margin-top: 14px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-soft); display: grid; place-items: center; font-size: 1.15rem; flex: none; }
.info-item .t { font-weight: 600; }
.info-item .v { color: var(--muted); }
.info-item a.v:hover { color: var(--orange); }
.form { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--line-strong); background: var(--ink); color: var(--text); font-family: inherit; font-size: 0.96rem; transition: border-color 0.25s, box-shadow 0.25s; }
.field input::placeholder, .field textarea::placeholder { color: #6f6a62; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-soft); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.85rem; margin-top: 8px; min-height: 20px; }
.form-note.ok { color: #46d17f; }
.form-note.err { color: #ff6b6b; }

/* ---------- CTA banner (dark) ---------- */
.cta-banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(48px, 7vw, 88px); text-align: center; color: #fff; border: 1px solid var(--line); background: linear-gradient(rgba(7,7,8,0.82), rgba(7,7,8,0.9)), url('/assets/images/cta-bg.jpg') center/cover; }
.cta-banner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(560px 320px at 82% 0%, rgba(201,162,74,0.30), transparent 62%); }
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner .eyebrow { color: var(--orange); }
.cta-banner h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); margin-bottom: 16px; color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.72); max-width: 540px; margin: 0 auto 30px; }

/* ---------- Footer (dark) ---------- */
.footer { background: var(--char); color: rgba(255,255,255,0.66); padding: 72px 0 32px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
.footer p { color: rgba(255,255,255,0.6); font-size: 0.95rem; max-width: 320px; margin-top: 16px; }
.footer h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: #fff; margin-bottom: 18px; font-family: "Inter"; font-weight: 600; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a, .footer ul li { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.footer ul a:hover { color: var(--orange); }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.16); display: grid; place-items: center; color: #fff; transition: 0.3s; }
.socials a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.84rem; }
.footer-bottom a { color: inherit; }

/* ---------- Inner page hero ---------- */
.page-hero { padding-top: calc(var(--nav-h) + 70px); padding-bottom: 30px; text-align: center; position: relative; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(2.6rem, 6.2vw, 4.4rem); margin: 14px 0; }
.page-hero p { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* ---------- Reveal animations ---------- */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: 0.08s; }
.js .reveal.d2 { transition-delay: 0.16s; }
.js .reveal.d3 { transition-delay: 0.24s; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,16,12,0.86); display: none; align-items: center; justify-content: center; padding: 24px; backdrop-filter: blur(8px); }
.lightbox.open { display: flex; }
.lightbox video { max-height: 88vh; width: auto; border-radius: 18px; box-shadow: var(--shadow); }
.lightbox .close { position: absolute; top: 22px; right: 28px; font-size: 2.2rem; color: #fff; cursor: pointer; background: none; border: none; line-height: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 44px; }
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-media { margin-top: 6px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.rev .split-media { order: 0; }
  .cards, .price-grid, .reels, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav-links { position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(10,10,12,0.98); backdrop-filter: blur(14px); padding: 14px; gap: 2px; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform 0.4s var(--ease); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px; }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .cards, .price-grid, .reels, .reviews-grid, .video-review-grid { grid-template-columns: 1fr; }
  .reviews-grid, .video-review-grid { max-width: 360px; }
}
