/* Wheel Polishing USA — v4 "showroom"
   Light/dark alternating sections, blue accent, rounded cards, pill buttons.
   Breakpoints: 1000px (nav collapses, splits stack, grids 2-up), 600px (single column). */

:root {
  --paper: #fff;
  --mist: #f3f3f5;
  --line: #e4e4e9;
  --text: #1b1b23;
  --muted: #5d5f6b;
  --ink: #16171d;
  --ink-2: #1f212a;
  --ink-3: #2a2d38;
  --muted-on-dark: #a9abb8;
  --line-on-dark: rgba(255, 255, 255, .12);
  --accent: #2f6fd6;
  --accent-hover: #2560c0;
  --accent-soft: #87b1de;

  --font-display: 'Roboto Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Cabin', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius: 14px;
  --wrap: 1280px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 72px;
  --section-y: clamp(72px, 10vw, 128px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; padding: 10px 16px; border-radius: 999px; background: var(--accent); color: #fff; text-decoration: none; }
.skip-link:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }
.section--dark { background: var(--ink); color: #fff; }
.section--mist { background: var(--mist); }

/* Type */
.eyebrow {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}
.section--dark .eyebrow, .eyebrow--soft { color: var(--accent-soft); }
.h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 500; line-height: 1.12; letter-spacing: -.01em; }
.shout {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: .98;
  letter-spacing: -.005em;
}
.lead { color: var(--muted); font-size: 1.06rem; max-width: 34em; }
.section--dark .lead { color: var(--muted-on-dark); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 26px;
  border: 1px solid transparent; border-radius: 999px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600; line-height: 1.2;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s, transform .2s;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn--sm { min-height: 40px; padding: 8px 18px; font-size: 14px; }
.btn--blue { background: var(--accent); color: #fff; }
.btn--blue:hover { background: var(--accent-hover); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--mist); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-3); }
.btn--ghost { border-color: rgba(255, 255, 255, .4); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn--ghost-dark { border-color: var(--line); color: var(--ink); }
.btn--ghost-dark:hover { border-color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.text-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: 14px; font-weight: 600; text-decoration: none; }
.text-link svg { width: 14px; height: 14px; transition: transform .2s; }
.text-link:hover svg { transform: translateX(3px); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--header-h);
  color: #fff;
  transition: background-color .25s, box-shadow .25s;
}
.site-header.is-solid, .site-header.is-open { background: rgba(22, 23, 29, .96); box-shadow: 0 1px 0 var(--line-on-dark); }
.site-header .wrap { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { width: auto; height: 38px; }
.nav { display: flex; align-items: center; gap: 30px; margin: 0 auto; }
.nav a { font-size: 15px; font-weight: 500; text-decoration: none; color: rgba(255, 255, 255, .88); transition: color .2s; }
.nav a:hover, .nav a[aria-current] { color: #fff; }
.header-cta { flex: none; }
.nav-toggle { display: none; margin-left: auto; padding: 10px; border: 0; border-radius: 999px; background: transparent; cursor: pointer; }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.site-header.is-open .nav-toggle .icon-open { display: none; }
.site-header.is-open .nav-toggle .icon-close { display: block; }

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 980px);
  min-height: min(100svh, 980px);
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 56px) 0 72px;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 23, 29, .92) 0%, rgba(22, 23, 29, .7) 38%, rgba(22, 23, 29, .15) 75%),
    linear-gradient(180deg, rgba(22, 23, 29, .55) 0%, transparent 22%, transparent 80%, rgba(22, 23, 29, .5) 100%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero__copy { max-width: 620px; }
.hero h1 { font-size: clamp(3.2rem, 8vw, 6.4rem); margin-bottom: 26px; }
.hero p { max-width: 30em; margin-bottom: 36px; font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: rgba(255, 255, 255, .85); }

/* Ticker */
.ticker { overflow: hidden; background: var(--ink-2); color: #fff; border-top: 1px solid var(--line-on-dark); }
.ticker__track { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker ul { display: flex; flex: none; }
.ticker li {
  display: flex; align-items: center; gap: 36px; padding: 18px 18px 18px 18px;
  font-family: var(--font-display); font-size: 14px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
}
.ticker li::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-soft); margin-left: 18px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Section heads */
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 64px; align-items: end; margin-bottom: 48px; }
.section-head .lead { justify-self: end; }
.section-head--row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 20px; }
.section-head--stack { display: block; }
.section-head--stack .lead { margin-top: 16px; justify-self: start; }

/* Service cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; background: var(--mist); }
.card__img { aspect-ratio: 4 / 3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 26px; }
.card h3 { margin-bottom: 8px; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; line-height: 1.2; }
.card p { flex: 1; margin-bottom: 18px; color: var(--muted); font-size: 15px; }

/* Pricing */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.package {
  position: relative; display: flex; flex-direction: column;
  padding: 32px 28px 28px;
  border: 1px solid var(--line-on-dark); border-radius: var(--radius);
  background: var(--ink-2);
}
.package--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #1c2338 0%, var(--ink-2) 60%);
  box-shadow: 0 0 60px -12px rgba(47, 111, 214, .45);
}
.package__badge {
  position: absolute; top: -13px; right: 22px;
  padding: 5px 12px; border-radius: 999px; background: var(--accent); color: #fff;
  font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.package__num { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-on-dark); }
.package h3 { min-height: 2.4em; margin: 10px 0 22px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1.2; }
.package__price { margin-bottom: 16px; font-family: var(--font-display); font-size: clamp(2.8rem, 4vw, 3.4rem); font-weight: 700; line-height: 1; letter-spacing: -.01em; }
.package__desc { padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--line-on-dark); color: var(--muted-on-dark); font-size: 15px; }
.package .checks { flex: 1; margin-bottom: 30px; }
.package .btn { width: 100%; }

.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.checks li + li { margin-top: 12px; }
.checks svg {
  flex: none; width: 20px; height: 20px; margin-top: 2px; padding: 4px;
  border-radius: 50%; background: rgba(255, 255, 255, .1); color: var(--accent-soft);
}
.checks--blue svg { background: var(--accent); color: #fff; }

.terms {
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 24px 48px; align-items: center;
  margin-top: 28px; padding: 28px 32px;
  border-radius: var(--radius); background: var(--ink-3);
}
.terms .eyebrow { margin-bottom: 8px; }

.single {
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px 40px; align-items: center;
  margin-top: 28px; padding: 24px 32px;
  border: 1px solid var(--accent); border-radius: var(--radius);
  background: linear-gradient(90deg, #1c2338 0%, var(--ink-2) 70%);
}
.single .eyebrow { margin-bottom: 4px; }
.single__price p { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; line-height: 1; white-space: nowrap; }
.single__price small { font-size: .95rem; font-weight: 600; color: var(--muted-on-dark); letter-spacing: .02em; }
.single__text { font-size: 15px; color: rgba(255, 255, 255, .88); max-width: 30em; }
.terms p { font-size: 15px; color: rgba(255, 255, 255, .88); }

/* Why us */
.why { text-align: center; }
.why .eyebrow { margin-bottom: 20px; }
.why h2 { max-width: 23em; margin: 0 auto 36px; font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 500; line-height: 1.25; }
.why h2 em { font-style: normal; color: var(--accent); }

/* Split feature rows */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split__media { position: relative; min-height: 460px; }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split__body { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(48px, 7vw, 108px) clamp(24px, 6vw, 88px); }
.split__body .h2 { margin-bottom: 20px; }
.split__body .lead { margin-bottom: 28px; }
.split__body .checks { margin-bottom: 34px; }
.split--dark .split__body { background: var(--ink-2); color: #fff; }
.split--dark .lead { color: var(--muted-on-dark); }
.split--reverse .split__media { order: 2; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  padding: 26px 24px 34px;
  border-top: 2px solid var(--ink);
  background: linear-gradient(180deg, var(--mist) 0%, rgba(243, 243, 245, 0) 100%);
}
.step__num { display: block; margin-bottom: 18px; font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; line-height: 1; color: var(--accent); }
.step h3 { margin-bottom: 8px; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.step p { color: var(--muted); font-size: 15px; }

/* Recent work: thumbnail cards that link to Instagram */
.reels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.video-card { position: relative; display: block; aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; background: var(--ink-3); color: #fff; text-decoration: none; }
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.video-card:hover img { transform: scale(1.04); }
.video-card__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px;
  padding: 22px;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 11, 15, .88) 100%);
}
.video-card__play {
  position: absolute; top: 50%; left: 50%; width: 60px; height: 60px; margin: -30px 0 0 -30px;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(255, 255, 255, .94); color: var(--ink);
  transition: transform .25s;
}
.video-card__play svg { width: 24px; height: 24px; }
.video-card:hover .video-card__play { transform: scale(1.08); }
.video-card__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; line-height: 1.2; }
.video-card__cta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--accent-soft); }
.video-card__cta svg { width: 13px; height: 13px; transition: transform .2s; }
.video-card:hover .video-card__cta svg { transform: translateX(3px); }

/* Contact */
.contact { border-top: 1px solid var(--line-on-dark); }
.contact h2 { margin-bottom: 22px; font-size: clamp(2.8rem, 7vw, 5.6rem); }
.contact .lead { margin-bottom: 34px; }
.contact .lead a { color: #fff; font-weight: 700; text-underline-offset: 4px; white-space: nowrap; }

/* Footer */
.site-footer { background: var(--ink); color: var(--muted-on-dark); font-size: 15px; }
.site-footer__top {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px;
  padding: 40px 0 32px; border-top: 1px solid var(--line-on-dark);
}
.site-footer__top .brand img { height: 34px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; }
.footer-nav a, .site-footer__bottom a { text-decoration: none; transition: color .2s; }
.footer-nav a:hover, .site-footer__bottom a:hover { color: #fff; }
.socials { display: flex; gap: 10px; justify-self: end; }
.socials a {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink-3); color: #fff; transition: background-color .2s;
}
.socials a:hover { background: var(--accent); }
.socials svg { width: 18px; height: 18px; }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; padding: 0 0 36px; font-size: 14px; }

/* Payment page */
.page-hero { padding: calc(var(--header-h) + 72px) 0 72px; }
.page-hero h1 { margin-bottom: 18px; font-size: clamp(2.8rem, 7vw, 5rem); }
.pay-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }
.panel { padding: clamp(24px, 4vw, 40px); border-radius: var(--radius); background: var(--mist); }
.panel--dark { background: var(--ink-2); color: #fff; }
.panel h2 { margin-bottom: 12px; font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; }
.panel > p { margin-bottom: 24px; color: var(--muted); }
.panel--dark > p { color: var(--muted-on-dark); }
.panel .checks { margin-bottom: 28px; }
.payment-slot {
  display: grid; place-items: center; gap: 14px; min-height: 180px; padding: 28px;
  border: 1.5px dashed #c5c6cf; border-radius: var(--radius); background: var(--paper); text-align: center; color: var(--muted);
}
.notice { display: flex; gap: 12px; align-items: flex-start; margin-top: 20px; font-size: 14px; color: var(--muted); }
.notice svg { flex: none; width: 20px; height: 20px; color: var(--accent); }

/* 404 */
.not-found { min-height: 100vh; min-height: 100svh; display: grid; place-items: center; text-align: center; }
.not-found h1 { margin-bottom: 18px; font-size: clamp(3rem, 9vw, 6rem); }
.not-found .lead { margin: 0 auto 32px; }
.not-found .btn-row { justify-content: center; }

/* Reveal on scroll */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }

/* ≤1000px: collapse nav, stack splits, 2-up grids */
@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--gutter) 24px; background: rgba(22, 23, 29, .98);
    border-bottom: 1px solid var(--line-on-dark);
  }
  .nav a { padding: 14px 0; font-size: 17px; border-bottom: 1px solid var(--line-on-dark); }
  .nav .btn { margin-top: 20px; border-bottom: 0; }
  .site-header.is-open .nav { display: flex; }
  .nav__cta { display: inline-flex; }

  .section-head { grid-template-columns: 1fr; }
  .section-head .lead { justify-self: start; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .packages { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; gap: 32px; }
  .package h3 { min-height: 0; }
  .terms { grid-template-columns: 1fr; padding: 26px 24px; }
  .terms .btn { justify-self: start; }
  .single { grid-template-columns: 1fr; padding: 24px; }
  .single .btn { justify-self: start; }
  .split { grid-template-columns: 1fr; }
  .split__media { min-height: 0; aspect-ratio: 4 / 3; }
  .split--reverse .split__media { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reels { grid-template-columns: repeat(2, 1fr); }
  .pay-grid { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .socials { justify-self: center; }
}
@media (min-width: 1001px) { .nav__cta { display: none; } }

/* ≤600px: single column */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .brand img { height: 32px; }
  .hero { min-height: 0; padding: calc(var(--header-h) + 64px) 0 64px; }
  .hero::after { background: linear-gradient(180deg, rgba(22, 23, 29, .55) 0%, rgba(22, 23, 29, .82) 55%, rgba(22, 23, 29, .95) 100%); }
  .hero__bg img { object-position: 60% 50%; }
  .btn-row .btn { flex: 1 1 100%; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .reels { gap: 12px; }
  .video-card__overlay { padding: 14px; }
  .video-card__play { width: 48px; height: 48px; margin: -24px 0 0 -24px; }
  .video-card__title { font-size: 1.05rem; }
  .video-card__cta { font-size: 12px; }
  .terms .btn, .single .btn { width: 100%; }
  .site-footer__bottom { justify-content: center; text-align: center; }
}
