﻿:root {
  --bg: #070707;
  --bg-deep: #040404;
  --surface: #141414;
  --surface-2: #1a1a1a;
  --ink: #f5f5f5;
  --muted: #bdbdbd;
  --accent: #df3311;
  --accent-2: #ff6a3d;
  --line: #2d2d2d;
  --ok: #2faa67;
  --danger: #d04a31;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 12% 8%, #1a1a1a 0%, transparent 28%), var(--bg);
  line-height: 1.55;
}

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

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 5.6rem 0;
}

.kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 6, 6, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(223, 51, 17, 0.26);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
}

.brand-mark {
  padding: 0.26rem 0.56rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ff7448);
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.brand-text {
  font-size: 1.04rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.main-nav a {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: #d8d8d8;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
  font: inherit;
  font-weight: 700;
}

.hero {
  min-height: calc(100svh - 72px);
  padding: 0;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  filter: grayscale(16%);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.66) 44%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(180deg, rgba(223, 51, 17, 0.2), rgba(0, 0, 0, 0.15));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.55rem;
  align-items: end;
  padding: 6rem 0 4.9rem;
}

.hero h1 {
  margin: 0;
  display: grid;
  line-height: 0.85;
  text-transform: uppercase;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(4.1rem, 15vw, 10rem);
  letter-spacing: 0.04em;
}

.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px #f6f6f6;
}

.hero-lead {
  margin: 0.5rem 0 0;
  font-size: clamp(1.08rem, 2.4vw, 1.8rem);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text {
  margin: 1rem 0 0;
  max-width: 56ch;
  color: #d8d8d8;
}

.hero-cta {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.76rem;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 0.84rem 1.16rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid #ffffff44;
}

.hero-panel {
  background: linear-gradient(160deg, rgba(10, 10, 10, 0.94), rgba(22, 22, 22, 0.95));
  border: 1px solid #ffffff22;
  border-top: 3px solid var(--accent);
  border-radius: 16px;
  padding: 1.25rem;
}

.panel-kicker {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c8c8c8;
}

.hero-panel h2 {
  margin: 0.36rem 0 0.8rem;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-panel ul {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.56rem;
  color: #d3d3d3;
}

.section-head {
  margin-bottom: 1.7rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.events-section {
  background: linear-gradient(180deg, #0b0b0b 0%, #141414 100%);
}

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

.event-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: #ffffff4a;
}

.event-date {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  font-weight: 700;
}

.event-card h3 {
  margin: 0.55rem 0 0.42rem;
  font-size: 1.1rem;
  line-height: 1.3;
}

.event-card p {
  margin: 0;
  color: var(--muted);
}

.event-card a {
  margin-top: 0.92rem;
  display: inline-flex;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid var(--accent-2);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.events-note {
  margin: 1.2rem 0 0;
  color: #bdbdbd;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-section {
  background: #090909;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.about-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-copy p {
  margin: 0.85rem 0 0;
  color: #cdcdcd;
  max-width: 60ch;
}

.about-side {
  display: grid;
  gap: 0.8rem;
}

.side-card {
  background: #141414;
  border: 1px solid #292929;
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 0.9rem;
}

.side-card h3 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.side-card p {
  margin: 0.42rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.stats-wrap {
  margin-top: 1.2rem;
}

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

.stat {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.num {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.06em;
  color: #fff;
}

.stat p:last-child {
  margin: 0.25rem 0 0;
  color: #d0d0d0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-section {
  background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  grid-auto-rows: 180px;
}

.tile {
  margin: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ffffff24;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(18%) contrast(1.05);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
}

.tile figcaption {
  position: absolute;
  left: 0.7rem;
  bottom: 0.6rem;
  z-index: 2;
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f2f2f2;
}

.tile:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.06);
}

.t1 {
  grid-column: span 2;
  grid-row: span 2;
}

.t4,
.t6 {
  grid-row: span 2;
}

.subscribe-section {
  background: linear-gradient(125deg, #0b0b0b 0%, #161616 45%, #2a110c 100%);
}

.subscribe-wrap {
  background: rgba(20, 20, 20, 0.76);
  border: 1px solid #ffffff1f;
  border-radius: 16px;
  padding: 1.2rem;
}

.subscribe-wrap h2 {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.subscribe-form {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
}

.subscribe-msg {
  margin: 0.6rem 0 0;
  min-height: 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.members-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(223, 51, 17, 0.14) 0%, transparent 28%),
    linear-gradient(135deg, #090909 0%, #131313 55%, #1e0d09 100%);
}

.members-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.1rem;
  align-items: center;
}

.members-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.members-copy p:not(.kicker) {
  margin: 0.85rem 0 0;
  color: #cecece;
  max-width: 60ch;
}

.members-cards {
  display: grid;
  gap: 0.85rem;
}

.member-card {
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.member-label {
  margin: 0;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
}

.member-card h3 {
  margin: 0.45rem 0 0.4rem;
  font-size: 1.15rem;
}

.member-card p:last-child {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(180deg, #101010 0%, #080808 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  align-items: start;
}

.contact-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-copy p {
  color: #cecece;
}

.contact-copy ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.contact-form {
  background: #151515;
  border: 1px solid #2e2e2e;
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  gap: 0.78rem;
}

.contact-form label {
  display: grid;
  gap: 0.34rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #dbdbdb;
}

input,
textarea {
  width: 100%;
  border: 1px solid #343434;
  border-radius: 10px;
  background: #0f0f0f;
  color: #fff;
  font: inherit;
  padding: 0.7rem 0.8rem;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(223, 51, 17, 0.3);
  border-color: var(--accent);
}

.form-msg {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid #292929;
  background: var(--bg-deep);
}

.footer-wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #9f9f9f;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .members-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 5rem;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 60px;
    right: 4vw;
    min-width: 185px;
    background: #131313;
    border: 1px solid #2f2f2f;
    border-radius: 12px;
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.35rem 0.42rem;
  }

  .event-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }

  .t1,
  .t4,
  .t6 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .subscribe-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.6rem 0;
  }

  .footer-wrap {
    justify-content: center;
  }
}
