:root {
  --bg: #ffffff;
  --fg: #000000;
  --accent: #e80212;
  --accent-dark: #c40210;
  --muted: #8a8a8a;
  --dim: #4a4a4a;
  --line: #e5e5e5;
  --soft: #f4f4f4;
  --font-main: "Hanken Grotesk", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(100%, 1120px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 32px 24px 28px;
}

.hero {
  min-height: calc(100svh - 124px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 42rem;
  margin: 0 auto;
  padding: 32px 0 120px;
  text-align: center;
}

.hero-centrepiece {
  width: min(180px, 48vw);
  height: auto;
  margin-bottom: 22px;
  background: var(--bg);
}





.brand-wordmark {
  width: 120px;
  height: auto;
  margin-bottom: 40px;
  animation: spin-3d 8s linear infinite;
  transform-style: preserve-3d;
}

.hero h1 {
  max-width: 36rem;
  color: var(--fg);
  font-family: "Bitcount Grid Single", monospace;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.hero-copy {
  max-width: 31rem;
  margin-top: 14px;
  color: var(--dim);
  font-size: 18px;
  line-height: 1.65;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
  text-transform: lowercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 8px 14px;
  color: var(--fg);
  background: var(--bg);
  font-size: 15px;
  line-height: 1;
  text-transform: lowercase;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.hero-actions a:hover {
  border-color: var(--fg);
}

.hero-actions .btn-primary {
  border-color: var(--accent);
  color: #ffffff;
  background: var(--accent);
}

.hero-actions .btn-primary:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.section-grid {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 64px;
  max-width: 64rem;
  margin: 0 auto;
  padding: 80px 0;
  }

.first-section {
  margin-top: 16px;
}

.section-label {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.2;
  text-transform: lowercase;
}

.section-label p {
  margin-bottom: 8px;
}

.section-label h2 {
  color: var(--fg);
  font-size: 15px;
  font-weight: 500;
}

.section-body {
  min-width: 0;
}

.section-body p {
  color: var(--dim);
  font-size: 18px;
  line-height: 1.7;
  text-transform: lowercase;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.format-list {
  display: grid;
  gap: 0;
}

.format-list article {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  }

.format-list article:first-child {
  padding-top: 0;
}

.format-list span {
  color: var(--fg);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: lowercase;
}

.coming-soon p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  text-transform: lowercase;
}

.bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 64rem;
  margin: 0 auto;
  padding: 40px 0 0;
  }

.bottom-links a {
  color: rgba(0, 0, 0, 0.34);
  font-size: 14px;
  line-height: 1;
  text-transform: lowercase;
  transition: color 160ms ease;
}

.bottom-links a:hover {
  color: var(--fg);
}

.bottom-links a + a::before {
  content: ".";
  display: inline-block;
  margin-right: 10px;
  color: rgba(0, 0, 0, 0.24);
}

@media (max-width: 760px) {
  .site-shell {
    padding: 24px 20px 24px;
  }

  .hero {
    min-height: calc(100svh - 104px);
    padding: 28px 0 100px;
  }

  .hero-centrepiece {
    width: min(150px, 48vw);
    margin-bottom: 20px;
  }

  

.brand-wordmark {
  width: 120px;
  height: auto;
  margin-bottom: 40px;
  animation: spin-3d 8s linear infinite;
  transform-style: preserve-3d;
}

  .hero h1,
  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 40px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 64px 0;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .format-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.event-tile {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  text-decoration: none;
  transition: opacity 160ms ease;
}

.event-tile:hover {
  opacity: 0.85;
}

.event-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 12px;
}

.event-tile-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-date {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.2;
  text-transform: lowercase;
}

.event-name {
  color: var(--fg);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: lowercase;
}

.event-tile.is-past {
  opacity: 0.35;
  filter: grayscale(100%);
}

.event-tile.is-past:hover {
  opacity: 0.6;
}

.more-soon-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  color: var(--muted);
  font-size: 16px;
  background: transparent;
  text-transform: lowercase;
}

/* Hallmark Surface Bleeds */
.surface-alt {
  background-color: var(--soft);
  box-shadow: 0 0 0 100vmax var(--soft);
  clip-path: inset(0 -100vmax);
}

.section-label h2 {
  font-family: "Bitcount Grid Single", monospace;
  font-size: 24px !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em;
  text-transform: uppercase !important;
  color: var(--accent) !important;
}
