/* =========================================================
   ALLSMILEZCLUB — Styles
   Brand: #8000FF (violet) · #FF7967 (coral)
   Type: Brandon Grotesque (with system fallback)
   ========================================================= */

:root {
  --violet: #8000FF;
  --coral:  #FF7967;
  --ink:    #0A0A0A;
  --paper:  #FFFFFF;

  --font-display: "Brandon Grotesque", "HCo Brandon Grotesque",
                  "Futura PT", "Avenir Next", "Helvetica Neue",
                  Arial, sans-serif;
}

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

html, body {
  height: 100%;
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Page background ---------- */
.page--violet {
  background: var(--violet);
  color: var(--coral);
  min-height: 100vh;
}

/* ---------- Centered layout ---------- */
.center {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}

/* ---------- Logo / Title ---------- */
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 56px;
}

.logo-img {
  display: block;
  width: clamp(260px, 40vw, 520px);
  height: auto;
  margin-bottom: 56px;
}

/* ---------- Primary button ---------- */
.btn {
  display: inline-block;
  padding: 22px 56px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(16px, 1.6vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--coral);
  background: transparent;
  border: 2px solid var(--coral);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
  background: var(--coral);
  color: var(--violet);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--coral);
}

/* =========================================================
   Question page
   ========================================================= */

.q-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral);
  opacity: 0.7;
  margin-bottom: 28px;
}

.q-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 5.6vw, 76px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 56px;
  max-width: 12ch;
}

.q-lede {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--coral);
  max-width: 480px;
  margin-bottom: 40px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 560px;
}

.option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--coral);
  background: transparent;
  border: 2px solid var(--coral);
  text-align: left;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.option .label {
  font-weight: 900;
}

.option .sub {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: none;
  opacity: 0.75;
}

.option:hover {
  background: var(--coral);
  color: var(--violet);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--coral);
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
  .btn { padding: 18px 36px; }
  .option { padding: 18px 22px; gap: 16px; }
}
