@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --deep: #0d0b0f;
  --mid: #1a1520;
  --soft: #2a2133;
  --text: #f0e8dc;
  --muted: #a89880;
  --border: rgba(201,169,110,0.18);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--deep);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* AURORA BG */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(120,60,180,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(180,120,60,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(80,40,120,0.15) 0%, transparent 60%);
  animation: aurora-shift 14s ease-in-out infinite alternate;
}
@keyframes aurora-shift {
  0% { opacity:0.6; transform:scale(1); }
  100% { opacity:1; transform:scale(1.04); }
}

.stars {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 40%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 10%, rgba(255,255,255,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 60%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 25%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 80% 70%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 45%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 80%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 85%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 65%, rgba(255,255,255,0.25) 0%, transparent 100%);
}

/* NAV */
nav {
  position: relative; z-index: 100;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(13,11,15,0.85);
  backdrop-filter: blur(12px);
  animation: fadeDown 0.8s ease both;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  font-size: 1rem;
}

/* CONTAINER */
.container {
  position: relative; z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative; z-index: 1;
}

/* HERO */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem 7rem;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1rem;
  animation: fadeUp 1s ease 0.4s both;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
  margin: 1.5rem auto 3rem;
  animation: fadeUp 1s ease 0.6s both;
}

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative; z-index: 1;
}
.page-label {
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.page-title em { font-style: italic; color: var(--gold-light); }
.page-intro {
  color: var(--muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* DIVIDER */
.divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.5rem auto;
  width: 200px;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider-icon { color: var(--gold); font-size: 1rem; }

/* SECTION */
section { padding: 5rem 0; }
.section-label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 3.5rem;
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold-light); }

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: linear-gradient(145deg, rgba(201,169,110,0.07) 0%, rgba(255,255,255,0.02) 60%, rgba(120,60,180,0.05) 100%);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 4px;
  padding: 2.4rem 2rem 2rem;
  transition: all 0.35s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(201,169,110,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.card:hover {
  border-color: rgba(201,169,110,0.6);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(201,169,110,0.08);
}
.card:hover::before { opacity: 1; }
.card:hover::after { transform: scaleX(1); }
.card:hover .card-link { letter-spacing: 0.35em; color: var(--gold-light); }
.card:hover .card-icon { transform: scale(1.15); }
.card-icon {
  font-size: 2rem; margin-bottom: 1.1rem; display: block;
  transition: transform 0.35s ease; line-height: 1;
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  color: var(--gold-light);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.card-text {
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--muted);
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.35s ease;
  font-weight: 500;
}

/* ARTICLE CONTENT */
.article-body {
  padding: 3rem 0 6rem;
}
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-light);
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
}
.article-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin: 2rem 0 0.8rem;
}
.article-body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  line-height: 1.85;
}
.article-body ul {
  list-style: none;
  margin: 0.5rem 0 1.5rem 0;
}
.article-body ul li {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0.35rem 0 0.35rem 1.6rem;
  position: relative;
  line-height: 1.7;
}
.article-body ul li::before {
  content: '✦';
  position: absolute; left: 0;
  color: var(--gold); font-size: 0.6rem; top: 0.6rem;
}
.article-body blockquote {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(201,169,110,0.04);
}
.article-body blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-light);
  margin: 0;
}

/* HIGHLIGHT BOX */
.highlight-box {
  border: 1px solid rgba(201,169,110,0.4);
  background: rgba(201,169,110,0.05);
  border-radius: 2px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.highlight-box p { color: var(--gold-light); font-size: 0.95rem; margin: 0; }

/* TOPIC TAGS */
.topic-tags {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin: 1rem 0;
}
.topic-tag {
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.topic-tag:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,169,110,0.05);
}

/* BACK LINK */
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; margin-bottom: 2.5rem;
  transition: color 0.3s;
}
.back-link:hover { color: var(--gold); }

/* RELATED GRID */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
  position: relative; z-index: 1;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300;
  letter-spacing: 0.3em; color: var(--gold);
  margin-bottom: 1rem;
}
.footer-nav {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 1.5rem;
  margin-bottom: 1.5rem; list-style: none;
}
.footer-nav a {
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-divider {
  width: 40px; height: 1px;
  background: var(--gold); opacity: 0.3;
  margin: 1.2rem auto;
}
.footer-text {
  font-size: 0.8rem; color: var(--muted);
  max-width: 520px; margin: 0 auto; line-height: 1.8;
}
.footer-text a { color: var(--gold); text-decoration: none; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes fadeDown {
  from { opacity:0; transform:translateY(-14px); }
  to { opacity:1; transform:translateY(0); }
}
.reveal {
  opacity:0; transform:translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(13,11,15,0.97);
    padding: 1.5rem 2rem; gap: 1.2rem;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .cards-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
