:root {
  color-scheme: light;
  --bg: #030303;
  --surface: #0a0a0a;
  --surface-strong: #121212;
  --text: #f4f4f4;
  --muted: #6ef14a;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #6ef14a;
  --accent-dark: #6ef14a;
  --highlight: #6ef14a;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  font-family: "Unbounded", system-ui, sans-serif;
  --display-font: "Unica One", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-weight: 300;
}

a {
  color: inherit;
}

.site-header {
  padding: 1.25rem clamp(1rem, 3vw, 2rem);
  background: #000000;
  position: relative;
}

.nav,
.section,
.footer {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: flex-start;
}

.brand-logo {
  display: block;
  width: clamp(140px, 20vw, 220px);
  height: auto;
}

.nav-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-links a,
.social-links a {
  text-decoration: none;
  font-weight: 500;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h2,
h3,
p {
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.button-primary {
  background: var(--accent);
  color: #000000;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.section {
  padding: 4.5rem clamp(1rem, 3vw, 2rem);
}

.section-heading {
  margin-bottom: 1.75rem;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.95;
  font-weight: 400;
  text-transform: uppercase;
}

.section-heading::after {
  content: "";
  display: block;
  width: 120px;
  aspect-ratio: 1920 / 199;
  height: auto;
  margin-top: 0.35rem;
  background: url("zigzag.png") left center / contain no-repeat;
}

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
  gap: 1.25rem;
}

.info-panel,
.schedule-item,
.schedule-meta {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.schedule-meta p:last-child {
  margin-bottom: 0;
}

.info-panel ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.join p,
.section-copy,
.footer p {
  color: #ffffff;
  line-height: 1.65;
}

.manifesto-callout,
.manifesto-signoff {
  font-family: var(--display-font);
  text-transform: uppercase;
  line-height: 1;
}

.manifesto-callout {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #ffffff;
}

.manifesto-signoff {
  margin-bottom: 0;
  color: var(--accent);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.schedule-list {
  display: grid;
  gap: 0.9rem;
}

.session-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.session-type {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.session-type h3 {
  margin-bottom: 0.75rem;
  font-family: var(--display-font);
  font-size: 1.6rem;
  line-height: 0.95;
  font-weight: 400;
  text-transform: uppercase;
}

.session-type p {
  margin-bottom: 0.45rem;
  color: #ffffff;
  line-height: 1.55;
}

.session-type p:last-child {
  margin-bottom: 0;
}

.schedule-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.schedule-day,
.schedule-details {
  padding: 1.4rem;
}

.schedule-day {
  background: #101010;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-details {
  background: #141414;
  color: #ffffff;
  text-align: right;
}

.schedule-day-name,
.schedule-title {
  margin-bottom: 0.35rem;
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0;
}

.schedule-day-time,
.schedule-location {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.schedule-location {
  color: var(--accent);
}

.schedule-meta {
  margin-top: 1rem;
  text-align: center;
}

.schedule-meta a {
  color: var(--accent-dark);
}

.photo-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 18vw, 230px);
  gap: 0.85rem;
}

.photo-tile {
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #111111;
}

.photo-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.photo-tile:hover img {
  transform: scale(1.03);
}

.photo-tile-tall {
  grid-row: span 2;
}

.photo-tile-wide {
  grid-column: span 2;
}

.steps {
  display: grid;
  gap: 0.85rem;
}

.step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.step:first-child {
  padding-top: 0;
  border-top: 0;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--highlight);
  color: #000000;
  font-weight: 700;
}

.values-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #ffffff;
}

.values-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.full-width {
  width: 100%;
}

.footer {
  padding: 0 1rem 2rem;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  margin-bottom: 1rem;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo {
  display: block;
  width: auto;
  height: auto;
}

.footer-partner-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem 1.1rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: #ffffff;
}

.footer-logo-club {
  width: 92px;
}

.footer-logo-england {
  width: 58px;
}

.footer-logo-league {
  width: 116px;
}

.footer a {
  color: var(--accent-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
}

.product-type,
.product-meta,
.panel-copy {
  color: #ffffff;
}

.product-type {
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 0;
  font-family: var(--display-font);
  font-size: 1.8rem;
  line-height: 0.95;
  font-weight: 400;
  text-transform: uppercase;
}

.product-card p {
  margin-bottom: 0;
  line-height: 1.6;
}

.product-card .button {
  margin-top: auto;
}

.product-grid-short {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 800px) {
  .grid-two,
  .session-types,
  .schedule-item,
  .product-grid,
  .product-grid-short {
    grid-template-columns: 1fr;
  }

  .photo-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(140px, 28vw, 200px);
  }

  .schedule-details {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    width: 160px;
  }

  .footer-logos {
    gap: 0.75rem 1rem;
  }

  .footer-partner-strip {
    gap: 0.7rem 0.8rem;
    padding: 0.55rem 0.8rem;
  }

  .footer-logo-club {
    width: 74px;
  }

  .footer-logo-england {
    width: 48px;
  }

  .footer-logo-league {
    width: 96px;
  }

  .photo-layout {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .photo-tile,
  .photo-tile-wide,
  .photo-tile-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-tile img {
    aspect-ratio: 4 / 3;
  }
}
