/* ========== Base Reset ========== */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #000000 0%, #171717 38%, #333333 74%, #5a5a5a 100%);
  color: #f5f5f5;
  overflow-x: hidden;
}

/* ========== Logo ========== */
.site-logo {
  position: fixed;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 4vw, 3rem);
  width: min(42vw, 430px);
  height: auto;
  opacity: 0.95;
  z-index: 2;
  pointer-events: none;
}

/* ========== Menu ========== */
.menu {
  position: fixed;
  left: 0;
  top: 0;
  width: min(34vw, 320px);
  min-width: 230px;
  height: 100vh;
  height: 100svh;
  padding: clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  background: linear-gradient(90deg, rgba(0,0,0,0.62), rgba(0,0,0,0));
  z-index: 3;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.nav-link {
  color: #f0f0f0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(0.9rem, 1.4vw, 1.2rem);
  font-weight: 800;
  transition: opacity 160ms ease, transform 160ms ease, color 160ms ease;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  transform: translateX(6px);
  color: #d4af37;
}

/* Optional: keyboard focus for nav (recommended) */
.nav-link:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.9);
  outline-offset: 4px;
  border-radius: 8px;
}

/* ========== Menu Icons ========== */
.menu-icons {
  position: absolute;
  bottom: clamp(1.25rem, 4vw, 3rem);
  left: clamp(1.25rem, 4vw, 3rem);
  display: flex;
  gap: 1rem;
}

.menu-icons a {
  width: 34px;
  height: 34px;
  color: #f5f5f5;
  opacity: 0.9;
  transition: opacity 160ms ease, transform 160ms ease, color 160ms ease;
}

.menu-icons a:hover {
  color: #d4af37;
  opacity: 1;
  transform: translateY(-3px);
}

.menu-icons a:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.9);
  outline-offset: 4px;
  border-radius: 10px;
}

.menu-icons svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========== Content Layout ========== */
.content {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 7vw, 7rem);
  padding-left: clamp(18rem, 36vw, 28rem);
  padding-right: clamp(2rem, 42vw, 35rem);
}

.panel {
  max-width: 720px;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-left: 2px solid rgba(212, 175, 55, 0.75);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(3px);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

p {
  color: rgba(245, 245, 245, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
  margin: 0 0 1rem;
}

/* Replaces your previous <br> spacing */
.chapter-title {
  margin: 0 0 1.2rem;
  letter-spacing: 0.02em;
}

/* ========== Crew list (valid DL) ========== */
.crew {
  margin: 1.25rem 0 0;
  padding: 0;
}

.crew dt {
  margin: 0 0 0.55rem;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.88);
}

/* ========== Crew Instagram links: blend like text, but gold ========== */
.crew a:link,
.crew a:visited {
  font: inherit;
  color: #d4af37;
  text-decoration: none;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 2px;
}

.crew a:hover {
  text-decoration: underline;
}

.crew a:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.9);
  outline-offset: 3px;
  border-radius: 6px;
}

.faq {
  margin: 1.25rem 0 0;
}

.faq-question {
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.faq-answer {
  margin: 0 0 1rem;
  line-height: 1.7;
}

.faq-answer a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* ========== Responsive: Mobile ========== */
@media (max-width: 820px) {
  .site-logo {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: min(92vw, 520px);
    margin: 1rem auto 0;
  }

  .menu {
    position: relative;
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 1.25rem;
    justify-content: flex-start;
    background: rgba(0,0,0,0.45);
  }

  .nav-links {
    align-items: center;
    gap: 0.8rem;
  }

  .nav-link {
    font-size: 0.92rem;
  }

  .menu-icons {
    position: relative;
    bottom: auto;
    left: auto;
    justify-content: center;
    margin-top: 1.4rem;
  }

  .content {
    padding: 2rem 1.25rem 3rem;
    align-items: flex-start;
  }

  .panel {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }
}

/* ========== Responsive: Landscape Short Height ========== */
@media (orientation: landscape) and (max-height: 560px) {
  .site-logo {
    width: min(32vw, 300px);
  }

  .menu {
    justify-content: flex-start;
    padding-top: 1.25rem;
  }

  .nav-links {
    gap: 0.65rem;
  }

  .content {
    align-items: flex-start;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

/* ===== FORCE content links to blend with text (FAQ + About) ===== */
.panel a:link,
.panel a:visited {
  color: #d4af37;        /* gold */
  font: inherit;         /* same font / size / line-height */
  text-decoration: none;
}

/* hover still shows it's a link */
.panel a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 2px;
}

/* keyboard accessibility */
.panel a:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.9);
  outline-offset: 3px;
  border-radius: 6px;
}