/* ============================================================
   EINHERJARHALL — Path to the Hammer
   Page-specific styles
   ============================================================ */

/* ── Active nav state for this page ── */
.nav-link--active {
  color: var(--gold) !important;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.pth-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
}

.pth-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(80, 30, 5, 0.35) 0%, transparent 65%),
    radial-gradient(ellipse 100% 40% at 50% 0%, rgba(6, 4, 2, 0.8) 0%, transparent 100%),
    linear-gradient(to bottom, var(--charcoal-deep) 0%, var(--black) 100%);
}

.pth-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(6, 4, 2, 0.04) 2px,
    rgba(6, 4, 2, 0.04) 4px
  );
}

.pth-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  opacity: 0;
  animation: heroReveal 3.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pth-hero-rune-mark {
  font-size: 3.5rem;
  color: var(--gold-mid);
  margin-bottom: 1.5rem;
  opacity: 0.7;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
}

.pth-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1.12;
  text-shadow:
    0 0 25px rgba(201, 168, 76, 0.2),
    0 0 60px rgba(201, 168, 76, 0.07);
  margin-bottom: 1.5rem;
}

.pth-hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(0.72rem, 1.8vw, 0.9rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 1rem;
}

/* ════════════════════════════════════════════════════════════
   SHARED SECTION STRUCTURE
   ════════════════════════════════════════════════════════════ */
.pth-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--stone);
}

.pth-section:nth-child(odd) {
  background: var(--charcoal);
}

.pth-section:nth-child(even) {
  background: var(--black);
}

/* Override for specific sections */
.pth-declaration  { background: var(--charcoal); border-top: 1px solid var(--stone); }
.pth-weight       { background: var(--black); }
.pth-learning     { background: var(--charcoal); }
.pth-understand   { background: var(--charcoal-deep); }
.pth-oath         { background: var(--black); border-bottom: none; }

.pth-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.pth-section-label {
  font-size: 2rem;
  color: var(--gold-dim);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.pth-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* ════════════════════════════════════════════════════════════
   DECLARATION
   ════════════════════════════════════════════════════════════ */
.pth-opening {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: center;
}

/* ════════════════════════════════════════════════════════════
   BODY TEXT
   ════════════════════════════════════════════════════════════ */
.pth-body {
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--cream-mid);
  margin-bottom: 1.4rem;
}

.pth-body--intro {
  color: var(--cream);
  font-size: 1rem;
  font-style: italic;
}

.pth-body:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════════════════════════
   QUOTE
   ════════════════════════════════════════════════════════════ */
.pth-quote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  border-left: 2px solid var(--gold-dim);
  background: var(--charcoal-mid);
}

.pth-quote p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.8;
}

.pth-quote cite {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-style: normal;
}

/* ════════════════════════════════════════════════════════════
   HONESTY NOTE
   ════════════════════════════════════════════════════════════ */
.pth-honesty-note {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--charcoal-mid);
  border: 1px solid var(--stone);
  border-left: 2px solid var(--red-mid);
}

.pth-honesty-rune {
  font-size: 2.2rem;
  color: var(--gold-dim);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 0.2rem;
}

.pth-honesty-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.8rem;
}

.pth-honesty-text p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--cream-dim);
  margin-bottom: 0.8rem;
}

.pth-honesty-text p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════════════════════════
   THE TEN — numbered journey list
   ════════════════════════════════════════════════════════════ */
.pth-list {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
}

.pth-list-item {
  display: flex;
  gap: 0;
  background: var(--charcoal);
  transition: background var(--trans-mid);
}

.pth-list-item:hover { background: var(--charcoal-mid); }

.pth-list-number {
  flex-shrink: 0;
  width: 72px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.8rem 0 1.8rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
  border-right: 1px solid var(--stone);
  text-transform: uppercase;
}

.pth-list-content {
  flex: 1;
  padding: 1.8rem 2rem;
}

.pth-list-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.pth-list-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--cream-dim);
}

/* ════════════════════════════════════════════════════════════
   THE OATH — "Not Yet Worn"
   ════════════════════════════════════════════════════════════ */
.pth-oath {
  text-align: center;
  padding: 6rem 0;
}

.pth-oath-rune-ring {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.pth-oath-ring--outer {
  inset: 0;
  animation: sigilSpin 28s linear infinite;
}

.pth-oath-ring--inner {
  inset: 22%;
  border-color: var(--gold-dim);
  animation: sigilSpin 18s linear infinite reverse;
}

.pth-oath-center {
  position: relative;
  z-index: 2;
  font-size: 2.8rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
  animation: sigilPulse 4s ease-in-out infinite;
}

.pth-oath-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 3rem;
  text-shadow: 0 0 25px rgba(201, 168, 76, 0.15);
}

.pth-oath-text {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: left;
}

.pth-oath-text p {
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--cream-mid);
  margin-bottom: 1.4rem;
}

.pth-oath-text p:last-child { margin-bottom: 0; }

.pth-oath-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  border-top: 1px solid var(--stone);
  padding-top: 2rem;
}

.pth-seal-rune {
  font-size: 1rem;
  color: var(--gold-dim);
  opacity: 0.5;
}

.pth-seal-text {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ════════════════════════════════════════════════════════════
   RETURN LINKS
   ════════════════════════════════════════════════════════════ */
.pth-return {
  background: var(--charcoal-deep);
  border-top: 1px solid var(--stone);
  padding: 2.5rem 0;
}

.pth-return-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.pth-return-link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-decoration: none;
  transition: color var(--trans-fast);
}

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

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .pth-honesty-note {
    flex-direction: column;
    gap: 1rem;
  }

  .pth-list-number {
    width: 52px;
    padding: 1.5rem 0;
    font-size: 0.62rem;
  }

  .pth-list-content {
    padding: 1.5rem 1.25rem;
  }

  .pth-oath-text { text-align: center; }

  .pth-return-inner {
    justify-content: center;
    text-align: center;
  }
}
