/* ==========================================================================
   Bia & Brains — Trivia Night
   Poster aesthetic: square corners, hard offset shadows, flat diagonal split.
   Mobile-first; laptop styles at ≥900px (design target 1440×900 / 390×844).
   ========================================================================== */

:root {
  --red: #C0392B;      /* Poster Red */
  --cream: #F0E3C0;    /* Cream */
  --gold: #E8B830;     /* Lucky Gold */
  --brick: #8E2318;    /* Deep Brick */
  --err: #D92121;      /* Error Red */
  --paper: #F5EDD8;    /* input fill */
  --rule: rgba(192, 57, 43, .3);
  --display: 'Paytone One', sans-serif;
  --body: 'Oswald', sans-serif;
  --mono: 'Space Mono', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--brick);
  font-family: var(--body);
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: underline; }
a:hover { opacity: .8; }
b, strong { font-weight: 600; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin: 0; }
[data-brand] { text-transform: uppercase; }

.main { flex: 1; display: flex; flex-direction: column; }

/* --------------------------------------------------------------------------
   Awning stripes
   -------------------------------------------------------------------------- */
.stripe {
  flex: none;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 28px, var(--red) 28px 56px);
}
body > .stripe:first-child {
  position: sticky;
  top: 0;
  z-index: 21;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 10px; /* below the sticky top stripe */
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--red);
  color: var(--cream);
}
.brand {
  font-family: var(--display);
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.header-right { display: flex; align-items: center; gap: 14px; }
.nav-links { display: none; }

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  margin: -10px -12px -10px 0;
  padding: 2px 6px;
  border: 0;
  background: none;
  color: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.mobile-menu {
  position: absolute;
  top: 100%;
  right: 14px;
  display: none;
  flex-direction: column;
  gap: 15px;
  padding: 20px 24px;
  background: var(--red);
  color: var(--cream);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .3);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 2px;
}
.mobile-menu[data-open] { display: flex; }
.mobile-menu a { text-decoration: none; }

/* EN/VI pill toggle */
.lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: none;
  width: 64px;
  height: 26px;
  padding: 0;
  border: 2px solid var(--cream);
  border-radius: 999px;
  background: none;
  color: var(--cream);
  cursor: pointer;
}
.lang .lang__knob {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: 30px;
  border-radius: 999px;
  background: var(--gold);
  transition: left .2s;
}
.lang[data-lang="vi"] .lang__knob { left: calc(100% - 33px); }
.lang span {
  position: relative;
  z-index: 1;
  width: 50%;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--cream);
}
.lang[data-lang="en"] .lang__en,
.lang[data-lang="vi"] .lang__vi { color: var(--brick); }

/* Mobile bottom nav */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  background: var(--red);
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}
.bottom-nav a {
  flex: 1;
  min-height: 44px;
  padding: 13px 0 calc(15px + env(safe-area-inset-bottom));
  text-decoration: none;
}
.bottom-nav a.is-reserve {
  background: var(--gold);
  color: var(--brick);
  font-family: var(--display);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  border: 0;
  background: var(--gold);
  color: var(--brick);
  font-family: var(--display);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
}
.btn:disabled { opacity: .6; cursor: wait; }

/* --------------------------------------------------------------------------
   Home hero
   -------------------------------------------------------------------------- */
.hero {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--red) 0 52%, var(--cream) 52% 100%);
}
.hero__inner {
  position: relative;
  padding: 44px 26px 30px;
}
.hero__red { color: var(--cream); }
.hero__brand {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero__eyebrow {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
}
.hero__hosted { margin-top: 6px; font-size: 13px; font-style: italic; }
.hero__date { margin-top: 16px; font-size: 19px; font-weight: 600; letter-spacing: 2px; }
.hero__date--laptop { display: none; }
.hero__venue { margin-top: 5px; font-size: 15px; }
.hero__venue a { color: var(--cream); }
.hero__cta {
  margin-top: 22px;
  padding: 13px 22px;
  font-size: 17px;
  letter-spacing: 1px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .25);
}
.hero__cream {
  margin: 110px 0 0 150px;
  color: var(--brick);
  font-weight: 600;
}
.hero__mark {
  font-family: var(--display);
  font-size: 64px;
  line-height: 1;
  transform: rotate(-6deg);
}
.hero__list { margin-top: 10px; font-size: 15px; line-height: 1.6; letter-spacing: 1px; }
.hero__rules { display: inline-block; margin-top: 8px; font-size: 13px; color: var(--brick); }

/* --------------------------------------------------------------------------
   Inner pages
   -------------------------------------------------------------------------- */
.page {
  width: 100%;
  padding: 30px 24px;
}
.title {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--red);
}
.title--center { text-align: center; }
.subtitle {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}
.lead { margin-top: 12px; font-size: 14px; line-height: 1.6; }
.lead + .lead { margin-top: 10px; }

/* Bordered cards */
.card {
  margin-top: 14px;
  padding: 16px 18px;
  border: 3px solid var(--red);
}
.card--red { background: var(--red); color: var(--cream); }
.card__h { font-family: var(--display); font-size: 15px; color: var(--red); }
.card--red .card__h { color: var(--gold); }
.card__body { margin-top: 8px; font-size: 14px; line-height: 1.8; }
.card__list { margin: 0; padding-left: 20px; }
.card__list li { padding-left: 2px; }

/* Header-bar boxes (deposit perks, refund policy, franchise) */
.box { margin-top: 14px; border: 3px solid var(--red); font-size: 13px; }
.box__h {
  padding: 7px 12px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--display);
  font-size: 13px;
}
.box__h--center { text-align: center; }
.box__h--gold { background: var(--gold); color: var(--brick); }
.box__row { padding: 7px 12px; border-bottom: 2px solid var(--rule); }
.box__row:last-child { border-bottom: 0; }
.box__row--center { text-align: center; }
.box__row b { color: var(--red); }
.box__body { padding: 10px 12px; font-size: 12px; line-height: 1.75; }
.box__body b { color: var(--red); }
.perk__label { display: inline; }

/* Refund policy acknowledgement rows */
.ack {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-bottom: 2px solid var(--rule);
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
}
.ack:last-child { border-bottom: 0; }
.ack input { position: absolute; opacity: 0; width: 0; height: 0; }
.ack b { color: var(--red); }
.ack__box {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border: 2px solid var(--red);
  background: var(--paper);
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.ack:has(input:checked) .ack__box { background: var(--red); }
.ack:has(input:checked) .ack__box::after { content: '✓'; }
.ack--optin { margin: 16px 0 24px; padding: 0; border-bottom: 0; font-weight: 600; }
.box.is-error .ack:not(:has(input:checked)) { background: rgba(217, 33, 33, .12); }
.box.is-error .ack:not(:has(input:checked)) .ack__box { border-color: var(--err); }

/* Rounds strip (rules) */
.rounds {
  margin-top: 14px;
  border: 3px solid var(--red);
  font-size: 13px;
  font-weight: 600;
}
.rounds__cell { padding: 9px 14px; border-bottom: 2px solid rgba(192, 57, 43, .4); }
.rounds__cell:last-child { border-bottom: 0; }
.rounds__n { color: var(--red); font-weight: 600; }
.rounds__cell--gold { background: var(--gold); }
.rounds__title { margin-top: 22px; }
.rounds__soon { font-weight: 400; }
.rounds__cell--gold .rounds__n { color: var(--brick); }

/* Leaderboard */
.board-wrap { position: relative; overflow: hidden; }
.board-wrap--preview .board tbody { opacity: .45; }
.board-banner { top: 45%; }
.board { width: 100%; margin-top: 14px; border-collapse: collapse; }
.board th, .board td { padding: 10px 5px; text-align: left; }
.board th:first-child, .board td:first-child { padding-left: 8px; }
.board th:last-child, .board td:last-child { padding-right: 8px; }
.board thead th {
  background: var(--red);
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.board tbody td {
  font-size: 15px;
  border-bottom: 2px solid rgba(142, 35, 24, .2);
  vertical-align: baseline;
}
.board .col-rank { width: 36px; }
.board .col-played { width: 62px; text-align: right; }
.board .col-pts { width: 54px; text-align: right; }
.board td.col-rank, .board td.col-pts { font-family: var(--display); color: var(--red); }
.board td.col-team { font-weight: 600; }
.board td.col-played { opacity: .7; }
.board .lbl--laptop { display: none; }

/* Champs */
.page--champs { display: flex; flex-direction: column; }
.page--champs > div { display: contents; }
.page--champs .title { order: 0; }
.page--champs .photo { order: 1; }
.page--champs .champ-date, .page--champs .champ-quote, .page--champs .champ-note { order: 2; }
.photo {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  margin-top: 16px;
  border: 3px solid var(--red);
  background: repeating-linear-gradient(45deg, rgba(192, 57, 43, .08) 0 12px, transparent 12px 24px);
}
.photo__caption { position: absolute; left: 0; right: 0; top: 16%; font-size: 11px; letter-spacing: 2px; text-align: center; opacity: .75; }
.photo__banner {
  position: absolute;
  left: -10%;
  right: -10%;
  top: 42%;
  padding: 10px 0;
  transform: rotate(-8deg);
  background: var(--gold);
  color: var(--brick);
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}
.champ-date { margin-top: 14px; font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--red); }
.champ-quote { margin-top: 10px; font-size: 15px; line-height: 1.65; font-style: italic; }
.champ-note { margin-top: 18px; font-size: 13px; line-height: 1.6; opacity: .8; }

/* Host */
.arrows { margin-top: 12px; font-size: 14px; font-weight: 600; line-height: 1.9; }
.contact-line { margin-top: 14px; font-size: 12px; opacity: .8; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-panel {
  margin-top: 14px;
  padding: 18px;
  border: 3px solid var(--red);
  background: repeating-linear-gradient(45deg, rgba(192, 57, 43, .06) 0 10px, transparent 10px 20px);
}
.field { margin-top: 16px; }
.field:first-child { margin-top: 0; }
.field label { display: block; font-size: 13px; font-weight: 600; }
.field input {
  display: block;
  width: 100%;
  height: 40px;
  padding: 4px 0;
  border: 0;
  border-bottom: 2px solid var(--red);
  border-radius: 0;
  background: transparent;
  color: var(--brick);
  font-family: var(--body);
  font-size: 16px; /* ≥16px stops iOS auto-zoom on focus */
  outline: none;
}
.field input:focus { border-bottom-color: var(--brick); background: rgba(232, 184, 48, .12); }
.field__label { display: block; font-size: 13px; font-weight: 600; }
.tri {
  position: relative;
  display: flex;
  height: 40px;
  margin-top: 8px;
  border: 2px solid var(--red);
  border-radius: 999px;
  background: var(--paper);
}
.tri__knob {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(33.333% - 2px);
  border-radius: 999px;
  background: var(--gold);
  transition: left .2s;
}
.tri[data-pref="Phone"] .tri__knob { left: calc(33.333% + 1px); }
.tri[data-pref="Email"] .tri__knob { left: calc(66.666% - 1px); }
.tri--2 { width: 190px; height: 32px; margin-top: 0; }
.tri--2 .tri__knob { width: calc(50% - 3px); }
.tri--2[data-pref="WhatsApp"] .tri__knob { left: calc(50% + 0px); }
.tri--2 .tri__opt, .field label.tri--2 .tri__opt { font-size: 12px; }
.tri__opt, .field label.tri__opt {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--red);
  cursor: pointer;
}
.tri__opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.tri__opt:has(input:checked) { color: var(--brick); }
.field__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.radios {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 0;
  font-size: 13px;
  font-weight: 600;
}
.radio, .field label.radio { position: relative; display: inline-flex; align-items: center; gap: 6px; min-height: 24px; cursor: pointer; }
.radio input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio__dot {
  flex: none;
  width: 14px;
  height: 14px;
  border: 3px solid var(--red);
  border-radius: 50%;
  background: transparent;
}
.radio input:checked + .radio__dot { background: var(--red); }
.field--number { margin-top: 16px; }
.select {
  display: block;
  width: 100%;
  margin-top: 4px;
  padding: 7px 10px;
  border: 2px solid var(--red);
  border-radius: 0;
  background: var(--paper);
  color: var(--brick);
  font-family: var(--mono);
  font-size: 16px; /* ≥16px stops iOS auto-zoom on focus */
  height: 44px;
}
.deposit {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-top: 20px;
  padding: 9px 12px;
  background: var(--red);
  color: var(--cream);
}
.deposit__label { font-size: 11px; font-weight: 600; }
.deposit__total { font-family: var(--display); font-size: 17px; white-space: nowrap; }
.perks { margin-top: 10px; font-size: 15px; font-style: italic; text-align: center; }
.btn--submit {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
  padding: 11px 20px;
  font-size: 15px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .2);
}
.form-msg {
  display: none;
  width: fit-content;
  margin: 14px auto 0;
  padding: 11px 20px;
  background: var(--err);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .2);
}
.form-msg[data-show] { display: block; }
.m-br { display: inline; }
.l-only { display: none; }
.m-only { display: inline; }
.form-msg--ack { margin-top: 12px; }
.form-msg a { color: #fff; }
.form-done { display: none; }
.form-done[data-show] { display: block; }
  .form-done__h:empty { display: none; }
.form-done__h { font-family: var(--display); font-size: 20px; color: var(--red); text-transform: uppercase; }
.form-done__body { margin-top: 10px; font-size: 14px; line-height: 1.7; }
.form-done__body b { color: var(--red); }
.is-done .col-440 .lead, .is-done .col-440 .box { display: none; }
.is-done .page .title { text-align: center; }
.is-done .form-panel { margin-top: 16px; }
.done__grid { display: flex; flex-direction: column; gap: 18px; margin-top: 14px; }
.done__intro { font-size: 15px; line-height: 1.6; text-align: center; }
.done__deposit { margin-top: 12px; color: var(--gold); }
.done__box { margin-top: 0; }
.done__box { margin-top: 12px; }
.done__box .box__row b { color: var(--red); }
.done__fine { margin-top: 10px; font-size: 13px; line-height: 1.55; opacity: .85; }
.done__fine b { color: var(--red); }
.done__fine-h { margin-top: 14px; font-size: 16px; font-weight: 600; opacity: 1; }
.done__fine-h + .done__fine { margin-top: 4px; }
.done__fine-row { display: flex; flex-direction: column; padding-left: 50px; }
.done__confirm { margin-top: 16px; font-size: 16px; font-weight: 600; line-height: 1.5; text-align: center; }
.done__pay { text-align: center; }
.done__scan-h { margin-top: 12px; font-family: var(--display); font-size: 17px; color: var(--red); text-transform: uppercase; letter-spacing: 1px; }
.done__qr { display: block; width: 100%; max-width: 260px; height: auto; margin: 0 auto; border: 3px solid var(--red); background: #fff; }
.done__scan-note { margin-top: 10px; font-size: 14px; font-weight: 600; }
.done__scan-note b { color: var(--red); }
.done__scan-sub { margin-top: 4px; font-family: var(--mono); font-size: 11px; line-height: 1.5; opacity: .75; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* --------------------------------------------------------------------------
   Laptop ≥ 900px
   -------------------------------------------------------------------------- */
@media (min-width: 900px) {
  .site-header { position: relative; top: auto; }
  body > .stripe:first-child { position: static; }
  .stripe {
    height: 14px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 40px, var(--red) 40px 80px);
  }
  .site-header { padding: 18px 60px; }
  .brand { font-size: 26px; }
  .header-right { gap: 28px; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
  }
  .nav-links a { text-decoration: none; }
  .nav-login {
    padding: 9px 20px;
    font-size: 18px;
    letter-spacing: 0;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, .25);
  }
  .menu-btn, .mobile-menu, .bottom-nav { display: none !important; }

  .lang { width: 86px; height: 32px; }
  .lang .lang__knob { width: 40px; }
  .lang[data-lang="vi"] .lang__knob { left: calc(100% - 43px); }
  .lang span { font-size: 14px; }

  /* Hero */
  .hero {
    background: linear-gradient(115deg, var(--red) 0 62%, var(--cream) 62% 100%);
    min-height: 824px;
  }
  .hero__inner { max-width: 1440px; min-height: 824px; margin: 0 auto; padding: 0; }
  .hero__red { position: absolute; top: 70px; left: 100px; }
  .hero__brand { font-size: clamp(64px, 7.2vw, 104px); line-height: .95; }
  .hero__eyebrow { margin-top: 14px; font-size: clamp(18px, 1.8vw, 26px); letter-spacing: 6px; }
  .hero__hosted { margin-top: 10px; font-size: 19px; }
  .hero__date { margin-top: 18px; font-size: clamp(20px, 1.9vw, 27px); letter-spacing: 3px; }
  .hero__date--mobile { display: none; }
  .hero__date--laptop { display: block; }
  .hero__venue { margin-top: 6px; font-size: 20px; }
  .hero__cta {
    margin-top: 28px;
    padding: 16px 36px;
    font-size: 24px;
    letter-spacing: 2px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, .25);
  }
  .hero__cream {
    position: absolute;
    top: 269px;
    left: 72.8%;
    width: 27.2%;
    min-width: 300px;
    margin: 0;
  }
  .hero__mark { font-size: clamp(130px, 13.9vw, 200px); }
  .hero__list { margin-top: 16px; font-size: clamp(17px, 1.6vw, 23px); line-height: 1.5; }
  .hero__rules { margin-top: 14px; font-size: 16px; }

  /* Inner pages */
  .page { max-width: 1440px; margin: 0 auto; padding: 40px 90px; }
  .page--wide { padding: 40px 90px; }
  .page--split { display: flex; gap: 60px; padding: 40px 90px; }
  .page--host { display: grid; grid-template-columns: 480px 1fr; grid-template-areas: "intro form" "more form"; column-gap: 70px; padding: 56px 90px; align-items: start; }
  .page--champs { flex-direction: row; gap: 60px; padding: 52px 90px; }
  .page--champs > div { display: block; }
  .page--champs .col-560 { display: flex; }
  .page--about { display: flex; gap: 70px; padding: 56px 90px; }
  .page--board { padding: 40px 0; }
  .title { font-size: 46px; }
  .title--52 { font-size: 52px; line-height: 1; }
  .title--58 { font-size: 58px; line-height: 1; }
  .subtitle { margin-top: 14px; font-size: 17px; letter-spacing: 2px; }
  .lead { margin-top: 16px; font-size: 17px; line-height: 1.6; }
  .lead--lg { margin-top: 20px; font-size: 20px; }
  .lead--lg + .lead--lg { margin-top: 16px; }
  .lead--about { margin-top: 20px; font-size: 19px; line-height: 1.7; }
  .lead--about + .lead--about { margin-top: 16px; }

  .col-440 { width: 440px; flex: none; }
  .col-480 { width: 480px; flex: none; }
  .col-520 { width: 520px; flex: none; }
  .col-560 { width: 560px; flex: none; display: flex; flex-direction: column; }
  .col-fill { flex: 1; min-width: 0; }
  .host__intro { grid-area: intro; }
  .host__more { grid-area: more; }
  .host__form { grid-area: form; }

  .cards-3 { display: flex; gap: 30px; margin-top: 22px; }
  .cards-3 .card { flex: 1; margin-top: 0; }
  .card { margin-top: 22px; padding: 22px 26px; }
  .card--lg { padding: 20px 26px; }
  .card__h { font-size: 20px; }
  .card--lg .card__h { font-size: 18px; }
  .card__body { margin-top: 10px; font-size: 17px; line-height: 1.85; }
  .card--lg .card__body { margin-top: 8px; line-height: 1.8; }
  .about-cards { display: flex; flex-direction: column; gap: 22px; }
  .about-cards .card { margin-top: 0; }

  .box { margin-top: 18px; font-size: 15px; }
  .box + .box { margin-top: 14px; }
  .box--franchise { margin-top: 22px; }
  .box__h { padding: 8px 16px; font-size: 15px; }
  .box--franchise .box__h { padding: 9px 16px; font-size: 16px; }
  .box__row { padding: 8px 16px; }
  .box__row--perk { display: flex; }
  .box__row--perk b { width: 150px; flex: none; }
  .box__row--perk .perk__dash { display: none; }
  .box__body { padding: 12px 16px; font-size: 14px; }
  .ack { gap: 10px; padding: 8px 16px; font-size: 15px; }
  .ack--optin { margin: 16px 0 0; padding: 0; font-size: 16px; }

  .rounds { display: flex; margin-top: 26px; text-align: center; font-size: 15px; }
  .rounds__cell { flex: 1; padding: 16px 10px; border-bottom: 0; border-right: 3px solid var(--red); }
  .rounds__cell:last-child { border-right: 0; }
  .rounds__title { margin-top: 30px; font-size: 22px; }
  .rounds { margin-top: 12px; }
  .rounds__soon { display: block; margin-top: 8px; }
  .rounds__n { display: block; font-family: var(--display); font-size: 17px; font-weight: 400; text-transform: uppercase; }

  .board-wrap { max-width: 760px; margin: 20px auto 0; }
  .board { margin: 0; }
  .board th, .board td { padding: 11px 8px; }
  .board th:first-child, .board td:first-child { padding-left: 16px; }
  .board th:last-child, .board td:last-child { padding-right: 16px; }
  .board thead th { font-size: 17px; letter-spacing: 2px; padding-top: 12px; padding-bottom: 12px; }
  .board tbody td { font-size: 19px; border-bottom-color: rgba(142, 35, 24, .25); }
  .board .col-rank { width: 70px; }
  .board .col-played, .board .col-pts { width: 120px; }
  .board .lbl--laptop { display: inline; }
  .board .lbl--mobile { display: none; }

  .photo { flex: 1; min-height: 480px; margin-top: 0; background-size: auto; background: repeating-linear-gradient(45deg, rgba(192, 57, 43, .08) 0 16px, transparent 16px 32px); }
  .photo__caption { font-size: 14px; }
  .photo__banner { top: 44%; padding: 14px 0; font-size: 38px; letter-spacing: 2px; box-shadow: 0 8px 24px rgba(0, 0, 0, .25); }
  .champ-date { font-size: 15px; letter-spacing: 2px; }
  .champ-quote { margin-top: 14px; font-size: 20px; }
  .champ-note { margin-top: 26px; font-size: 16px; }

  .arrows { margin-top: 20px; font-size: 19px; letter-spacing: 1px; }
  .contact-line { margin-top: 22px; font-size: 16px; }

  .form-panel { margin-top: 0; padding: 26px 40px; background: repeating-linear-gradient(45deg, rgba(192, 57, 43, .06) 0 14px, transparent 14px 28px); }
  .form-panel--host { padding: 34px 44px; }
  .field { margin-top: 20px; }
  .field label, .field__label { font-size: 16px; letter-spacing: 1px; }
  .field--contact { display: flex; align-items: center; gap: 20px; }
  .tri { flex: 1; height: 44px; max-width: 420px; margin-top: 0; }
  .tri--2 { flex: none; width: 220px; height: 36px; }
  .tri--2 .tri__opt { font-size: 13px; }
  .tri__opt, .field label.tri__opt { font-size: 15px; }
  .form-panel--host .field { margin-top: 24px; }
  .form-panel--host .field label, .form-panel--host .field__label { font-size: 18px; }
  .field input { height: 44px; font-size: 17px; }
  .radios { gap: 26px; font-size: 16px; }
  .radio { gap: 8px; }
  .form-panel--host .radios { font-size: 18px; }
  .field--number { margin-top: 16px; }
  .form-panel--host .field--number { margin-top: 16px; }
  .size-row { display: flex; align-items: flex-end; gap: 18px; margin-top: 20px; }
  .size-row .field { flex: none; margin-top: 0; }
  .select { width: 180px; height: 44px; margin-top: 6px; padding: 0 12px; font-size: 16px; }
  .size-row .deposit { flex: 1; height: 44px; margin-top: 0; padding: 0 18px; align-items: center; }
  .deposit__label { font-size: 15px; }
  .deposit__total { font-size: 24px; }
  .perks { margin-top: 8px; font-size: 14px; text-align: left; }
  .btn--submit { display: inline-block; width: auto; margin: 18px 0 0; padding: 13px 28px; font-size: 19px; box-shadow: 6px 6px 0 rgba(0, 0, 0, .2); }
  .form-panel--host .btn--submit { margin: 30px 0 0; padding: 14px 30px; font-size: 20px; }
  .form-msg { width: auto; margin: 14px 0 0; padding: 12px 18px; font-size: 15px; text-align: left; box-shadow: none; }
  .m-br { display: none; }
  .l-only { display: inline; }
  .m-only { display: none; }
  .form-msg--ack { display: none !important; }
  .form-done__h { font-size: 26px; }
  .form-done__body { font-size: 17px; }
  .is-done .page--split { display: block; max-width: 1140px; }
  .is-done .col-440 { width: auto; }
  .is-done .form-panel { margin-top: 22px; padding: 30px 40px; }
  .is-done .done__pay { width: 300px; }
  .is-done .done__qr { max-width: 300px; }
  .done__grid { flex-direction: row; gap: 36px; align-items: flex-start; margin-top: 18px; }
  .done__text { flex: 1; min-width: 0; }
  .done__intro { font-size: 20px; }
  .done__deposit { margin-top: 14px; }
  .done__box { margin-top: 0; }
  .done__fine { font-size: 14px; }
  .done__fine-h { font-size: 14px; }
  .done__confirm { margin-top: 22px; font-size: 20px; }
  .done__fine-row { flex-direction: row; gap: 40px; align-items: flex-start; padding-left: 0; }
  .done__fine-row > div { flex: 0 1 auto; min-width: 0; }
  .done__pay { flex: none; width: 280px; }
  .done__scan-h { font-size: 19px; }
  .done__qr { max-width: 280px; }
  .done__scan-sub { font-size: 12px; }
}
