:root {
  --bg: #080706;
  --bg-soft: #12100d;
  --panel: rgba(27, 22, 16, 0.82);
  --panel-strong: #1b1510;
  --gold: #f3c464;
  --gold-deep: #a56c27;
  --ruby: #621a13;
  --ruby-bright: #a83424;
  --bronze: #7e4b2a;
  --red: #a73a32;
  --purple: #9d5cff;
  --text: #f7ead1;
  --muted: #c8b897;
  --dim: #8b7a5c;
  --line: rgba(243, 196, 100, 0.22);
  --line-strong: rgba(243, 196, 100, 0.36);
  --stone-line: rgba(255, 236, 181, 0.045);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --max: 1180px;
  --gutter: clamp(22px, 5vw, 104px);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.content-loading body {
  opacity: 0;
}

html.content-ready body {
  opacity: 1;
  transition: opacity 180ms ease;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(ellipse at 72% 8%, rgba(243, 196, 100, 0.13), transparent 30rem),
    radial-gradient(ellipse at 88% 32%, rgba(157, 92, 255, 0.13), transparent 28rem),
    radial-gradient(ellipse at 12% 22%, rgba(168, 52, 36, 0.12), transparent 30rem),
    repeating-linear-gradient(0deg, rgba(255, 236, 181, 0.018) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(90deg, rgba(255, 236, 181, 0.014) 0 1px, transparent 1px 96px),
    linear-gradient(180deg, #050403 0%, #100b08 34%, #0b0806 62%, #050403 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle at 18% 14%, rgba(243, 196, 100, 0.055), transparent 14rem),
    radial-gradient(circle at 76% 42%, rgba(157, 92, 255, 0.06), transparent 18rem),
    linear-gradient(135deg, transparent 0 48%, rgba(255, 236, 181, 0.018) 49% 50%, transparent 51% 100%);
  background-size: auto, auto, 180px 180px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.86) 58%, transparent 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.68)),
    radial-gradient(ellipse at 50% 12%, transparent 0 34rem, rgba(0, 0, 0, 0.54) 78rem);
}

main {
  position: relative;
  overflow: hidden;
}

main::before {
  position: absolute;
  inset: 100vh 0 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(243, 196, 100, 0.07), transparent 18%, transparent 82%, rgba(243, 196, 100, 0.06)) center top / min(1320px, calc(100% - 18px)) 1px repeat-y,
    radial-gradient(ellipse at 52% 8%, rgba(243, 196, 100, 0.08), transparent 38rem),
    radial-gradient(circle at 50% 22%, rgba(157, 92, 255, 0.1), transparent 34rem),
    radial-gradient(circle at 18% 48%, rgba(168, 52, 36, 0.08), transparent 28rem),
    repeating-linear-gradient(90deg, transparent 0 116px, rgba(255, 236, 181, 0.02) 116px 117px, transparent 117px 232px),
    linear-gradient(180deg, rgba(14, 10, 7, 0.94), rgba(7, 6, 5, 0.96));
}

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

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

.site-header {
  position: fixed;
  top: 8px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: calc(100% - 16px);
  min-height: 78px;
  padding: 12px var(--gutter);
  border: 1px solid rgba(243, 196, 100, 0.34);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(243, 196, 100, 0.12), transparent 16%, transparent 84%, rgba(243, 196, 100, 0.1)),
    repeating-linear-gradient(135deg, rgba(255, 236, 181, 0.035) 0 1px, transparent 1px 8px),
    rgba(5, 5, 4, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.72),
    inset 0 -1px 0 rgba(243, 196, 100, 0.18),
    0 18px 48px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header::before,
.site-header::after {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  pointer-events: none;
  border: 1px solid rgba(243, 196, 100, 0.42);
  content: "";
  background: rgba(8, 7, 5, 0.92);
  transform: translateY(-50%) rotate(45deg);
}

.site-header::before {
  left: 8px;
}

.site-header::after {
  right: 8px;
}

.site-header.is-scrolled {
  border-color: rgba(243, 196, 100, 0.34);
  background:
    linear-gradient(90deg, rgba(243, 196, 100, 0.1), transparent 16%, transparent 84%, rgba(243, 196, 100, 0.08)),
    rgba(5, 5, 4, 0.95);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 0 8px;
  color: var(--text);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(243, 196, 100, 0.38));
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #f4dfb6;
  font-size: 1rem;
  font-weight: 750;
}

.desktop-nav a,
.mobile-nav a {
  transition: color 160ms ease;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 7px;
  font-weight: 850;
}

.header-cta {
  min-width: 122px;
  padding: 0 22px;
  border: 1px solid rgba(243, 196, 100, 0.5);
  background: linear-gradient(135deg, #4f130e, var(--ruby-bright) 48%, #35100d);
  color: #fff1d0;
  box-shadow: inset 0 0 0 1px rgba(255, 232, 163, 0.14), 0 10px 28px rgba(168, 52, 36, 0.2);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 120px 24px 82px;
  border-bottom: 1px solid rgba(243, 196, 100, 0.28);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 5, 4, 0.96) 0%, rgba(7, 6, 5, 0.72) 44%, rgba(7, 6, 5, 0.25) 72%, rgba(7, 6, 5, 0.72) 100%),
    linear-gradient(180deg, rgba(6, 5, 4, 0.36) 0%, rgba(6, 5, 4, 0.36) 52%, rgba(6, 5, 4, 0.9) 100%),
    url("assets/hero-guardian.png") center / cover no-repeat;
  filter: saturate(1.1) contrast(1.04);
}

.hero::after {
  position: absolute;
  right: 18%;
  bottom: 14%;
  z-index: -1;
  width: 20vw;
  height: 20vw;
  min-width: 220px;
  min-height: 220px;
  content: "";
  background: radial-gradient(circle, rgba(157, 92, 255, 0.42) 0%, transparent 64%);
  filter: blur(26px);
}

.hero-frame {
  position: absolute;
  inset: 86px 0 0;
  z-index: -1;
  pointer-events: none;
  border-top: 1px solid rgba(243, 196, 100, 0.28);
  background:
    linear-gradient(90deg, rgba(243, 196, 100, 0.28), transparent 14%, transparent 86%, rgba(243, 196, 100, 0.28)) top / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(243, 196, 100, 0.2), transparent 18%, transparent 82%, rgba(243, 196, 100, 0.2)) bottom / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.36));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
  align-items: center;
  gap: 54px;
  width: min(calc(100% - 40px), var(--max));
  min-height: calc(100vh - 202px);
  margin: 0 auto;
}

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

.hero-label,
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label::before {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 236, 181, 0.4);
  content: "";
  background: linear-gradient(135deg, var(--gold), var(--ruby-bright));
  box-shadow: 0 0 18px rgba(243, 196, 100, 0.28);
  transform: rotate(45deg);
}

.section-label::after {
  width: 72px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

.hero h1,
.section-copy h2,
.section-heading h2,
.events h2,
.hall h2,
.join-section h2 {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  color: #f6d791;
  font-size: clamp(4.8rem, 7.2vw, 7.2rem);
  text-shadow:
    0 2px 0 rgba(66, 34, 12, 0.8),
    0 12px 42px rgba(0, 0, 0, 0.64);
}

.hero-subtitle {
  max-width: 530px;
  margin: 24px 0 0;
  color: #e7d4ae;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.62rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  border-color: rgba(243, 196, 100, 0.55);
  background: linear-gradient(135deg, #4e130d, var(--ruby-bright) 48%, #2f0e0b);
  color: #fff2d6;
  box-shadow: inset 0 0 0 1px rgba(255, 239, 185, 0.15), 0 18px 46px rgba(168, 52, 36, 0.24);
}

.button-secondary {
  border-color: rgba(243, 196, 100, 0.42);
  background: rgba(6, 8, 10, 0.72);
  color: #f3dcaa;
}

.button-secondary:hover {
  border-color: rgba(243, 196, 100, 0.52);
  background: rgba(243, 196, 100, 0.08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-proof span {
  position: relative;
  padding-left: 19px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-proof span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  content: "";
  background: var(--purple);
  box-shadow: 0 0 18px rgba(157, 92, 255, 0.78);
  transform: translateY(-50%) rotate(45deg);
}

.feature-strip,
.split-section,
.requirements,
.events,
.hall,
.join-section,
.site-footer {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin-inline: auto;
}

.feature-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -158px;
  padding-bottom: 110px;
}

.feature-strip::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100vw, 1320px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(243, 196, 100, 0.26), transparent);
  transform: translateX(-50%);
}

.feature-card,
.requirements article,
.event-card,
.hall-board,
.raid-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(243, 196, 100, 0.08), transparent 24%, transparent 76%, rgba(243, 196, 100, 0.08)),
    linear-gradient(180deg, rgba(22, 24, 24, 0.92), rgba(12, 12, 12, 0.94));
  box-shadow: var(--shadow);
}

.feature-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(243, 196, 100, 0.08), transparent 24%, transparent 76%, rgba(243, 196, 100, 0.08)),
    linear-gradient(180deg, rgba(20, 17, 13, 0.96), rgba(10, 9, 8, 0.98));
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(243, 196, 100, 0.2);
  filter: saturate(1.06) contrast(1.04);
}

.feature-card-copy {
  position: relative;
  min-height: 118px;
  padding: 24px 28px 28px;
  background:
    linear-gradient(90deg, rgba(243, 196, 100, 0.055), transparent 54%),
    linear-gradient(180deg, rgba(13, 13, 12, 0.96), rgba(8, 8, 7, 0.98));
}

.feature-card-copy::before {
  position: absolute;
  top: 0;
  left: 28px;
  width: 62px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
}

.feature-card-copy::after {
  position: absolute;
  top: -8px;
  left: 28px;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 236, 181, 0.42);
  content: "";
  background: linear-gradient(135deg, var(--gold), var(--ruby-bright));
  box-shadow: 0 0 18px rgba(243, 196, 100, 0.28);
  transform: rotate(45deg);
}

.feature-card {
  overflow: hidden;
}

.feature-card::before,
.requirements article::before,
.event-card::before,
.hall-board::before,
.raid-panel::before {
  position: absolute;
  inset: 7px;
  pointer-events: none;
  border: 1px solid rgba(243, 196, 100, 0.13);
  content: "";
}

.feature-card::after,
.requirements article::after,
.raid-panel::after,
.hall-board::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  pointer-events: none;
  border-right: 1px solid rgba(243, 196, 100, 0.22);
  border-bottom: 1px solid rgba(243, 196, 100, 0.22);
  content: "";
}

.feature-card h2,
.requirements h3,
.event-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.2;
}

.feature-card h2 {
  font-size: 1.18rem;
}

.feature-card p,
.requirements p,
.event-card p,
.section-copy p,
.events-copy p,
.hall p,
.join-section p {
  color: var(--muted);
}

.feature-card p {
  margin: 10px 0 0;
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 58px;
  padding: 34px 0 120px;
}

.split-section::before,
.requirements::before,
.events::before,
.hall::before,
.join-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(72%, 760px);
  height: 1px;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(243, 196, 100, 0.28), transparent),
    radial-gradient(circle, rgba(243, 196, 100, 0.35), transparent 62%);
  transform: translateX(-50%);
}

.events::before,
.hall::before {
  display: none;
}

.section-copy,
.events-copy,
.hall > div:first-child {
  position: relative;
  padding-left: 26px;
}

.section-copy::before,
.events-copy::before,
.hall > div:first-child::before {
  position: absolute;
  top: 6px;
  bottom: 8px;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, var(--gold), rgba(243, 196, 100, 0.08));
  box-shadow: 0 0 22px rgba(243, 196, 100, 0.18);
}

.events-copy,
.hall > div:first-child {
  padding-left: 0;
}

.events-copy::before,
.hall > div:first-child::before {
  display: none;
}

.section-copy h2,
.section-heading h2,
.events h2,
.hall h2,
.join-section h2 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
}

.section-copy p,
.events-copy p,
.hall p,
.join-section p {
  max-width: 650px;
  font-size: 1.04rem;
}

.raid-panel {
  overflow: hidden;
  padding: 18px;
}

.raid-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding: 0 8px 14px;
  border-bottom: 1px solid var(--line);
}

.raid-panel-top span {
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.raid-panel-top strong {
  color: var(--gold);
}

.progress-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.progress-list li {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.progress-list li::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 16px rgba(243, 196, 100, 0.34);
  transform: rotate(45deg);
}

.progress-list span {
  grid-row: span 2;
  color: var(--gold);
  font-weight: 950;
}

.progress-list strong {
  color: var(--text);
}

.progress-list small {
  color: var(--muted);
}

.requirements {
  position: relative;
  padding: 88px 0 120px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

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

.requirements article {
  overflow: hidden;
  min-height: 220px;
  padding: 34px 28px 30px;
}

.requirements article:nth-child(1) {
  border-color: rgba(243, 196, 100, 0.3);
}

.requirements article:nth-child(2) {
  border-color: rgba(168, 52, 36, 0.36);
}

.requirements article:nth-child(3) {
  border-color: rgba(157, 92, 255, 0.34);
}

.requirements article span,
.event-card span,
.hall-board span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.requirements article span {
  position: relative;
  margin-bottom: 34px;
  padding-bottom: 12px;
}

.requirements article span::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, currentColor, transparent);
}

.events {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 52px;
  padding: 86px 0 104px;
}

.events::after {
  display: none;
}

.event-cards {
  display: grid;
  gap: 16px;
}

.event-card {
  position: relative;
  min-height: 154px;
  overflow: hidden;
  padding: 24px;
  border-color: rgba(243, 196, 100, 0.14);
  background:
    linear-gradient(90deg, rgba(243, 196, 100, 0.06), transparent 46%),
    linear-gradient(180deg, rgba(14, 15, 15, 0.72), rgba(9, 9, 8, 0.68));
  color: inherit;
  box-shadow: none;
}

.event-card::before {
  inset: 0 0 auto;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, rgba(243, 196, 100, 0.32), transparent 82%);
}

.event-card::after {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(243, 196, 100, 0.18);
  border-radius: 6px;
  content: "";
  background: linear-gradient(135deg, rgba(243, 196, 100, 0.18), rgba(157, 92, 255, 0.16));
  transform: rotate(45deg);
}

.event-card.active {
  border-color: rgba(157, 92, 255, 0.28);
  background:
    linear-gradient(90deg, rgba(157, 92, 255, 0.08), transparent 52%),
    linear-gradient(180deg, rgba(14, 15, 15, 0.76), rgba(9, 9, 8, 0.68));
  box-shadow: 0 20px 64px rgba(157, 92, 255, 0.08);
}

.hall {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(310px, 0.78fr);
  gap: 52px;
  padding: 86px 0 110px;
}

.hall-board {
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: 18px;
  background:
    radial-gradient(circle at 84% 16%, rgba(243, 196, 100, 0.13), transparent 12rem),
    linear-gradient(135deg, rgba(243, 196, 100, 0.08), transparent 24%, rgba(98, 26, 19, 0.14) 74%, rgba(243, 196, 100, 0.08)),
    linear-gradient(180deg, rgba(22, 24, 24, 0.94), rgba(12, 12, 12, 0.95));
}

.hall-board div {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.hall-board div::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 9px;
  height: 9px;
  content: "";
  background: rgba(243, 196, 100, 0.58);
  transform: translateY(-50%) rotate(45deg);
}

.hall-board span {
  margin-bottom: 10px;
}

.hall-board strong,
.hall-board small {
  display: block;
}

.hall-board small {
  margin-top: 4px;
  color: var(--muted);
}

.hall-cta {
  margin-top: 26px;
}

.join-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-bottom: 80px;
  padding: 34px;
  border: 1px solid rgba(243, 196, 100, 0.32);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(243, 196, 100, 0.08), transparent 20%, transparent 80%, rgba(243, 196, 100, 0.08)),
    linear-gradient(135deg, rgba(157, 92, 255, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(44, 33, 22, 0.9), rgba(18, 13, 10, 0.92));
  box-shadow: var(--shadow);
}

.join-section::after {
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(243, 196, 100, 0.13);
  content: "";
}

.join-section img {
  width: 92px;
  filter: drop-shadow(0 0 22px rgba(243, 196, 100, 0.34));
}

.join-section h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.join-section p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-weight: 750;
}

.site-footer a:hover {
  color: var(--gold);
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 4px;
    padding: 14px 6px 4px;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav a {
    min-height: 42px;
    padding: 10px;
    border-radius: 7px;
    color: var(--muted);
    font-weight: 800;
  }

  .mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.045);
  }

  .hero {
    padding-top: 130px;
  }

  .hero-backdrop {
    background-position: 62% center;
  }

  .hero-grid,
  .split-section,
  .events,
  .hall {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 10px;
    min-height: auto;
  }

  .hero-emblem {
    order: -1;
    min-height: 320px;
  }

  .hero-emblem img {
    width: min(78vw, 360px);
  }

  .feature-strip,
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    margin-top: -34px;
    padding-bottom: 76px;
  }

  .section-heading {
    display: block;
  }

  .join-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border: 1px solid rgba(243, 196, 100, 0.24);
    border-radius: 8px;
    padding: 10px 12px;
  }

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

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

  .hero {
    min-height: 92vh;
    padding-inline: 18px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 11.5vw, 3.45rem);
    overflow-wrap: normal;
  }

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

  .feature-strip,
  .split-section,
  .requirements,
  .events,
  .hall,
  .join-section,
  .site-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .feature-card,
  .requirements article,
  .event-card,
  .join-section {
    padding: 22px;
  }

  .feature-card {
    padding: 0;
  }

  .feature-card-copy {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
