@import url('https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --ink: #171717;
  --paper: #f5eee3;
  --accent: #ff4d2e;
  --yellow: #ffd447;
  --muted: #6b665f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}
.nav {
  height: 76px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245,238,227,.95);
  backdrop-filter: blur(8px);
}
.logo {
  font-family: Anton, sans-serif;
  font-size: 30px;
  letter-spacing: -1px;
  color: var(--ink);
  text-decoration: none;
}
.logo span { color: var(--accent); }
nav { display: flex; gap: 28px; }
nav a { color: var(--ink); text-decoration: none; font-weight: 700; font-size: 14px; }
nav a:hover { color: var(--accent); }

.hero {
  min-height: 78vh;
  padding: 10vh 8vw 12vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 85% 25%, var(--yellow) 0 10%, transparent 10.2%),
    linear-gradient(135deg, var(--paper) 0 70%, var(--accent) 70%);
}
.badge, .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.badge {
  width: fit-content;
  border: 2px solid var(--ink);
  padding: 8px 12px;
  margin-bottom: 24px;
}
h1, h2, h3 { margin: 0; font-family: Anton, sans-serif; text-transform: uppercase; }
h1 { font-size: clamp(70px, 14vw, 180px); line-height: .82; letter-spacing: -3px; }
h1 span { color: var(--accent); }
.hero p { max-width: 600px; font-size: 19px; line-height: 1.55; margin: 30px 0; }
.buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  border: 3px solid var(--ink);
  padding: 14px 20px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
}
.primary { background: var(--ink); color: var(--paper); }
.primary:hover { background: var(--accent); border-color: var(--accent); }
.secondary { color: var(--ink); }
.secondary:hover { background: var(--yellow); }

.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--yellow);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 13px 0;
  white-space: nowrap;
  font-family: Anton, sans-serif;
  font-size: 24px;
  letter-spacing: .05em;
}
.ticker div { animation: scroll 18s linear infinite; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-35%); } }

.section { padding: 110px 8vw; }
.about, .contact { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; }
.about h2, .contact h2 { font-size: clamp(50px, 7vw, 100px); line-height: .9; margin-top: 15px; }
.copy { font-size: 20px; line-height: 1.7; max-width: 650px; }
.rules { background: var(--yellow); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.rule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 35px; }
.rule-grid article { border: 3px solid var(--ink); padding: 28px; min-height: 270px; background: var(--paper); }
.rule-grid b { font-family: Anton, sans-serif; font-size: 40px; color: var(--accent); }
.rule-grid h3 { font-size: 38px; margin: 35px 0 12px; }
.rule-grid p { line-height: 1.55; margin: 0; }

.quote {
  background: var(--accent);
  color: var(--paper);
  padding: 100px 8vw;
  text-align: center;
  border-bottom: 3px solid var(--ink);
}
.quote p { font-family: Anton, sans-serif; font-size: clamp(35px, 5vw, 70px); line-height: 1; margin: 0; text-transform: uppercase; }

form { display: flex; flex-direction: column; gap: 14px; }
input, textarea {
  width: 100%;
  border: 3px solid var(--ink);
  background: transparent;
  padding: 16px;
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
.status { font-size: 14px; font-weight: 700; min-height: 20px; }

footer {
  border-top: 3px solid var(--ink);
  padding: 35px 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
footer p { margin: 0; font-size: 13px; }

@media (max-width: 750px) {
  nav { gap: 12px; }
  nav a { font-size: 12px; }
  .hero { min-height: 72vh; padding-top: 70px; }
  .about, .contact, .rule-grid { grid-template-columns: 1fr; }
  .section { padding: 75px 7vw; }
  footer { flex-direction: column; align-items: flex-start; }
}
