:root {
  --bg: #070707;
  --panel: #111111;
  --panel-2: #181818;
  --text: #f4f0e8;
  --muted: #b5aa9a;
  --faint: #756c5f;
  --gold: #d0a441;
  --red: #b42126;
  --ice: #8fb0c5;
  --line: rgba(244, 240, 232, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --font-display: "Clash Display", Impact, sans-serif;
  --font-body: "Satoshi", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(7, 7, 7, 0.72);
  border-bottom: 1px solid rgba(244, 240, 232, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(208, 164, 65, 0.55);
}

.nav-links {
  display: flex;
  gap: 6px;
}

.nav-links a,
.mobile-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 13px;
}

.nav-links a:hover,
.mobile-nav a:hover {
  color: var(--gold);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  padding: 138px clamp(18px, 6vw, 80px) 88px;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.88), rgba(7, 7, 7, 0.55) 45%, rgba(7, 7, 7, 0.2)),
    linear-gradient(0deg, rgba(7, 7, 7, 0.96), transparent 42%),
    radial-gradient(circle at 78% 26%, rgba(180, 33, 38, 0.28), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(940px, 100%);
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 11vw, 9.5rem);
  text-transform: uppercase;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 6vw, 5.4rem);
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.hero-copy,
.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.3vw, 1.45rem);
  line-height: 1.48;
}

.hero-actions,
.link-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button.primary {
  background: var(--gold);
  color: #100d08;
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.button:hover {
  transform: translateY(-1px);
}

.email-button {
  max-width: 100%;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-transform: none;
}

.founder-panel {
  position: absolute;
  right: clamp(18px, 6vw, 80px);
  bottom: 78px;
  z-index: 2;
  width: min(320px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid rgba(208, 164, 65, 0.4);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.74);
  box-shadow: var(--shadow);
}

.founder-panel span {
  color: var(--faint);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-panel strong {
  display: block;
  margin: 4px 0 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.founder-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.42;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0d0d;
}

.ticker span {
  min-height: 68px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-align: center;
}

.ticker span:last-child {
  border-right: 0;
  color: var(--ice);
}

.section {
  padding: clamp(66px, 9vw, 126px) clamp(18px, 6vw, 80px);
}

.section-head {
  max-width: 940px;
  margin-bottom: 38px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: start;
}

.intro-grid p,
.image-split p,
.southside-block p,
.contact-card p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.72;
}

.photo-band {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr;
  gap: 10px;
  padding: 10px;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.photo-band img {
  width: 100%;
  height: clamp(260px, 36vw, 520px);
  object-fit: cover;
  border-radius: 8px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.format-grid article {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--panel), var(--panel-2));
}

.number {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: 0.85;
}

.format-grid p,
.rule-list span {
  color: var(--muted);
  line-height: 1.62;
}

.dark {
  background:
    linear-gradient(rgba(7, 7, 7, 0.82), rgba(7, 7, 7, 0.92)),
    url("assets/technique-demo-3.jpg") center / cover fixed;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rules-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.rule-list {
  display: grid;
  gap: 12px;
}

.rule-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.78);
}

.rule-list strong {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.image-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.image-split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.southside-block {
  max-width: 920px;
}

.gallery {
  background: var(--panel);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.contact {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.88), rgba(7, 7, 7, 0.62)),
    url("assets/academy-interior.jpg") center / cover;
}

.contact-card {
  max-width: 840px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(208, 164, 65, 0.35);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.82);
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 6vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--faint);
  background: #050505;
}

.site-footer strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer-links .email-link {
  overflow-wrap: anywhere;
  text-transform: none;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 77px;
    left: 12px;
    right: 12px;
    z-index: 29;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.96);
  }

  .mobile-nav.open {
    display: grid;
  }

  .mobile-nav a {
    padding: 15px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 92vh;
    align-items: center;
    padding-bottom: 160px;
  }

  .founder-panel {
    left: 18px;
    right: 18px;
    bottom: 24px;
    width: auto;
  }

  .ticker,
  .format-grid,
  .intro-grid,
  .rules-layout,
  .image-split,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .ticker span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .photo-band {
    grid-template-columns: 1fr;
  }

  .photo-band img {
    height: 310px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand span {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(1.5rem, 7.5vw, 5.4rem);
    max-width: 100%;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(2.1rem, 13vw, 3.8rem);
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy,
  .founder-panel p {
    max-width: calc(100vw - 36px);
    overflow-wrap: break-word;
  }

  .hero-copy,
  .lead {
    font-size: 1.02rem;
  }

  .button {
    width: 100%;
  }

  .rule-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    display: grid;
  }
}
