:root {
  --bg: #070707;
  --panel: #111214;
  --panel-2: #181a1f;
  --text: #f7f7f7;
  --muted: #b9bcc5;
  --line: rgba(255, 255, 255, 0.13);
  --red: #f20808;
  --red-dark: #8d0505;
  --white-soft: #f2f4f8;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(5, 5, 6, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 58px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.site-nav a {
  padding: 0 14px;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--red);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white-soft);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, #070707 0%, rgba(7, 7, 7, 0) 34%);
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 88px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

.hero-copy,
.section-copy p,
.social-card small,
.member-copy p,
.member-copy small,
.booking-note {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: clamp(1.02rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 28px rgba(242, 8, 8, 0.24);
}

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

.section {
  padding: clamp(72px, 10vw, 120px) clamp(18px, 6vw, 80px);
}

.split,
.booking {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.section-copy {
  max-width: 680px;
}

.section-copy.centered {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-copy p {
  font-size: 1.04rem;
}

.team-section {
  background: #090a0c;
  border-top: 1px solid var(--line);
}

.member-list {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.member-card {
  min-height: clamp(330px, 28vw, 390px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.member-card.featured-member {
  min-height: clamp(520px, 42vw, 640px);
}

.member-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-card img.profile-photo {
  width: min(100%, 440px);
  height: auto;
  max-height: calc(100% - 20px);
  margin: auto;
  padding: 10px;
  object-fit: contain;
  background: #050506;
}

.member-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 44px);
}

.member-copy span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.member-copy h3 {
  margin: 12px 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.member-copy p {
  margin: 0;
}

.member-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}

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

.member-stats div {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.member-stats strong {
  display: block;
  color: var(--text);
  font-size: clamp(0.98rem, 1.4vw, 1.16rem);
  line-height: 1.1;
}

.member-stats .stars::before {
  content: "*****";
  color: var(--red);
  letter-spacing: 2px;
}

.member-stats .four-stars::before {
  content: "****";
}

.member-stats .four-stars::after {
  content: "*";
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 2px;
}

.member-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.member-copy small {
  display: block;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 800;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.social-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 8, 8, 0.55);
}

.social-card span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-card strong {
  margin: auto 0 20px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.social-card.discord {
  background: linear-gradient(135deg, rgba(242, 8, 8, 0.28), rgba(255, 255, 255, 0.06)), var(--panel-2);
}

.booking {
  background: linear-gradient(180deg, #0d0e11, #070707);
  border-top: 1px solid var(--line);
}

.booking-card {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.booking-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: booking-step;
}

.booking-steps li {
  counter-increment: booking-step;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: var(--text);
  line-height: 1.45;
}

.booking-steps li::before {
  content: counter(booking-step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-weight: 900;
}

.booking-card .button {
  justify-self: start;
}

.booking-note {
  margin: -2px 0 0;
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 80px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 64px;
  height: 46px;
  object-fit: contain;
}

.site-footer span {
  margin-right: auto;
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(5, 5, 6, 0.96);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, #070707 0%, rgba(7, 7, 7, 0.32) 42%, rgba(7, 7, 7, 0.08)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.1));
  }

  .split,
  .booking,
  .social-grid,
  .member-card {
    grid-template-columns: 1fr;
  }

  .social-card {
    min-height: 170px;
  }

  .member-card img {
    height: 220px;
    min-height: 220px;
    order: -1;
  }

  .member-card img.profile-photo {
    width: min(100%, 440px);
    height: auto;
    min-height: 0;
  }

  .member-card {
    height: auto;
  }

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

  .member-stats.featured-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
  }

  .brand img {
    width: 50px;
    height: 40px;
  }

  .brand span {
    max-width: 180px;
    white-space: normal;
    line-height: 1.05;
  }

  .site-nav {
    top: 70px;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    object-position: 62% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-inline: 16px;
    padding-top: 80px;
  }

  h1 {
    font-size: clamp(2.7rem, 18vw, 4.35rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .site-footer {
    flex-wrap: wrap;
  }
}
