/* ── FOG & THREAD — MAIN STYLES ── */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Cormorant+Upright:ital,wght@0,400;0,500;1,400;1,500&family=Caveat:wght@400;500&display=swap');

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

:root {
  --dark: #080F0A;
  --dark2: #0E1A12;
  --dark3: #0A1510;
  --green: #4A6A4A;
  --green2: #8A9E7A;
  --green3: #2A4A2A;
  --gold: #B89A60;
  --cream: #F7F2E8;
  --parchment: #F5EDD8;
  --muted: #C4B49A;
  --ink: #2E2416;
  --sage: #6A8A6A;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Cormorant Upright', Georgia, serif;
  overflow-x: hidden;
}

/* ── SCENE / HERO ── */
.scene {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.scene canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 24px;
  pointer-events: none;
}

.hero-issue-line {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green2);
  margin-bottom: 16px;
  font-style: italic;
}

.hero-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(72px, 12vw, 114px);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(184,154,96,0.4), 0 0 80px rgba(184,154,96,0.2);
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}
.hero-divider-line { width: 48px; height: 0.5px; background: var(--gold); }
.hero-divider-ornament { color: var(--gold); font-size: 12px; }

.hero-tagline {
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  pointer-events: all;
}
.hero-nav a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green2);
  text-decoration: none;
  transition: color 0.3s;
}
.hero-nav a:hover { color: var(--cream); }

/* scroll hint */
.scroll-down {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 20;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.scroll-down span {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green3);
}
.scroll-line {
  width: 0.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

/* ── HOMEPAGE ── */
.homepage { background: var(--dark2); }

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  font-style: italic;
  margin-bottom: 40px;
}

/* latest section */
.latest-section {
  padding: 80px 32px;
  border-bottom: 0.5px solid var(--green3);
}
.latest-inner { max-width: 900px; margin: 0 auto; }

.latest-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.latest-img-wrap {
  position: relative;
  overflow: hidden;
}
.latest-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: sepia(20%) contrast(1.05) brightness(0.8);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.latest-img-wrap:hover .latest-img {
  filter: sepia(10%) contrast(1.08) brightness(0.9);
  transform: scale(1.02);
}
.latest-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,15,10,0.6) 0%, transparent 60%);
}

.latest-type {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green2);
  font-style: italic;
  margin-bottom: 12px;
}
.latest-title {
  font-family: 'Great Vibes', cursive;
  font-size: 52px;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(184,154,96,0.2);
}
.latest-author {
  font-size: 13px;
  font-style: italic;
  color: var(--green2);
  margin-bottom: 20px;
}
.latest-excerpt {
  font-size: 15px;
  font-style: italic;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 28px;
}
.latest-read-btn {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 0.5px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.latest-read-btn:hover { color: var(--gold); }

/* sections grid */
.sections-grid-section {
  padding: 80px 32px;
  border-bottom: 0.5px solid var(--green3);
}
.sections-inner { max-width: 900px; margin: 0 auto; }

.sections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--green3);
  border: 0.5px solid var(--green3);
}

.section-card {
  background: var(--dark2);
  padding: 40px 32px;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
  position: relative;
}
.section-card:hover { background: var(--dark3); }
.section-card-highlight { border-left: 1px solid var(--gold); }

.section-card-inner {}
.section-card-title {
  font-family: 'Great Vibes', cursive;
  font-size: 36px;
  color: var(--cream);
  margin-bottom: 8px;
}
.section-card-desc {
  font-size: 13px;
  font-style: italic;
  color: var(--sage);
  line-height: 1.6;
  margin-bottom: 20px;
}
.section-card-arrow {
  font-size: 16px;
  color: var(--green3);
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}
.section-card:hover .section-card-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* newsletter teaser */
.newsletter-teaser {
  padding: 80px 32px;
  text-align: center;
  background: var(--dark3);
}
.newsletter-teaser-inner { max-width: 560px; margin: 0 auto; }
.newsletter-teaser-title {
  font-family: 'Great Vibes', cursive;
  font-size: 52px;
  color: var(--cream);
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(184,154,96,0.2);
}
.newsletter-teaser-desc {
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.newsletter-teaser-btn {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green2);
  text-decoration: none;
  border: 0.5px solid var(--green);
  padding: 12px 28px;
  transition: all 0.3s;
}
.newsletter-teaser-btn:hover {
  background: rgba(138,158,122,0.08);
  color: var(--cream);
  border-color: var(--green2);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  border-top: 0.5px solid var(--green3);
  padding: 60px 32px 40px;
  text-align: center;
}
.footer-inner { max-width: 700px; margin: 0 auto; }
.footer-title {
  font-family: 'Great Vibes', cursive;
  font-size: 48px;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  font-style: italic;
  color: var(--green);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-nav a {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--green2); }
.footer-credit {
  font-size: 11px;
  font-style: italic;
  color: var(--green3);
  letter-spacing: 0.08em;
}

/* ── PAGE HEADERS (shared across all pages) ── */
.page-header {
  background: var(--dark2);
  padding: 60px 32px 52px;
  text-align: center;
  border-bottom: 0.5px solid var(--green3);
}
.page-tag {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
  font-style: italic;
  margin-bottom: 12px;
}
.page-title {
  font-family: 'Great Vibes', cursive;
  font-size: 64px;
  color: var(--cream);
  text-shadow: 0 0 30px rgba(184,154,96,0.2);
  margin-bottom: 12px;
}
.page-desc {
  font-size: 14px;
  font-style: italic;
  color: var(--sage);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.7;
}

/* shared divider */
.page-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 0;
}
.page-divider-line { width: 60px; height: 0.5px; background: var(--green3); }
.page-divider-ornament { color: var(--green); font-size: 10px; }

/* ── SHARED NAV BAR ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,15,10,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--green3);
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 28px;
  color: var(--cream);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green2); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .latest-card { grid-template-columns: 1fr; }
  .sections-grid { grid-template-columns: 1fr; }
  .hero-nav { gap: 14px; }
  .nav-links { display: none; }
}