/* ========================
   PAGE HERO
======================== */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  padding: calc(var(--nav-height) + 80px) 24px 80px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(212,175,55,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 800px;
}

.page-hero-content h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-hero-content h1 em {
  color: var(--gold);
  font-style: italic;
}

.page-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--bronze-light);
  letter-spacing: 0.04em;
  max-width: 600px;
  text-align: center;
}

.page-hero-seal {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.12;
  animation: sealRotate 60s linear infinite;
  pointer-events: none;
}

.page-hero-seal svg {
  width: 100%;
  height: 100%;
}

@keyframes sealRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.page-hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.25), transparent);
}

/* ========================
   STORY
======================== */
.story {
  padding: var(--section-padding) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.story-left {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-left h2 {
  line-height: 1.15;
}

.story-left h2 em {
  color: var(--gold);
  font-style: italic;
}

.story-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-lead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.7;
}

.story-right p em {
  color: var(--gold);
  font-style: italic;
}

/* ========================
   NAME SECTION
======================== */
.name-section {
  padding: var(--section-padding) 0;
}

.name-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.name-title {
  margin-bottom: 32px;
}

.name-title em {
  color: var(--gold);
  font-style: italic;
}

.name-inner p {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.name-verse {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 48px 0;
  width: 100%;
  max-width: 700px;
}

.name-verse-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3));
}

.name-verse-line:last-child {
  background: linear-gradient(270deg, transparent, rgba(212,175,55,0.3));
}

blockquote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.name-verse-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ========================
   MISSION
======================== */
.mission {
  padding: var(--section-padding) 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.mission-left {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
  display: flex;
  justify-content: center;
}

.mission-emblem {
  width: 260px;
  height: 260px;
  opacity: 0.6;
  animation: sealRotate 50s linear infinite reverse;
}

.mission-emblem svg {
  width: 100%;
  height: 100%;
}

.mission-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mission-right h2 em {
  color: var(--gold);
  font-style: italic;
}

/* ========================
   FAITH SECTION
======================== */
.faith-section {
  padding: var(--section-padding) 0;
}

.faith-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faith-title {
  margin-bottom: 32px;
}

.faith-title em {
  color: var(--gold);
  font-style: italic;
}

.faith-inner p {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.faith-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
  width: 100%;
  max-width: 800px;
  text-align: left;
}

.faith-pillar {
  padding: 32px;
  border: 1px solid rgba(212,175,55,0.12);
  background: rgba(212,175,55,0.02);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faith-pillar:hover {
  border-color: rgba(212,175,55,0.28);
  background: rgba(212,175,55,0.04);
}

.faith-pillar-icon {
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.7;
}

.faith-pillar h4 {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
}

.faith-pillar p {
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: left;
}

/* ========================
   FOUNDER
======================== */
.founder {
  padding: var(--section-padding) 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.founder-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder-left h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.founder-title {
  font-family: var(--font-caps);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: -8px;
}

.founder-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(212,175,55,0.12);
}

.founder-detail {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.founder-detail .label {
  min-width: 100px;
  flex-shrink: 0;
}

.founder-detail-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--cream);
}

.founder-right {
  display: flex;
  justify-content: center;
}

.founder-emblem {
  width: 340px;
  height: 340px;
  opacity: 0.5;
  animation: sealRotate 70s linear infinite;
}

.founder-emblem svg {
  width: 100%;
  height: 100%;
}

/* ========================
   ROAD AHEAD
======================== */
.roadahead {
  padding: var(--section-padding) 0;
}

.roadahead-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.roadahead-title {
  margin-bottom: 32px;
}

.roadahead-title em {
  color: var(--gold);
  font-style: italic;
}

.roadahead-inner p {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.roadahead-actions {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ========================
   FOOTER (reuse from home)
======================== */
.footer {
  padding: 80px 0 40px;
  background: var(--black-soft);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(212,175,55,0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
}

.footer-logo-sub {
  display: block;
  margin-top: 2px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--bronze);
}

.footer-center .label {
  display: block;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: var(--font-caps);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gray-light);
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

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

.footer-right .label {
  display: block;
  margin-bottom: 20px;
}

.footer-game-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-game-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--cream);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.footer-verse {
  font-family: var(--font-display);
  color: var(--bronze) !important;
  font-size: 0.9rem !important;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .story-grid,
  .mission-grid {
    gap: 50px;
  }

  .founder-grid {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .page-hero-seal {
    display: none;
  }

  .story-grid,
  .mission-grid,
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-left {
    position: static;
  }

  .mission-left {
    position: static;
  }

  .mission-emblem,
  .founder-emblem {
    width: 200px;
    height: 200px;
  }

  .faith-pillars {
    grid-template-columns: 1fr;
  }

  .name-verse-text {
    white-space: normal;
    text-align: center;
  }

  .name-verse {
    flex-direction: column;
    gap: 16px;
  }

  .name-verse-line {
    width: 60px;
    height: 1px;
    background: rgba(212,175,55,0.3);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .roadahead-actions {
    flex-direction: column;
    width: 100%;
  }

  .roadahead-actions a {
    width: 100%;
    justify-content: center;
  }
}