:root {
  --charcoal: #1e1e1e;
  --gold: #c9962e;
  --cream: #f7f1e3;
  --cream-deep: #efe6d2;
  --ink-soft: #4a453b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: "Lora", Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

/* ---------- Hero ---------- */

.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 72px;
  text-align: center;
}

.hero-logo {
  width: min(320px, 70vw);
  height: auto;
  margin-bottom: 28px;
}

.hero-kicker {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-sub {
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 40px;
}

/* ---------- Waitlist form ---------- */

.waitlist {
  border-top: 2px solid var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
  padding: 28px 12px;
  max-width: 520px;
  margin: 0 auto;
}

.waitlist-label {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.waitlist-form input[type="email"] {
  flex: 1 1 240px;
  padding: 13px 16px;
  font-family: "Lora", serif;
  font-size: 16px;
  color: var(--charcoal);
  background: #fffdf8;
  border: 1.5px solid var(--charcoal);
  border-radius: 3px;
  outline: none;
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--gold);
}

.waitlist-form button {
  padding: 13px 26px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  background: var(--charcoal);
  border: 1.5px solid var(--charcoal);
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.waitlist-form button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.waitlist-fineprint {
  margin-top: 14px;
  font-size: 13.5px;
  font-style: italic;
  color: var(--ink-soft);
}

.hidden-field {
  display: none;
}

/* ---------- Sections ---------- */

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 56px 0;
}

.section-num {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(24px, 4.5vw, 32px);
  font-weight: 600;
  margin-bottom: 18px;
}

.section p + p {
  margin-top: 14px;
}

.section > p {
  color: var(--ink-soft);
  max-width: 600px;
}

.rule {
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}

/* ---------- Promises ---------- */

.promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.promise h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.promise p {
  font-size: 15px;
  color: var(--ink-soft);
}

/* ---------- Lineup ---------- */

.lineup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.lineup-item {
  background: var(--cream-deep);
  border: 1px solid rgba(30, 30, 30, 0.14);
  border-radius: 4px;
  padding: 22px 20px;
}

.lineup-format {
  display: block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.lineup-item p {
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ---------- CTA + footer ---------- */

.section-cta {
  text-align: center;
  padding-bottom: 72px;
}

.section-cta p {
  margin: 0 auto 28px;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  background: var(--charcoal);
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.cta-button:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.footer {
  border-top: 2px solid var(--charcoal);
  text-align: center;
  padding: 40px 24px 48px;
}

.footer-brand {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: 15px;
}

.footer-line {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.footer-legal {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 18px;
  opacity: 0.8;
}

/* ---------- Mobile ---------- */

@media (max-width: 640px) {
  .promises,
  .lineup {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 44px 0;
  }
}
