/* ============================================================
   DROP TOP MOTORS ATLANTA — droptopmotorsatl.com
   Brand: #AF1B1D red · #FCFCFC white · #220901 chocolate · #D8973C gold
   Type:  Satisfy (script titles) · Montserrat Alternates (headings)
          Geist Mono (body / spec-sheet text)
   ============================================================ */

@font-face {
  font-family: 'Satisfy';
  src: url('../assets/fonts/Satisfy-Regular.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Montserrat Alternates';
  src: url('../assets/fonts/MontserratAlternates-Regular.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Montserrat Alternates';
  src: url('../assets/fonts/MontserratAlternates-SemiBold.woff2') format('woff2');
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: 'Montserrat Alternates';
  src: url('../assets/fonts/MontserratAlternates-ExtraBold.woff2') format('woff2');
  font-weight: 800; font-display: swap;
}
@font-face {
  font-family: 'Geist Mono';
  src: url('../assets/fonts/GeistMono-Regular.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Geist Mono';
  src: url('../assets/fonts/GeistMono-Medium.woff2') format('woff2');
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: 'Geist Mono';
  src: url('../assets/fonts/GeistMono-Bold.woff2') format('woff2');
  font-weight: 700; font-display: swap;
}

:root {
  --red: #AF1B1D;
  --red-deep: #8C1517;
  --white: #FCFCFC;
  --choc: #220901;
  --gold: #D8973C;
  --gold-soft: #E8C48A;
  --paper: #FAF6F1;
  --script: 'Satisfy', cursive;
  --head: 'Montserrat Alternates', sans-serif;
  --mono: 'Geist Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--choc);
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: var(--red); }

::selection { background: var(--red); color: var(--white); }

/* ---------- checkered flag strip ---------- */
.checker {
  height: 24px;
  background:
    conic-gradient(var(--choc) 90deg, transparent 90deg 180deg, var(--choc) 180deg 270deg, transparent 270deg)
    0 0 / 24px 24px repeat-x;
  background-color: var(--white);
}
.checker--thin { height: 16px; background-size: 16px 16px; }

/* ---------- top announcement marquee ---------- */
.tape {
  background: var(--red);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  font-family: var(--head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.tape__inner { display: inline-block; animation: tape 28s linear infinite; }
.tape__inner span { margin: 0 18px; }
.tape__inner .st { color: var(--gold-soft); }
@keyframes tape { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- nav ---------- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(20px, 5vw, 56px);
  border-bottom: 1px solid rgba(34, 9, 1, .1);
  position: sticky; top: 0; z-index: 50;
  background: rgba(252, 252, 252, .92);
  backdrop-filter: blur(10px);
}
.nav__logo img { height: 44px; width: auto; }
.nav__links { display: flex; gap: clamp(14px, 2.5vw, 30px); align-items: center; list-style: none; }
.nav__links a {
  font-family: var(--head); font-weight: 600; font-size: 14px;
  color: var(--choc); text-decoration: none; letter-spacing: .04em;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.nav__links a:hover { color: var(--red); border-color: var(--gold); }

.btn {
  display: inline-block;
  font-family: var(--head); font-weight: 800; font-size: 14px;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  padding: 13px 26px; border-radius: 8px;
  transition: transform .15s, box-shadow .2s, background .2s;
}
.btn--red {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 0 var(--red-deep);
}
.btn--red:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--red-deep); }
.btn--red:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--red-deep); }
.btn--ghost {
  background: transparent; color: var(--choc);
  border: 2px solid var(--choc);
}
.btn--ghost:hover { background: var(--choc); color: var(--white); }
.btn--gold {
  background: var(--gold); color: var(--choc);
  box-shadow: 0 4px 0 #B0762B;
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #B0762B; }

@media (max-width: 820px) {
  .nav__links li.hide-m { display: none; }
}
@media (max-width: 560px) {
  .nav { padding: 12px 16px; }
  .nav__logo img { height: 34px; }
  .nav .btn { padding: 11px 15px; font-size: 12px; white-space: nowrap; }
}

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(40px, 7vh, 88px) clamp(20px, 5vw, 56px);
  max-width: 1280px; margin: 0 auto;
  position: relative;
}
.hero::before {
  /* faint gold pinstripe arc, garage-poster style */
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 110% -20%, rgba(216, 151, 60, .12), transparent 60%);
  pointer-events: none;
}
.hero__kicker {
  font-family: var(--mono); font-weight: 700; font-size: 11.5px;
  letter-spacing: .17em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; line-height: 1.5;
}
.hero__kicker b { color: var(--red); font-weight: 700; }
.hero__title {
  font-family: var(--script);
  font-size: clamp(46px, 6.2vw, 84px);
  line-height: 1.08;
  color: var(--red);
  font-weight: 400;
  margin-bottom: 10px;
}
.hero__sub {
  font-family: var(--head); font-weight: 800;
  font-size: clamp(17px, 2vw, 24px);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--choc);
  margin-bottom: 26px;
}
.hero__copy { max-width: 52ch; font-size: 15px; margin-bottom: 30px; color: #4a3428; }
.hero__copy b { color: var(--red); font-weight: 700; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hosted {
  margin-top: 20px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: #8a6a52;
}
.hosted b { color: var(--choc); font-weight: 700; }

/* ticket-stub date badge */
.stub {
  display: inline-flex; align-items: stretch;
  border: 2px dashed var(--red);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--white);
}
.stub__date {
  background: var(--red); color: var(--white);
  font-family: var(--head); font-weight: 800;
  text-align: center; padding: 12px 18px;
  display: flex; flex-direction: column; justify-content: center;
}
.stub__date .m { font-size: 12px; letter-spacing: .3em; }
.stub__date .d { font-size: 34px; line-height: 1; }
.stub__meta {
  padding: 12px 20px;
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  display: flex; flex-direction: column; justify-content: center; gap: 3px;
}
.stub__meta b { color: var(--red); font-weight: 700; }

/* hero video frame */
.hero__media { position: relative; }
.hero__frame {
  border-radius: 18px;
  overflow: hidden;
  transform: rotate(1.6deg);
  box-shadow:
    0 0 0 4px var(--white),
    0 0 0 6px var(--gold),
    0 24px 50px -18px rgba(34, 9, 1, .45);
}
.hero__frame video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.hero__plate {
  position: absolute; left: -14px; bottom: -18px;
  background: var(--choc); color: var(--gold);
  font-family: var(--mono); font-weight: 700; font-size: 12px;
  letter-spacing: .18em;
  padding: 9px 16px; border-radius: 6px;
  transform: rotate(-2deg);
  box-shadow: 0 8px 18px -8px rgba(34, 9, 1, .5);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__frame { transform: rotate(0deg); }
}

/* ---------- script marquee ---------- */
.want {
  background: var(--red);
  color: var(--white);
  overflow: hidden; white-space: nowrap;
  padding: 18px 0;
}
.want__inner { display: inline-block; animation: tape 24s linear infinite; }
.want__inner span {
  font-family: var(--script); font-size: clamp(26px, 3.4vw, 40px);
  margin: 0 26px;
}
.want__inner .flag { font-family: var(--mono); font-size: 20px; color: var(--gold-soft); vertical-align: middle; }

/* ---------- section scaffolding ---------- */
.section { padding: clamp(56px, 9vh, 110px) clamp(20px, 5vw, 56px); max-width: 1280px; margin: 0 auto; }
.section__kicker {
  font-family: var(--mono); font-weight: 700; font-size: 12px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.section__title {
  font-family: var(--script); font-size: clamp(38px, 4.6vw, 62px);
  color: var(--red); line-height: 1.1; margin-bottom: 8px; font-weight: 400;
}
.section__sub {
  font-family: var(--head); font-weight: 600; font-size: 15px;
  color: #4a3428; max-width: 62ch; margin-bottom: 44px;
}

/* ---------- window-sticker cards ---------- */
.stickers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 30px); }
.sticker {
  background: var(--white);
  border: 2px solid var(--choc);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .25s;
}
.sticker:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -20px rgba(34, 9, 1, .4); }
.sticker__head {
  background: var(--red); color: var(--white);
  padding: 18px 22px 14px;
}
.sticker__head .tag {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: .26em; color: var(--gold-soft); text-transform: uppercase;
}
.sticker__head h3 {
  font-family: var(--head); font-weight: 800; font-size: 22px;
  letter-spacing: .02em; text-transform: uppercase; margin-top: 2px;
}
.sticker__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.sticker__body p { font-size: 14px; color: #4a3428; margin-bottom: 18px; }
.spec { list-style: none; margin: 0 0 22px; flex: 1; }
.spec li {
  display: flex; justify-content: space-between; gap: 12px;
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  padding: 7px 0; border-bottom: 1px dashed rgba(34, 9, 1, .2);
}
.spec li span:first-child { color: rgba(34, 9, 1, .55); }
.spec li span:last-child { font-weight: 700; text-align: right; }
.spec li span.hot { color: var(--red); }
.sticker .btn { text-align: center; }

/* the paid headline card gets the gold ring so the eye lands there first */
.sticker--feature {
  box-shadow: 0 0 0 4px var(--gold), 0 18px 34px -22px rgba(34, 9, 1, .45);
}
.sticker--feature:hover {
  box-shadow: 0 0 0 4px var(--gold), 0 26px 44px -20px rgba(34, 9, 1, .45);
}
.perk {
  background: rgba(216, 151, 60, .18);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  margin: -4px 0 18px !important;
  font-family: var(--mono); font-size: 12.5px; line-height: 1.5;
  color: #5a3d20 !important;
}
.perk b { color: var(--red); font-weight: 700; }
.paynote {
  margin: 12px 0 0 !important;
  font-family: var(--mono); font-size: 11px; line-height: 1.55;
  color: #8a6a52 !important; text-align: center;
}

@media (max-width: 900px) { .stickers { grid-template-columns: 1fr; } }

/* ---------- film / promo section ---------- */
.film { background: var(--choc); color: var(--white); }
.film .section__sub { color: rgba(252, 252, 252, .75); }
.film__wrap {
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 0 0 3px var(--gold), 0 30px 60px -25px rgba(0, 0, 0, .8);
}
.film__wrap video { width: 100%; aspect-ratio: 16 / 9; background: #000; }
.film__credit {
  margin-top: 18px;
  font-family: var(--mono); font-size: 12.5px;
  color: rgba(252, 252, 252, .6);
  letter-spacing: .04em;
}
.film__credit b { color: var(--gold); font-weight: 700; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.shot { position: relative; border-radius: 10px; overflow: hidden; border: 2px solid var(--choc); }
.shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s; }
.shot:hover img { transform: scale(1.06); }
.shot::after {
  content: attr(data-tag);
  position: absolute; left: 10px; bottom: 10px;
  background: var(--white); color: var(--choc);
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 4px;
  box-shadow: 0 3px 10px -3px rgba(34, 9, 1, .5);
}
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- about the dealership ---------- */
.about {
  background: var(--paper);
  border-top: 1px solid rgba(216, 151, 60, .35);
  border-bottom: 1px solid rgba(216, 151, 60, .35);
  position: relative;
  overflow: hidden;
}
.about::before {
  /* oversized watermark script, luxury-brochure feel */
  content: 'Drop Top';
  position: absolute; right: -3vw; top: -2vw;
  font-family: var(--script); font-size: clamp(120px, 17vw, 260px);
  color: rgba(175, 27, 29, .05);
  line-height: 1; pointer-events: none; white-space: nowrap;
}
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
  position: relative;
}
.about .section__title { margin-bottom: 24px; }
.about__lead {
  font-family: var(--head); font-weight: 600;
  font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7;
  color: var(--choc); margin-bottom: 20px;
  border-left: 3px solid var(--gold); padding-left: 20px;
}
.about__body { font-size: 14.5px; color: #4a3428; margin-bottom: 16px; max-width: 62ch; }

.about__rail { display: grid; gap: 18px; }
.about__soon {
  background: var(--choc); color: var(--white);
  border-radius: 14px; padding: 22px 26px;
  box-shadow: 0 0 0 1px var(--gold), 0 18px 34px -22px rgba(34, 9, 1, .6);
}
.about__soon-tag {
  display: inline-block; margin-bottom: 10px;
  background: var(--gold); color: var(--choc);
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 4px;
}
.about__soon p { font-size: 13.5px; line-height: 1.7; color: rgba(252, 252, 252, .82); }
.about__soon b { color: var(--gold); font-family: var(--head); font-weight: 800; font-size: 15px; }

/* numbered pillars */
.pillars { list-style: none; display: grid; gap: 18px; }
.pillars li {
  background: var(--white);
  border: 1px solid rgba(34, 9, 1, .12);
  border-left: 4px solid var(--red);
  border-radius: 0 12px 12px 0;
  padding: 20px 22px;
  transition: transform .2s, box-shadow .25s;
}
.pillars li:hover { transform: translateX(5px); box-shadow: 0 16px 30px -20px rgba(34, 9, 1, .4); }
.pillars__num {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: .2em; color: var(--gold);
}
.pillars h3 {
  font-family: var(--head); font-weight: 800; font-size: 16px;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--red); margin: 4px 0 7px;
}
.pillars p { font-size: 13px; color: #4a3428; line-height: 1.65; }

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
}

/* ---------- details spec sheet ---------- */
.details { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 30px); }
.detail {
  border-left: 4px solid var(--gold);
  background: var(--paper);
  padding: 24px 26px;
  border-radius: 0 12px 12px 0;
}
.detail h4 {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--red);
  margin-bottom: 8px;
}
.detail p { font-family: var(--head); font-weight: 600; font-size: 16px; }
.detail p small { display: block; font-family: var(--mono); font-weight: 400; font-size: 12.5px; color: #7a5c42; margin-top: 5px; }
@media (max-width: 900px) { .details { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.footer {
  background: var(--choc); color: var(--white);
  padding: 54px clamp(20px, 5vw, 56px) 40px;
  text-align: center;
}
.footer img { height: 60px; margin: 0 auto 20px; filter: drop-shadow(0 0 1px rgba(252,252,252,.4)); }
.footer__script { font-family: var(--script); font-size: 30px; color: var(--gold); margin-bottom: 12px; }
.footer__host {
  font-family: var(--head); font-weight: 600; font-size: 13px;
  color: rgba(252, 252, 252, .8); line-height: 1.7; margin-bottom: 22px;
}
.footer__host b { color: var(--white); font-weight: 800; }
.footer__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-bottom: 26px; }
.footer__links a {
  color: var(--white); text-decoration: none;
  font-family: var(--head); font-weight: 600; font-size: 13.5px; letter-spacing: .06em;
}
.footer__links a:hover { color: var(--gold); }
.footer__fine { font-family: var(--mono); font-size: 11.5px; color: rgba(252, 252, 252, .45); letter-spacing: .05em; }
.footer__fine a { color: rgba(252, 252, 252, .65); }

/* powered-by plate — reads like a dealer badge on a trunk lid */
.powered {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 auto 26px;
  padding: 11px 20px;
  border: 1px solid rgba(216, 151, 60, .55);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.powered:hover { border-color: var(--gold); background: rgba(216, 151, 60, .1); }
.powered__label {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(252, 252, 252, .55);
}
.powered__brand {
  font-family: var(--head); font-weight: 800; font-size: 13.5px;
  letter-spacing: .16em; color: var(--gold);
}

/* ---------- reveal on scroll ----------
   Gated behind html.js so a JS failure never hides content. */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .tape__inner, .want__inner { animation: none; }
}
