/* =========================================================
   Lets Drive — host signup landing
   ========================================================= */

:root {
  --black:      #0B0B0D;
  --card:       #17171B;
  --hairline:   rgba(255, 255, 255, 0.10);
  --volt:       #C6EF00;
  --text:       #FFFFFF;
  --text-dim:   rgba(255, 255, 255, 0.66);
  --text-faint: rgba(255, 255, 255, 0.42);
  --radius:     14px;
  --wrap:       1120px;
  --gutter:     24px;
  --ease:       cubic-bezier(0.16, 0.84, 0.44, 1);
  --t-fast:     120ms var(--ease);
  --t:          160ms var(--ease);
  --t-slow:     220ms var(--ease);

  /* Photo crop + scrim controls — tweak these, nothing else. */
  --hero-pos-x: 46%;
  --hero-pos-y: 62%;   /* frames the RS3 + the road below it at this section height */
  --hero-scrim: 0.73;
  --app-pos-x:  50%;
  --app-pos-y:  42%;
  --app-scrim:  0.80;
  --fade-h:     180px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;  /* clears the sticky logo + tab strip */
  background: var(--black);
}

body {
  margin: 0;
  background: transparent;
  color: var(--text);
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* One shared photo backdrop behind every page (the home RS3 shot) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("assets/hero-rs3.jpg") 50% 42% / cover no-repeat;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(11, 11, 13, 0.82);
}

img, video { display: block; max-width: 100%; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* ---------- Display type ---------- */

.display {
  font-family: 'Anton', 'Archivo', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.92;
  margin: 0;
}
.display--xl { font-size: clamp(44px, 7.2vw, 72px); }
.display--lg { font-size: clamp(38px, 5.6vw, 56px); }

/* =========================================================
   Logo — sits over the hero photo, no bar
   ========================================================= */

.logobar {
  text-align: center;
  padding-top: 40px;
  margin-bottom: -8px;   /* pull the hero row up a touch under the logo */
}
.logobar__mark {
  width: 300px;
  max-width: 74vw;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.6));
}

/* =========================================================
   Photo sections (shared)
   ========================================================= */

.section {
  position: relative;
  isolation: isolate;
  background: var(--black);
  overflow: hidden;
}

.section__photo { position: absolute; inset: 0; z-index: 0; }
.section__photo img { width: 100%; height: 100%; object-fit: cover; }

.section--hero .section__photo img { object-position: var(--hero-pos-x) var(--hero-pos-y); }
.section--app  .section__photo img { object-position: var(--app-pos-x)  var(--app-pos-y); }

/* Flat protection scrim */
.section__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(11, 11, 13, var(--hero-scrim));
}
.section__scrim--deep { background: rgba(11, 11, 13, var(--app-scrim)); }

/* Bottom seam — photo resolves to solid black, no divider line */
.section__fade {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  height: var(--fade-h);
  background: linear-gradient(to bottom, rgba(11, 11, 13, 0) 0%, var(--black) 88%, var(--black) 100%);
}

/* =========================================================
   Layout rows
   ========================================================= */

.row {
  display: grid;
  gap: 56px;
  align-items: center;
}
.row--hero {
  grid-template-columns: 1fr minmax(0, 452px);
  padding: 72px 24px 132px;
}
.row--app {
  grid-template-columns: 300px 1fr;
  gap: 72px;
  padding: 104px 24px 72px;
}

/* =========================================================
   2. Hero pitch column
   ========================================================= */

.badge {
  display: inline-block;
  margin: 0 0 24px;
  padding: 7px 16px 6px;
  border: 1px solid var(--volt);
  border-radius: 999px;
  color: var(--volt);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

.col--pitch .display { margin-bottom: 26px; }

.lede {
  max-width: 46ch;
  margin: 0 0 14px;
  font-size: 17px;
  color: var(--text-dim);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.55);
}
.lede:last-child { margin-bottom: 0; }
.lede strong { color: var(--volt); font-weight: 700; }

/* =========================================================
   Form card
   ========================================================= */

.card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.card__body { padding: 30px 28px 26px; }
/* .success sets display:flex, which would otherwise beat [hidden] */
.card__body[hidden] { display: none; }

.card__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 0 8px;
}
.card__sub {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--text-faint);
  line-height: 1.5;
}

.field { margin-bottom: 16px; }

.field__label {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.field__hint { color: var(--volt); }

.input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color var(--t), background-color var(--t), box-shadow var(--t);
}
.input::placeholder { color: rgba(255, 255, 255, 0.26); }
.input:hover { border-color: rgba(255, 255, 255, 0.18); }
.input:focus,
.input:focus-within {
  outline: none;
  border-color: var(--volt);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(198, 239, 0, 0.14);
}
.input.is-invalid { border-color: #FF6B5A; }

/* Instagram @ prefix */
.input--prefixed {
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 2px;
}
.input__prefix {
  color: var(--text-faint);
  font-size: 15px;
  flex: none;
}
.input--prefixed input {
  flex: 1 1 auto;
  min-width: 0;
  background: none;
  border: 0;
  outline: none;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 12px 0;
}
.input--prefixed input::placeholder { color: rgba(255, 255, 255, 0.26); }

.field__error,
.form__error {
  margin: 6px 0 0;
  font-size: 12px;
  color: #FF6B5A;
  min-height: 0;
}
.field__error:empty,
.form__error:empty { display: none; }
.form__error { margin: 4px 0 12px; }

/* Submit */
.btn {
  width: 100%;
  margin-top: 8px;
  padding: 15px 20px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.38);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background-color var(--t), color var(--t), box-shadow var(--t-slow), transform var(--t-fast);
}
.btn:not(:disabled) {
  background: var(--volt);
  color: #0B0B0D;
  cursor: pointer;
  box-shadow: 0 0 28px rgba(198, 239, 0, 0.24);
}
.btn:not(:disabled):hover {
  box-shadow: 0 0 38px rgba(198, 239, 0, 0.38);
}
.btn:not(:disabled):active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--volt); outline-offset: 3px; }
.btn__arrow { transition: transform var(--t); }
.btn:not(:disabled):hover .btn__arrow { transform: translateX(3px); }
.btn.is-busy { pointer-events: none; opacity: 0.72; }

.footnote {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-faint);
  text-align: center;
}

/* Success state — keep the card tall enough that the page
   doesn't lurch upward when the form is swapped out. */
.success {
  padding: 44px 28px 46px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.success .card__title { font-size: 30px; margin-bottom: 12px; }
.success__copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 34ch;
}

/* =========================================================
   3. App section
   ========================================================= */

.eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--volt);
}

.col--features .display { margin-bottom: 34px; }

.feature { margin-bottom: 24px; }
.feature:last-child { margin-bottom: 0; }
.feature__title {
  margin: 0 0 5px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.005em;
}
.feature__body {
  margin: 0;
  max-width: 42ch;
  font-size: 15px;
  color: var(--text-dim);
}

/* Phone mock */
.phone {
  position: relative;
  width: 300px;
  height: 600px;
  margin: 0 auto;
  border-radius: 44px;
  padding: 9px;
  background: #131316;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 34px 70px rgba(0, 0, 0, 0.62);
}
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #000;
}
.phone__screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone__island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 24px;
  border-radius: 999px;
  background: #000;
}

/* Tagline footer inside the photo section */
.tagline {
  padding-bottom: 92px;
  text-align: center;
}
.tagline__mark {
  width: 220px;
  max-width: 62vw;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.65));
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
  .row--hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 120px; }
  .row--app  { grid-template-columns: 1fr; gap: 48px; padding: 88px 24px 60px; }
  .col--form { max-width: 452px; }
  .lede, .feature__body { max-width: none; }
}

@media (max-width: 800px) {
  :root { --fade-h: 140px; }
  .col--form { max-width: none; }
  .logobar { padding: 32px var(--gutter) 26px; }
  .logobar__mark { width: 240px; }
  .row--hero { padding: 48px 24px 104px; }
  .row--app  { padding: 72px 24px 52px; }
  .col--features .display { margin-bottom: 28px; }
  .tagline { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .card__body { padding: 26px 20px 24px; }
  .success { padding: 38px 20px 40px; }
  .phone { width: 264px; height: 528px; border-radius: 40px; }
  .phone__screen { border-radius: 32px; }
}

/* =========================================================
   Nav bar (injected by site.js on every page)
   ========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 13, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav__wrap {
  display: flex;
  align-items: center;
  justify-content: center;   /* logo centred */
  height: 84px;
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__brand img {
  height: 42px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.5));
}

/* Inner pages: single-row bar — logo hard-left, tabs centred.
   Narrow screens stack (logo on top, tabs wrapping below). */
.nav--bar .nav__wrap {
  max-width: none;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  height: auto;
  padding: 12px 16px;
}
@media (min-width: 1041px) {
  .nav--bar .nav__wrap {
    position: relative;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0;
    height: 84px;
    padding: 0 22px;
  }
  .nav--bar .nav__tabs {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* The tab row — used in the strip AND under the home headline */
.tabrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tabrow__link {
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--t), background-color var(--t), box-shadow var(--t);
}

/* =========================================================
   Meets — video left, join form right
   ========================================================= */

.row--meets {
  grid-template-columns: minmax(0, 360px) minmax(0, 460px);
  justify-content: center;
  align-items: start;
  gap: 48px;
  padding: 20px 24px 96px;
}
.meet-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 620px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #0e0e11;
  border: 1px solid var(--hairline);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
}
.meet-video video { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .row--meets { grid-template-columns: 1fr; gap: 32px; }
  .col--meet-video { max-width: 360px; margin: 0 auto; width: 100%; }
  .col--meet-form { max-width: 460px; margin: 0 auto; width: 100%; }
}

/* Home hero tabs — big and spread out under the headline */
.hero-tabs .tabrow { gap: 12px 26px; }
.hero-tabs .tabrow__link { font-size: 24px; padding: 12px 26px; }
.tabrow__link:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.tabrow__link.is-active { color: var(--volt); }
.tabrow__link--cta { color: #0B0B0D; background: var(--volt); font-weight: 700; }
.tabrow__link--cta:hover { color: #0B0B0D; background: var(--volt); box-shadow: 0 0 22px rgba(198, 239, 0, 0.4); }
.tabrow__link--cta.is-active { color: #0B0B0D; }

/* Home hero CTA button */
.hero-cta {
  margin-top: 38px;
  font-size: 17px;
  padding: 16px 30px;
}

/* Scroll cue under the hero */
.scroll-cue {
  margin: 44px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue span {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, var(--volt), transparent);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); transform-origin: top; }
  50%      { opacity: 1;    transform: scaleY(1);   transform-origin: top; }
}

/* Home scroll sections (over the fixed video backdrop) */
.home-block {
  padding: 116px 0;
  text-align: center;
  background: rgba(11, 11, 13, 0.55);
}
.home-block + .home-block { border-top: 1px solid var(--hairline); }
.home-block__inner { max-width: 680px; margin: 0 auto; }
.home-block .display { text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6); }
.home-block__lead {
  font-size: 18px;
  color: var(--text-dim);
  margin: 20px auto 0;
  max-width: 52ch;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.6);
}
.home-block--cta .home-block__lead { margin-bottom: 30px; }

.home-tagline {
  text-align: center;
  padding: 72px 24px 44px;
  background: rgba(11, 11, 13, 0.55);
  border-top: 1px solid var(--hairline);
}
.home-tagline img {
  width: 220px;
  max-width: 62vw;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.65));
}

/* =========================================================
   Home — splash hero (tagline only)
   ========================================================= */

.hero-splash {
  display: flex;
  align-items: center;               /* vertically centred */
  min-height: calc(100svh - 84px);   /* fill the viewport under the sticky nav */
}
.hero-splash__inner {
  width: 100%;
  text-align: center;
  padding: 96px 24px;
}
.hero-splash__title {
  font-size: clamp(28px, 7.4vw, 78px);
  line-height: 0.98;
  margin: 0 auto;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
}
.hero-splash__title span { display: block; white-space: nowrap; }

@media (max-width: 760px) {
  .hero-splash { min-height: calc(100svh - 76px); }
  .hero-splash__inner { padding: 72px 24px; }
  .hero-splash__title { margin-bottom: 0; }
  .hero-tabs { margin-top: 26px; }
  .nav__wrap { height: 76px; }
  .nav__brand img { height: 36px; }
  .tabstrip { top: 76px; }
  .tabrow__link { font-size: 15px; padding: 10px 16px; }
  .hero-tabs .tabrow { gap: 10px 18px; }
  .hero-tabs .tabrow__link { font-size: 21px; padding: 11px 20px; }
}

/* =========================================================
   Photo credit (home hero, top-right)
   ========================================================= */

.photo-credit {
  position: absolute;
  top: 14px;
  right: var(--gutter);
  z-index: 3;
  font-size: 12px;
  color: var(--text-faint);
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.photo-credit strong { color: var(--text-dim); font-weight: 600; transition: color var(--t); }
.photo-credit:hover strong { color: #fff; }

/* =========================================================
   Shared: page heads, leads, links, CTAs
   ========================================================= */

.page-head { padding-top: 64px; max-width: 760px; }
.page-head .display { margin-bottom: 18px; }
.page-lead {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 54ch;
  margin: 0;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
}

.plain-hero { background: var(--black); padding: 40px 0 96px; }

.link-strong {
  color: var(--volt);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(198, 239, 0, 0.35);
  transition: border-color var(--t);
}
.link-strong:hover { border-bottom-color: var(--volt); }

.pill-cta {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--volt); color: #0B0B0D;
  font-weight: 700; font-size: 15px;
  padding: 14px 24px; border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(198, 239, 0, 0.22);
  transition: box-shadow var(--t-slow), transform var(--t-fast);
}
.pill-cta:hover { box-shadow: 0 0 40px rgba(198, 239, 0, 0.4); }
.pill-cta:active { transform: translateY(1px); }
.pill-cta span { transition: transform var(--t); }
.pill-cta:hover span { transform: translateX(3px); }

.ghost-cta {
  display: inline-flex; align-items: center;
  padding: 14px 22px; border-radius: 999px;
  border: 1px solid var(--hairline);
  color: #fff; text-decoration: none; font-weight: 600; font-size: 15px;
  transition: border-color var(--t), background-color var(--t);
}
.ghost-cta:hover { border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.04); }

.cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  align-items: center; justify-content: center;
  padding: 8px 24px 0;
}
.cta-row--left { justify-content: flex-start; padding: 4px 0 0; }

/* App / About / Meets page sections reuse the photo section shells */
.section--app-page .row--app { padding-top: 56px; }
.section--meets .page-head { margin-bottom: 8px; }

/* Meets event header — name on one line, date under it, blurb below */
.page-head--event { max-width: 1040px; }
.event-name {
  font-size: clamp(30px, 8.6vw, 92px);
  line-height: 0.98;
  white-space: nowrap;
  margin: 8px 0 0;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.6);
}
.event-date {
  margin: 10px 0 0;
  color: var(--volt);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.event-blurb { margin-top: 18px; max-width: 60ch; }

/* Meets: "become a host?" banner linking to the contact form */
.host-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-top: 26px; padding: 16px 22px;
  border: 1px solid var(--volt); border-radius: 999px;
  background: rgba(198, 239, 0, 0.06);
  text-decoration: none;
  transition: background-color var(--t), box-shadow var(--t-slow);
}
.host-cta:hover { background: rgba(198, 239, 0, 0.12); box-shadow: 0 0 30px rgba(198, 239, 0, 0.18); }
.host-cta__text { color: #fff; font-weight: 700; font-size: 17px; }
.host-cta__go { color: var(--volt); font-weight: 700; font-size: 15px; white-space: nowrap; }

/* About: taller hero, photo dropped lower so the car shows, lighter scrim */
.section--about { min-height: 74vh; padding-bottom: 12px; }
.section--about .section__photo img { object-position: 50% 88%; }
.section--about .section__scrim { background: rgba(11, 11, 13, 0.58); }
.section--about .display { text-shadow: 0 2px 26px rgba(0, 0, 0, 0.72); }

/* =========================================================
   Car meets callout band (home)
   ========================================================= */

.band { background: var(--black); padding: 92px 0 100px; text-align: center; }
.band__inner { max-width: 620px; margin: 0 auto; }
.band__lead {
  font-size: 18px; color: var(--text-dim);
  margin: 14px 0 30px;
}

/* =========================================================
   About page prose
   ========================================================= */

.prose-section { background: var(--black); padding: 8px 0 96px; }
.prose { max-width: 760px; }
.prose__block { margin-bottom: 40px; }
.prose__h {
  font-family: 'Anton', sans-serif; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.01em;
  font-size: 22px; margin: 0 0 12px;
}
.prose p { color: var(--text-dim); font-size: 16px; margin: 0 0 12px; }
.prose__list { color: var(--text-dim); font-size: 16px; padding-left: 20px; margin: 0; }
.prose__list li { margin-bottom: 8px; }

.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 8px 0 40px;
}
.stat {
  background: var(--card); border: 1px solid var(--hairline);
  border-radius: 14px; padding: 22px 20px;
}
.stat__num {
  display: block; font-family: 'Anton', sans-serif; font-weight: 400;
  text-transform: uppercase; font-size: 24px; color: var(--volt); margin-bottom: 8px;
}
.stat__label { font-size: 13px; color: var(--text-faint); line-height: 1.5; }

/* =========================================================
   Contact page
   ========================================================= */

/* Two columns: "Get in touch" left, form right */
.row--contact {
  grid-template-columns: 1fr minmax(0, 480px);
  align-items: start;
  padding: 24px 24px 40px;
}
.col--contact-intro { padding-top: 24px; }
.col--contact-intro .display { margin-bottom: 20px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}

.input--area { resize: vertical; min-height: 110px; line-height: 1.5; }

/* Select — dark theme, custom caret */
.input--select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23C6EF00' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.input--select:invalid { color: rgba(255, 255, 255, 0.42); }
.input--select option { color: #fff; background: #17171B; }

.contact-alt {
  margin: 18px 0 0;
  font-size: 14px;
  color: var(--text-dim);
}
.contact-alt a { color: var(--volt); text-decoration: none; font-weight: 700; }
.contact-alt a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .row--contact { grid-template-columns: 1fr; gap: 32px; }
  .col--contact-form { max-width: 480px; }
  .col--contact-intro { padding-top: 0; }
}
@media (max-width: 440px) {
  .field-row { grid-template-columns: 1fr; }
}

/* =========================================================
   QLD Car Meets — group cards
   ========================================================= */

.group-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; padding-bottom: 96px;
}
.group-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--hairline);
  border-radius: 16px; padding: 26px 24px 20px;
  text-decoration: none; color: #fff;
  min-height: 268px; overflow: hidden;
  transition: border-color var(--t), transform var(--t-fast), box-shadow var(--t-slow);
}
.group-card:hover {
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
}
.group-card--featured { border-color: rgba(198, 239, 0, 0.4); }
.group-card--featured:hover { border-color: var(--volt); }
.group-card__badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #0B0B0D; background: var(--volt);
  padding: 4px 9px; border-radius: 999px;
}
.group-card__art { height: 56px; display: flex; align-items: center; margin-bottom: 16px; }
.group-card__logo { height: 28px; width: auto; }
.group-card__mono {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--hairline);
  font-family: 'Anton', sans-serif; font-size: 22px; color: #fff;
}
.group-card__name { font-size: 22px; font-weight: 700; margin: 0 0 3px; }
.group-card__tag {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--volt); font-weight: 700; margin: 0 0 12px;
}
.group-card__blurb { font-size: 14px; color: var(--text-dim); margin: 0 0 18px; flex: 1 1 auto; }
.group-card__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  border-top: 1px solid var(--hairline); padding-top: 14px;
  font-size: 13px; color: var(--text-faint);
}
.group-card__go { color: var(--volt); font-weight: 700; white-space: nowrap; }

/* =========================================================
   Group page — meet list
   ========================================================= */

.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-dim); text-decoration: none;
  font-size: 14px; font-weight: 600; margin-bottom: 22px;
  transition: color var(--t);
}
.back-link:hover { color: #fff; }
.head-ig {
  display: inline-block; margin-top: 16px;
  color: var(--volt); text-decoration: none; font-weight: 700;
}
.head-ig:hover { text-decoration: underline; }

.meet-list {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 760px; padding-top: 8px; padding-bottom: 96px;
}
.meet-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--hairline);
  border-radius: 14px; padding: 20px 22px;
}
.meet-date {
  flex: none; width: 64px; text-align: center;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--hairline);
  border-radius: 10px; padding: 10px 0;
}
.meet-date__dow { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); }
.meet-date__day { display: block; font-family: 'Anton', sans-serif; font-size: 26px; line-height: 1.05; color: var(--volt); }
.meet-date__mon { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); }
.meet-body { flex: 1 1 auto; min-width: 0; }
.meet-title { font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.meet-meta {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  font-size: 13px; color: var(--text-dim); margin: 0 0 8px;
}
.meet-meta .dot { color: var(--text-faint); }
.meet-note { font-size: 14px; color: var(--text-faint); margin: 0; }

.empty-state {
  background: var(--card); border: 1px solid var(--hairline);
  border-radius: 14px; padding: 40px 28px; text-align: center; max-width: 760px;
}
.empty-state h3 { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; font-size: 20px; margin: 0 0 8px; }
.empty-state p { color: var(--text-dim); margin: 0; }
.empty { color: var(--text-dim); }

/* =========================================================
   Footer (injected by site.js)
   ========================================================= */

.foot { background: var(--black); border-top: 1px solid var(--hairline); padding: 48px 0 56px; }
.foot__wrap { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.foot__mark { width: 180px; height: auto; opacity: 0.9; filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5)); }
.foot__links { display: flex; flex-wrap: wrap; gap: 6px 20px; justify-content: center; }
.foot__links a { color: var(--text-dim); text-decoration: none; font-size: 14px; font-weight: 600; transition: color var(--t); }
.foot__links a:hover { color: #fff; }
.foot__meta { display: flex; flex-direction: column; gap: 6px; }
.foot__ig { color: var(--volt); text-decoration: none; font-weight: 700; font-size: 14px; }
.foot__ig:hover { text-decoration: underline; }
.foot__copy { color: var(--text-faint); font-size: 12px; }

/* =========================================================
   Responsive — new components
   ========================================================= */

@media (max-width: 900px) {
  .group-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .page-head { padding-top: 44px; }
  .page-lead { font-size: 17px; }
  .band { padding: 72px 0 80px; }
  .stat-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .group-grid { grid-template-columns: 1fr; }
  .meet-card { gap: 14px; padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 1ms !important; animation-duration: 1ms !important; }
}

/* =========================================================
   Shared photo backdrop — let every section float over it.
   (Placed last so these win over the per-component fills above.)
   ========================================================= */

.section,
.plain-hero,
.prose-section,
.band { background: transparent; }

.section__photo,
.section__scrim,
.section__fade { display: none; }

.foot { background: rgba(11, 11, 13, 0.5); }

/* Home is a pure splash — no footer, no scroll */
.page-home .foot { display: none; }

/* =========================================================
   Admin dashboard (backend login) — plain dark, no backdrop
   ========================================================= */

.page-admin { background: var(--black); }
.page-admin::before, .page-admin::after { display: none !important; }

/* Login */
.admin-login {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.admin-login__card {
  width: 100%;
  max-width: 380px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.admin-login__logo { height: 30px; width: auto; display: block; margin: 0 auto 22px; }
.admin-login__title {
  font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: 26px; text-align: center; margin: 0 0 6px;
}
.admin-login__sub { text-align: center; color: var(--text-faint); font-size: 14px; margin: 0 0 24px; }

/* Dashboard shell */
.admin { min-height: 100svh; }
.admin__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--hairline);
  position: sticky; top: 0; z-index: 10;
  background: rgba(11, 11, 13, 0.9);
  backdrop-filter: blur(10px);
}
.admin__logo { height: 24px; width: auto; display: block; }
.admin__bar-right { display: flex; gap: 10px; }
.admin__refresh, .admin__logout {
  border: 1px solid var(--hairline); background: transparent;
  color: var(--text-dim); font-family: inherit; font-weight: 600; font-size: 13px;
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  transition: color var(--t), border-color var(--t), background-color var(--t);
}
.admin__refresh:hover { color: #fff; border-color: rgba(255,255,255,0.28); }
.admin__logout:hover { color: #0B0B0D; background: var(--volt); border-color: var(--volt); }

.admin__tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 18px 24px 0;
  max-width: 1200px; margin: 0 auto;
}
.admin__tab {
  border: 1px solid var(--hairline); background: transparent;
  color: var(--text-dim); font-family: inherit; font-weight: 600; font-size: 14px;
  padding: 10px 16px; border-radius: 999px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color var(--t), border-color var(--t), background-color var(--t);
}
.admin__tab:hover { color: #fff; }
.admin__tab.is-active { color: #0B0B0D; background: var(--volt); border-color: var(--volt); }
.admin__count {
  font-size: 12px; font-weight: 700;
  background: rgba(255,255,255,0.12); color: inherit;
  padding: 1px 8px; border-radius: 999px; min-width: 18px; text-align: center;
}
.admin__tab.is-active .admin__count { background: rgba(0,0,0,0.18); }

.admin__panel { max-width: 1200px; margin: 0 auto; padding: 16px 24px 64px; }
.admin__status { color: var(--text-faint); font-size: 13px; margin: 6px 2px 14px; }
.admin__empty { color: var(--text-dim); padding: 40px 0; text-align: center; }

.admin__tablewrap { overflow-x: auto; border: 1px solid var(--hairline); border-radius: 12px; }
.admin__table { width: 100%; border-collapse: collapse; font-size: 13.5px; white-space: nowrap; }
.admin__table th, .admin__table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--hairline); }
.admin__table th {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-faint); font-weight: 700; background: rgba(255,255,255,0.03);
  position: sticky; top: 0;
}
.admin__table tbody tr:hover { background: rgba(255,255,255,0.03); }
.admin__table tbody tr:last-child td { border-bottom: 0; }
.admin__cell--long { white-space: normal; min-width: 240px; max-width: 360px; color: var(--text-dim); }

/* Home: three-video backdrop instead of the shared photo */
.video-backdrop { display: none; }
.page-home::before { background: none; }              /* hide the photo layer */
.page-home::after { background: rgba(11, 11, 13, 0.5); } /* lighter so the video shows */
.page-home .video-backdrop {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: -2;
}
.video-backdrop__cell { flex: 1 1 0; min-width: 0; overflow: hidden; }
.video-backdrop__cell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
