@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/anton-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
}

:root {
  --ground: #191617;
  --panel: #241f21;
  --ink: #ffffff;
  --dim: #9a9296;
  --crimson: #c8102e;
  --crimson-hot: #e62139;
  --saffron: #f7a800;
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ground);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

a { color: inherit; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: rgba(25, 22, 23, 0.92);
  border-bottom: 1px solid #2e2729;
  backdrop-filter: blur(8px);
}

.wordmark {
  font-family: Anton, Impact, sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav nav { display: flex; gap: 28px; }
.nav nav a {
  color: var(--dim);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav nav a:hover { color: var(--ink); }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 28px 72px;
}

.kicker {
  color: var(--dim);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(72px, 14vw, 148px);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.hero .sub {
  margin-top: 18px;
  letter-spacing: 0.28em;
  color: var(--dim);
  font-size: 13px;
}

.hero .lede {
  max-width: 560px;
  margin-top: 28px;
  color: #d8d2d4;
}

.games {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 80px;
  display: grid;
  gap: 20px;
}

.game {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--panel);
  padding: 36px;
  border: 1px solid #2e2729;
}

.game .crest {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.sport {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--dim);
}

.game h2 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 0.95;
  margin: 8px 0 14px;
}

.tag {
  font-family: Anton, Impact, sans-serif;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.rugby .tag { color: var(--crimson-hot); }
.hurling .tag { color: var(--saffron); }
.more .tag { color: var(--dim); }

.game.more { border-style: dashed; }
.crest-more {
  display: grid;
  place-items: center;
  font-family: Anton, Impact, sans-serif;
  font-size: 96px;
  color: #3a3235;
  border: 2px dashed #3a3235;
  border-radius: 24px;
}

.game p { color: #d8d2d4; max-width: 52ch; }

.status {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

.progress { display: grid; gap: 18px; margin-top: 28px; }
.progress dt {
  font-family: Anton, Impact, sans-serif;
  letter-spacing: 0.04em;
  color: var(--saffron);
  margin-bottom: 4px;
}
.progress div:nth-child(2) dt { color: var(--crimson-hot); }
.progress div:nth-child(3) dt { color: var(--ink); }
.progress dd { color: #d8d2d4; max-width: 60ch; }

.privacy {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 28px 80px;
  border-top: 1px solid #2e2729;
}
.privacy h2 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  margin: 8px 0 18px;
}
.privacy p { color: #d8d2d4; max-width: 64ch; margin-bottom: 14px; }
.privacy a { color: var(--saffron); }

.studio {
  border-top: 1px solid #2e2729;
  border-bottom: 1px solid #2e2729;
  padding: 80px 28px;
}

.studio-inner { max-width: var(--max); margin: 0 auto; }

.studio h2 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  max-width: 16ch;
  margin-bottom: 20px;
}

.studio p { max-width: 62ch; color: #d8d2d4; }

.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 28px;
}

.contact h2 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
}

.contact a {
  color: var(--saffron);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.contact a:hover { text-decoration: underline; }

footer {
  padding: 24px 28px 40px;
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-top: 1px solid #2e2729;
}
.foot-row { display: flex; justify-content: space-between; }
footer .legal {
  margin-top: 18px;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 13px;
  color: #7d7478;
}

@media (max-width: 720px) {
  .game { grid-template-columns: 1fr; }
  .game .crest { width: 140px; height: 140px; }
  .nav nav { gap: 16px; }
}
