/* ============================================================
   V2S2M, LLC — v2s2m.com
   Brand palette sampled from business cards + 2026 shield logo.
   ============================================================ */

:root {
  --navy:        #0E1F33;
  --navy-deep:   #07101D;
  --navy-soft:   #16294233;
  --gold:        #C9A766;
  --gold-bright: #DEBF80;
  --gold-dim:    #8C7541;
  --cream:       #F2E9D1;
  --paper:       #FAF6EA;
  --ink:         #1B2638;
  --muted:       #94A3B8;
  --line:        #25364D;

  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,0.55), 0 8px 24px -8px rgba(0,0,0,0.4);
  --radius:    12px;
  --radius-lg: 18px;

  --container: 1140px;
  --gutter:    clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--cream);
  background: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover, a:focus-visible { color: var(--gold); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .75rem;
  font-weight: 600;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
  position: relative;
}

.section__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.section__lede {
  font-size: 1.125rem;
  max-width: 62ch;
  color: #DCE3EE;
  margin: 0 0 2.5rem;
}

/* ====================== Nav ====================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 16, 29, .82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(201, 167, 102, .14);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: .02em;
}

.nav__brand img {
  border-radius: 6px;
}

.nav__wordmark .nav__llc {
  color: var(--gold);
  font-weight: 500;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  font-size: .95rem;
}

.nav__links a {
  color: var(--cream);
  font-weight: 500;
}

.nav__links a:hover, .nav__links a:focus-visible { color: var(--gold-bright); }

.nav__cta {
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--gold) !important;
  transition: background .15s ease, color .15s ease;
}
.nav__cta:hover, .nav__cta:focus-visible {
  background: var(--gold);
  color: var(--navy-deep) !important;
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-deep);
    padding: 12px var(--gutter) 24px;
    border-bottom: 1px solid rgba(201,167,102,.14);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav__cta {
    margin-top: 14px;
    text-align: center;
  }
  .nav__links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ====================== Hero ====================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 140px) 0 clamp(80px, 11vw, 160px);
  background: radial-gradient(1200px 600px at 50% -10%, #173255 0%, var(--navy) 55%, var(--navy-deep) 100%);
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 80% 100%, rgba(201,167,102,.10), transparent 70%),
    radial-gradient(500px 250px at 20% 80%, rgba(201,167,102,.08), transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero__logo {
  width: clamp(180px, 28vw, 280px);
  height: auto;
  margin: 0 auto 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.hero__eyebrow {
  color: var(--gold);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 600;
  margin: 0 0 16px;
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  font-weight: 600;
  margin: 0 0 18px;
  color: var(--cream);
  letter-spacing: -0.015em;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-bright);
}

.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: #DCE3EE;
  max-width: 56ch;
  margin: 0 auto 2.25rem;
}

.hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====================== Buttons ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 10px 24px -12px rgba(201, 167, 102, .65);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--gold-bright);
  color: var(--navy-deep);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242, 233, 209, .35);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn--block { width: 100%; }

/* ====================== About ====================== */
.section--about {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
}

.about__lead p {
  font-size: 1.08rem;
  color: #E4ECF7;
  margin: 0 0 1rem;
}
.about__lead em { color: var(--gold-bright); font-style: italic; }

.values {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.values li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.values h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 0 0 6px;
  color: var(--gold-bright);
  font-weight: 600;
}
.values p { margin: 0; color: #CFD7E3; font-size: .98rem; }

/* ====================== Collision Guardsman ====================== */
.section--product {
  background:
    radial-gradient(700px 350px at 90% 0%, rgba(201,167,102,.06), transparent 70%),
    var(--navy);
}

.product__grid {
  display: grid;
  grid-template-columns: 1.45fr .9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-top: 8px;
}
@media (max-width: 920px) {
  .product__grid { grid-template-columns: 1fr; }
}

.product__body h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin: 1.8rem 0 .6rem;
  color: var(--gold-bright);
  font-weight: 600;
}
.product__body h3:first-of-type { margin-top: 0; }
.product__body p { font-size: 1.05rem; color: #E0E7F2; margin: 0 0 1rem; }

.steps {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: #E0E7F2;
}
.steps li { margin-bottom: .6rem; }
.steps li::marker { color: var(--gold); font-weight: 700; }

.benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.benefits li {
  position: relative;
  padding-left: 28px;
  color: #E0E7F2;
}
.benefits li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: radial-gradient(circle, var(--gold) 0 30%, transparent 32%);
}

.product__facts {
  position: sticky;
  top: 90px;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: linear-gradient(180deg, rgba(201,167,102,.08), rgba(201,167,102,0));
  box-shadow: var(--shadow-lg);
}
.product__facts h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold-bright);
  margin: 0 0 16px;
  font-weight: 600;
}
.product__facts dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0 0 22px;
}
.product__facts dt {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  font-weight: 600;
}
.product__facts dd {
  margin: 4px 0 0;
  color: var(--cream);
  font-size: 1.04rem;
}

.testimonial {
  margin: clamp(40px, 6vw, 72px) auto 0;
  max-width: 880px;
  padding: clamp(24px, 3.5vw, 40px);
  border-left: 3px solid var(--gold);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.testimonial blockquote {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.45;
  color: var(--cream);
}
.testimonial blockquote p { margin: 0; }
.testimonial figcaption {
  color: var(--gold);
  font-size: .92rem;
  letter-spacing: .04em;
}

/* ====================== Dealer Portal ====================== */
.section--portal {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) {
  .features { grid-template-columns: 1fr; }
}
.features li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,0));
  transition: border-color .15s ease, transform .15s ease;
}
.features li:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.features h3 {
  font-family: var(--serif);
  margin: 0 0 8px;
  color: var(--gold-bright);
  font-size: 1.3rem;
  font-weight: 600;
}
.features p { margin: 0; color: #D3DBE7; }

.portal__note {
  margin-top: 24px;
  color: var(--muted);
  font-size: .98rem;
}

/* ====================== Contact ====================== */
.section--contact {
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(201,167,102,.07), transparent 70%),
    var(--navy);
}

.contact__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; }
}

.contact__cards {
  display: grid;
  gap: 16px;
}

.contact__card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
}
.contact__card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 0 0 2px;
  color: var(--cream);
}
.contact__role {
  margin: 0 0 10px;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
}
.contact__card p { margin: 4px 0; font-size: 1.02rem; }

/* form */
.contact__form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  display: grid;
  gap: 14px;
}
.contact__form label { display: grid; gap: 6px; }
.contact__form label > span {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  font-weight: 600;
}
.contact__form input,
.contact__form textarea {
  width: 100%;
  background: rgba(7, 16, 29, .6);
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,167,102,.18);
}
.contact__form textarea { resize: vertical; min-height: 120px; }
.contact__form .btn { justify-self: start; }

/* honeypot */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form__status {
  margin: 4px 0 0;
  font-size: .95rem;
  min-height: 1.4em;
}
.form__status.is-error { color: #F4A8A8; }
.form__status.is-ok { color: var(--gold-bright); }

/* ====================== Footer ====================== */
.footer {
  background: var(--navy-deep);
  padding: 36px 0 28px;
  border-top: 1px solid rgba(201, 167, 102, .18);
  color: #B6C0CF;
  font-size: .9rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 700px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__brand img { border-radius: 8px; }
.footer__name {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--cream);
}
.footer__tag {
  margin: 2px 0 0;
  color: var(--gold);
  font-style: italic;
  font-size: .92rem;
}
.footer__legal { margin: 0; line-height: 1.55; }

/* ====================== Reduced motion ====================== */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
