:root {
  --soil:      #2b1f14;
  --bark:      #3e2a18;
  --amber:     #c07b3a;
  --gold:      #d4a55a;
  --fog:       #e8dfd0;
  --parchment: #f5efe4;
  --ash:       #9e9488;
  --slate:     #5c5448;
  --moss:      #4a5240;
  --smoke:     #b8b0a0;
  --ink:       #1a130b;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--soil);
  color: var(--fog);
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(26, 15, 8, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(192, 123, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 3rem;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Lora', serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nav-social a {
  color: var(--ash);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.nav-social a:hover { color: var(--gold); }

/* MOUNTAIN BANNER */
.mountain-banner { width: 100%; overflow: hidden; line-height: 0; }
.mountain-banner svg { display: block; width: 100%; height: auto; }

/* HERO */
.hero {
  position: relative;
  text-align: center;
  padding: 5rem 2rem 4rem;
  background: linear-gradient(180deg, #0e0905 0%, var(--soil) 60%, #3a2510 100%);
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 18vw, 18rem);
  font-weight: 700;
  color: rgba(192, 123, 58, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.hero-eyebrow {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--parchment);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--smoke);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-divider span {
  display: block; width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber));
}
.hero-divider span:last-child { background: linear-gradient(90deg, var(--amber), transparent); }
.hero-divider .diamond {
  width: 7px; height: 7px;
  background: var(--amber);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.85s forwards;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--ink);
  font-family: 'Libre Baskerville', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  border: 1px solid var(--amber);
  color: var(--amber);
  font-family: 'Libre Baskerville', serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(192, 123, 58, 0.1); transform: translateY(-1px); }

/* SECTIONS */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--parchment);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.ornament { display: flex; align-items: center; gap: 1rem; margin: 2rem 0; }
.ornament-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--amber), transparent); }

/* ABOUT */
.about-strip {
  background: var(--bark);
  border-top: 1px solid rgba(192, 123, 58, 0.2);
  border-bottom: 1px solid rgba(192, 123, 58, 0.2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: center;
}
.portrait-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border: 2px solid rgba(192, 123, 58, 0.4);
  position: relative;
  overflow: hidden;
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(192, 123, 58, 0.2);
  pointer-events: none;
  z-index: 2;
}
.portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-text p { color: var(--fog); margin-bottom: 1.25rem; font-size: 1rem; }

/* REGION BAND */
.region-band {
  background: var(--moss);
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.region-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
}
.region-band .container { position: relative; }
.region-band p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--parchment);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.5;
}
.region-band .states {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 2rem;
}
.state-badge {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.35rem 1rem;
  border: 1px solid rgba(255,255,255,0.25);
}

/* NEWSLETTER */
.newsletter-section { background: linear-gradient(180deg, var(--soil) 0%, #1e1409 100%); }
.newsletter-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.newsletter-desc p { color: var(--fog); margin-bottom: 1rem; font-size: 0.95rem; }
.topic-list { list-style: none; margin-top: 1.5rem; }
.topic-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(192, 123, 58, 0.12);
  font-size: 0.88rem;
  color: var(--smoke);
}
.topic-list li:last-child { border-bottom: none; }
.topic-list .t-icon { flex-shrink: 0; font-size: 1rem; margin-top: 0.1rem; }
.topic-list strong {
  display: block;
  color: var(--parchment);
  margin-bottom: 0.15rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}
.substack-card {
  background: rgba(62, 42, 24, 0.5);
  border: 1px solid rgba(192, 123, 58, 0.25);
  padding: 2.5rem;
}
.substack-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--parchment);
  margin-bottom: 1rem;
}
.substack-card h3 em { font-style: italic; color: var(--gold); }
.substack-card p { color: var(--smoke); font-size: 0.9rem; margin-bottom: 1.5rem; }
.substack-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FF6719;
  color: #fff;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.substack-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.substack-card-social {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(192, 123, 58, 0.2);
}
.social-label {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.social-icons {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}
.social-icons a {
  color: var(--ash);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.social-icons a:hover { color: var(--amber); }

/* PODCAST */
.podcast-section {
  background: var(--bark);
  border-top: 1px solid rgba(192, 123, 58, 0.2);
}
.podcast-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.podcast-art {
  width: 100%;
  border: 2px solid rgba(192, 123, 58, 0.35);
  display: block;
}
.podcast-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}
.podcast-text h3 em { font-style: italic; color: var(--gold); }
.podcast-tagline {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.podcast-text p { color: var(--fog); font-size: 0.95rem; margin-bottom: 1rem; }
.listen-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.listen-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(192, 123, 58, 0.4);
  color: var(--fog);
  font-family: 'Libre Baskerville', serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.listen-link:hover {
  background: rgba(192, 123, 58, 0.15);
  border-color: var(--amber);
  color: var(--parchment);
}

/* QUOTE */
.quote-section { background: var(--soil); text-align: center; padding: 5rem 2rem; }
blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.85rem);
  color: var(--parchment);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
  position: relative;
}
blockquote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--amber);
  opacity: 0.4;
  position: absolute;
  top: -2rem; left: -1.5rem;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}
blockquote cite {
  display: block;
  font-style: normal;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 1.75rem;
}

/* FOOTER */
footer {
  background: var(--ink);
  padding: 3rem 2rem 2rem;
  border-top: 1px solid rgba(192, 123, 58, 0.2);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.82rem; color: var(--ash); line-height: 1.65; }
.footer-social {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.25rem;
  align-items: center;
}
.footer-social a { color: var(--ash); transition: color 0.2s; display: flex; align-items: center; }
.footer-social a:hover { color: var(--gold); }
.footer-col h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.85rem; color: var(--ash); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--fog); }
.footer-bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.75rem; color: var(--slate); letter-spacing: 0.05em; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0.75rem 1.5rem; }
  .nav-links { gap: 1.25rem; }
  .about-grid,
  .newsletter-about,
  .podcast-grid { grid-template-columns: 1fr; }
  .portrait-frame { max-width: 280px; }
  .podcast-art { max-width: 280px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  nav { flex-direction: column; gap: 0.75rem; padding: 0.75rem 1rem; }
  .nav-links { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .hero { padding: 3rem 1.5rem; }
  section { padding: 3.5rem 1.5rem; }
}
