/* ==========================================================================
   BEVST™ ELITE — page-specific styles
   Loaded after style.css; reuses design tokens (--stone-black, --ink, etc.)
   and shared components (.btn, .access-frame, .access-form__*, .access-success__*)
   defined there. Only what's unique to this page lives here.
   ========================================================================== */

.elite-hero{
  min-height: 62vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 160px clamp(18px, 5vw, 64px) 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(201,169,120,0.06) 0%, rgba(201,169,120,0) 60%),
    var(--stone-black);
}
.elite-hero__kicker{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em;
  color: var(--ink-faint); text-transform: uppercase; margin-bottom: 20px;
}
.elite-hero__headline{
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 7vw, 68px); line-height: 1.05; letter-spacing: -0.02em;
  max-width: 16ch; margin: 0 auto 22px;
}
.elite-hero__sub{
  color: var(--ink-dim); font-size: 15px; line-height: 1.6;
  max-width: 46ch; margin: 0 auto 34px;
}

.elite-perks{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border);
  max-width: 1120px; margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 64px);
}
@media (max-width: 860px){ .elite-perks{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .elite-perks{ grid-template-columns: 1fr; } }
.elite-perk{
  background: var(--stone-black); padding: 36px 28px; text-align: left;
}
.elite-perk__num{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--ink-faint); margin-bottom: 14px;
}
.elite-perk__title{
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  margin-bottom: 10px; color: var(--ink);
}
.elite-perk__desc{ font-size: 13px; line-height: 1.6; color: var(--ink-dim); }

.elite-apply{
  padding: 100px clamp(18px, 5vw, 64px) 140px;
  display: flex; justify-content: center;
  background: var(--stone-black);
}
.elite-apply-frame{
  width: 100%; max-width: 640px;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--border);
  position: relative;
}
.elite-apply-frame::before, .elite-apply-frame::after{
  content: ""; position: absolute; width: 14px; height: 14px;
  border: 1px solid var(--warm-light-dim); opacity: 0.6;
}
.elite-apply-frame::before{ top: -1px; left: -1px; border-right: none; border-bottom: none; }
.elite-apply-frame::after{ bottom: -1px; right: -1px; border-left: none; border-top: none; }

.elite-form__grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px;
}
@media (max-width: 560px){ .elite-form__grid{ grid-template-columns: 1fr; } }
.elite-form__field{ margin-bottom: 26px; }
.elite-form__field--full{ grid-column: 1 / -1; }
.elite-form__label{
  display: block; font-family: var(--font-mono); text-align: left;
  font-size: 10px; letter-spacing: 0.18em; color: var(--ink-faint);
  margin-bottom: 12px; text-transform: uppercase;
}
.elite-form__input, .elite-form__textarea{
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--border); border-radius: 0;
  padding: 12px 0; font-size: 16px; color: var(--ink);
  font-family: var(--font-body); font-weight: 500;
  transition: border-color .3s ease;
}
.elite-form__input::placeholder, .elite-form__textarea::placeholder{ color: var(--ink-faint); font-weight: 400; }
.elite-form__input:focus, .elite-form__textarea:focus{ outline: none; border-color: var(--warm-light-dim); }
.elite-form__textarea{ resize: vertical; min-height: 90px; font-family: var(--font-body); line-height: 1.5; }

.elite-vehicle{ display: flex; gap: 8px; flex-wrap: wrap; }
.elite-vehicle__option{ position: relative; }
.elite-vehicle__option input{ position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.elite-vehicle__option span{
  display: flex; align-items: center; justify-content: center;
  padding: 10px 18px; border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--ink-dim); text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.elite-vehicle__option input:checked + span{ border-color: var(--ink); color: var(--ink); background: rgba(234,231,226,0.05); }
.elite-vehicle__option input:focus-visible + span{ outline: 2px solid var(--warm-light); outline-offset: 2px; }

.elite-legal{
  margin-top: 4px; margin-bottom: 26px;
  border: 1px solid var(--border);
  padding: 18px 20px;
  max-height: 160px; overflow-y: auto;
  font-size: 12px; line-height: 1.7; color: var(--ink-dim);
}
.elite-legal p{ margin: 0 0 12px; }
.elite-legal p:last-child{ margin-bottom: 0; }
.elite-legal strong{ color: var(--ink); }

.elite-agree{
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 30px; text-align: left;
}
.elite-agree input{ margin-top: 3px; width: 16px; height: 16px; accent-color: var(--warm-light); flex-shrink: 0; }
.elite-agree label{ font-size: 13px; color: var(--ink-dim); line-height: 1.5; }

.elite-form__error{ margin-top: -12px; margin-bottom: 20px; font-size: 12px; color: var(--red-accent); text-align: left; }
.elite-form__help{ margin-top: 18px; font-size: 12px; color: var(--ink-faint); }
