/* ============================================================
   EINHERJARHALL — Site Stylesheet
   Built by Stacked Alchemist LLC
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── DESIGN TOKENS ── */
:root {
  /* Colors */
  --black:          #060402;
  --charcoal-deep:  #0d0a07;
  --charcoal:       #13100c;
  --charcoal-mid:   #1c1710;
  --charcoal-light: #282015;
  --stone:          #3a3228;
  --stone-light:    #504437;

  --gold:           #c9a84c;
  --gold-bright:    #e8c96a;
  --gold-mid:       #a88830;
  --gold-dim:       #7a6020;
  --gold-glow:      rgba(201, 168, 76, 0.15);

  --red:            #6e1515;
  --red-mid:        #8b1f1f;
  --red-bright:     #a52a2a;

  --cream:          #ecdec2;
  --cream-mid:      #cfc0a0;
  --cream-dim:      #a89070;
  --cream-faint:    rgba(236, 222, 194, 0.06);

  --fire-orange:    rgba(160, 70, 10, 0.22);
  --fire-deep:      rgba(100, 40, 5, 0.15);

  /* Typography */
  --font-display:   'Cinzel Decorative', Georgia, serif;
  --font-heading:   'Cinzel', Georgia, serif;
  --font-body:      'EB Garamond', Georgia, serif;

  /* Spacing */
  --section-pad:    5rem;
  --container-max:  1200px;
  --container-pad:  2rem;

  /* Transitions */
  --trans-fast:     0.18s ease;
  --trans-mid:      0.3s ease;
  --trans-slow:     0.5s ease;
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.75;
  overflow-x: hidden;
}

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

a { color: inherit; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ════════════════════════════════════════════════════════════
   ENTRANCE VEIL
   ════════════════════════════════════════════════════════════ */
.entrance-veil {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  pointer-events: none;
  animation: veilLift 2.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes veilLift {
  0%   { opacity: 1; }
  55%  { opacity: 1; }
  100% { opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
.hall-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 1.1rem 2rem;
  background: linear-gradient(
    to bottom,
    rgba(6, 4, 2, 0.92) 0%,
    rgba(6, 4, 2, 0) 100%
  );
  transition: background var(--trans-slow), border-color var(--trans-slow);
  border-bottom: 1px solid transparent;
}

.hall-nav.scrolled {
  background: rgba(10, 7, 4, 0.97);
  border-bottom-color: var(--stone);
  backdrop-filter: blur(4px);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--trans-fast);
}

.nav-brand:hover { color: var(--gold-bright); }

.nav-rune {
  color: var(--gold-mid);
  font-size: 1rem;
  font-family: var(--font-body);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: nowrap;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color var(--trans-fast);
  white-space: nowrap;
}

.nav-link:hover { color: var(--gold); }

.nav-link--enter {
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.4rem 1.1rem;
  transition: background var(--trans-fast), color var(--trans-fast), border-color var(--trans-fast);
}

.nav-link--enter:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 2px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition: transform var(--trans-fast), opacity var(--trans-fast);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ════════════════════════════════════════════════════════════
   NAV DROPDOWNS
   ════════════════════════════════════════════════════════════ */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* Small caret on links with dropdowns */
.nav-link--has-dropdown::after {
  content: '▾';
  display: inline-block;
  margin-left: 0.3em;
  font-size: 0.6em;
  opacity: 0.6;
  transition: transform var(--trans-fast), opacity var(--trans-fast);
  vertical-align: middle;
}

.nav-item:hover .nav-link--has-dropdown::after {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 210px;
  background: rgba(8, 6, 3, 0.98);
  border: 1px solid var(--stone);
  border-top: 2px solid var(--gold-dim);
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(6px);
  z-index: 600;
  white-space: nowrap;
}

/* Bridge gap so cursor can move from link into panel */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 0.5rem 1.3rem;
  font-family: var(--font-heading);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.14s, background 0.14s;
}

.nav-dropdown-link:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
}

.nav-dropdown-link--coming {
  color: var(--stone-light);
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--stone);
  margin: 0.35rem 0;
  opacity: 0.5;
}

/* Hide dropdowns in mobile menu — hub links handle navigation there */
@media (max-width: 1100px) {
  .nav-dropdown { display: none; }
  .nav-link--has-dropdown::after { display: none; }
  .nav-item { display: contents; }
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/hero-hall.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Dark overlay — keeps text readable, pulls image into the hall palette */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6, 4, 2, 0.55) 0%, rgba(6, 4, 2, 0.25) 50%, rgba(6, 4, 2, 0.72) 100%),
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(6, 4, 2, 0.4) 0%, transparent 100%);
}

.hero-fire-glow {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 55%;
  background: radial-gradient(
    ellipse,
    rgba(180, 80, 8, 0.18) 0%,
    transparent 70%
  );
  animation: fireFlicker 5s ease-in-out infinite;
  z-index: 1;
}

.hero-smoke {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 30%,
    rgba(6, 4, 2, 0.2) 0%,
    transparent 100%
  );
  z-index: 1;
}

@keyframes fireFlicker {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scaleX(1); }
  33%       { opacity: 1;   transform: translateX(-50%) scaleX(1.06); }
  66%       { opacity: 0.8; transform: translateX(-50%) scaleX(0.96); }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 var(--container-pad);
  opacity: 0;
  animation: heroReveal 3.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroReveal {
  0%   { opacity: 0; transform: translateY(16px); }
  45%  { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-rune-row {
  font-size: 0.85rem;
  letter-spacing: 0.55em;
  color: var(--gold-dim);
  margin-bottom: 2rem;
  opacity: 0.7;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7.5vw, 5.8rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1.05;
  text-shadow:
    0 0 30px rgba(201, 168, 76, 0.25),
    0 0 80px rgba(201, 168, 76, 0.08);
  margin-bottom: 1.6rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  max-width: 420px;
  margin: 0 auto 1.5rem;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to var(--dir, right),
    transparent,
    var(--gold-mid)
  );
}

.divider-line:last-child { --dir: left; }

.divider-knot {
  color: var(--gold-mid);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 2.8rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.85rem 2.6rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-fast);
}

.hero-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(201, 168, 76, 0.28);
}

.hero-cta:active { transform: translateY(0); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--gold-dim);
  animation: scrollBounce 2.4s ease-in-out infinite;
  z-index: 3;
}

.scroll-rune { font-size: 0.85rem; opacity: 0.6; }
.scroll-arrow { font-size: 1rem; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

/* ════════════════════════════════════════════════════════════
   SECTION SHARED STYLES
   ════════════════════════════════════════════════════════════ */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-title-rune {
  color: var(--gold-dim);
  font-size: 1.1em;
  font-family: var(--font-body);
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Scroll reveal */
.reveal-section,
.reveal-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-section.visible,
.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered cards */
.reveal-card:nth-child(2) { transition-delay: 0.1s; }
.reveal-card:nth-child(3) { transition-delay: 0.2s; }
.reveal-card:nth-child(4) { transition-delay: 0.15s; }
.reveal-card:nth-child(5) { transition-delay: 0.25s; }
.reveal-card:nth-child(6) { transition-delay: 0.35s; }

/* ════════════════════════════════════════════════════════════
   DECLARATION
   ════════════════════════════════════════════════════════════ */
.declaration {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.declaration-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.declaration-rune-mark {
  font-size: 1.8rem;
  color: var(--gold-mid);
  margin-bottom: 1.8rem;
  opacity: 0.6;
}

.declaration-text {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-style: italic;
  color: var(--cream-mid);
  line-height: 1.95;
  margin-bottom: 1.8rem;
}

.declaration-emphasis {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.declaration-sub {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ════════════════════════════════════════════════════════════
   ENTRY PATHS
   ════════════════════════════════════════════════════════════ */
.entry-paths {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
}

.path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 3rem 2.5rem;
  background: var(--charcoal);
  text-decoration: none;
  color: var(--cream);
  overflow: hidden;
  transition: background var(--trans-mid);
}

.path-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-mid);
}

.path-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 110%,
    var(--gold-glow) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity var(--trans-mid);
}

.path-card:hover { background: var(--charcoal-mid); }
.path-card:hover .path-card-glow { transform: scaleX(1); }
.path-card:hover::after { opacity: 1; }

.path-card-rune {
  font-size: 2.8rem;
  color: var(--gold-dim);
  margin-bottom: 1.4rem;
  line-height: 1;
  transition: color var(--trans-mid);
}

.path-card:hover .path-card-rune { color: var(--gold-mid); }

.path-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.path-card-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--cream-dim);
  flex: 1;
  margin-bottom: 1.8rem;
}

.path-card-cta {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-mid);
  transition: color var(--trans-fast);
}

.path-card:hover .path-card-cta { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   WINGS PREVIEW
   ════════════════════════════════════════════════════════════ */
.wings-preview {
  padding: var(--section-pad) 0;
  background: var(--charcoal-deep);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.wings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
}

.wing-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 2rem 2rem;
  background: var(--charcoal);
  text-decoration: none;
  color: var(--cream-dim);
  transition: background var(--trans-fast), color var(--trans-fast);
}

.wing-item:hover {
  background: var(--charcoal-mid);
  color: var(--cream);
}

.wing-rune {
  font-size: 1.6rem;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 0.4rem;
  transition: color var(--trans-fast);
}

.wing-item:hover .wing-rune { color: var(--gold-mid); }

.wing-name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-mid);
  transition: color var(--trans-fast);
}

.wing-item:hover .wing-name { color: var(--gold); }

.wing-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--cream-dim);
}

/* ════════════════════════════════════════════════════════════
   WELL OF URD
   ════════════════════════════════════════════════════════════ */
.well-teaser {
  padding: var(--section-pad) 0;
  background-image: url('../assets/img/well_of_urd.png');
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  position: relative;
}

.well-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6, 4, 2, 0.82) 0%, rgba(6, 4, 2, 0.65) 50%, rgba(6, 4, 2, 0.85) 100%);
}

.well-teaser .container { position: relative; z-index: 1; }

.well-inner {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  max-width: 880px;
  margin: 0 auto;
}

/* Sigil / rune circle */
.well-sigil {
  position: relative;
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.well-sigil-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--stone-light);
}

.well-sigil-ring--outer {
  inset: 0;
  animation: sigilSpin 22s linear infinite;
}

.well-sigil-ring--inner {
  inset: 20%;
  border-color: var(--gold-dim);
  animation: sigilSpin 14s linear infinite reverse;
}

@keyframes sigilSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.well-sigil-center {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(201, 168, 76, 0.35), 0 0 40px rgba(201, 168, 76, 0.12);
  animation: sigilPulse 4s ease-in-out infinite;
}

@keyframes sigilPulse {
  0%, 100% { text-shadow: 0 0 18px rgba(201, 168, 76, 0.35), 0 0 40px rgba(201, 168, 76, 0.12); }
  50%       { text-shadow: 0 0 28px rgba(201, 168, 76, 0.55), 0 0 60px rgba(201, 168, 76, 0.2); }
}

.well-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.well-desc {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--cream-dim);
  margin-bottom: 1.8rem;
}

.well-cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold-dim);
  padding: 0.65rem 1.6rem;
  transition: background var(--trans-fast), color var(--trans-fast), border-color var(--trans-fast);
  margin-bottom: 1rem;
  display: inline-block;
}

.well-cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.well-note {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--stone-light);
  margin-top: 0.5rem;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.hall-footer {
  background: var(--charcoal-deep);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--stone);
}

.footer-rune-band {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  color: var(--gold-dim);
  opacity: 0.4;
  margin-bottom: 2.8rem;
  overflow: hidden;
  white-space: nowrap;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-identity { }

.footer-hall-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.3rem;
}

.footer-established {
  font-size: 0.78rem;
  color: var(--gold-dim);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer-nav-link {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.footer-nav-link:hover { color: var(--gold); }

.footer-attribution {
  text-align: right;
}

.footer-built-by {
  font-size: 0.75rem;
  color: var(--cream-dim);
  margin-bottom: 0.2rem;
}

.footer-sa-link {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.footer-sa-link:hover { color: var(--gold-bright); }

.footer-handle {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
  margin-top: 0.3rem;
}

.footer-base {
  text-align: center;
  border-top: 1px solid var(--stone);
  padding-top: 1.5rem;
}

.footer-base-rune {
  font-size: 1.1rem;
  color: var(--gold-dim);
  opacity: 0.35;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(10, 7, 4, 0.98);
    border-bottom: 1px solid var(--stone);
    padding: 1.2rem 2rem 2rem;
    gap: 1.4rem;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hall-nav { position: relative; }
  .hall-nav.scrolled { position: fixed; }

  .well-inner {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-attribution { text-align: center; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
  :root {
    --section-pad: 3.5rem;
    --container-pad: 1.25rem;
  }

  .paths-grid { grid-template-columns: 1fr; }
  .wings-grid { grid-template-columns: 1fr 1fr; }
  .hero-rune-row { display: none; }
  .footer-rune-band { font-size: 0.6rem; letter-spacing: 0.3em; }
}

@media (max-width: 420px) {
  .wings-grid { grid-template-columns: 1fr; }
}
