/* ============================================
   LUXE DIRT — Ghost Theme CSS
   ============================================ */

:root {
  --dirt: #2C1F14;
  --soil: #3D2B1A;
  --clay: #8B5E3C;
  --dust: #C4A882;
  --cream: #F2EAD8;
  --sage: #7A8C6E;
  --stone: #9E9589;
  --ember: #C4622D;
  --gold: #B89A5A;
  --water: #4A6670;
  --max-width: 1200px;
}

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

body {
  background: var(--dirt);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 100;
  opacity: 0.4;
}

/* ---- CURSOR ---- */
.cursor {
  width: 10px; height: 10px;
  background: var(--ember);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--dust);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

/* ---- NAV ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px;
}
.site-nav::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,31,20,0.92) 0%, transparent 100%);
  z-index: -1;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-transform: uppercase;
  text-decoration: none;
}
.nav-logo span { color: var(--ember); font-style: italic; }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dust);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-menu-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--cream);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 52px 80px;
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
  animation-delay: 0.2s;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 300;
  line-height: 0.92;
  color: var(--cream);
  margin-bottom: 32px;
}
.hero-title em {
  font-style: italic;
  color: var(--dust);
  display: block;
}
.hero-sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--stone);
  max-width: 340px;
  margin-bottom: 48px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--ember);
  padding-bottom: 8px;
  transition: gap 0.3s, color 0.3s;
  width: fit-content;
}
.hero-cta:hover { gap: 24px; color: var(--ember); }
.hero-right { position: relative; overflow: hidden; }
.hero-scene {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 50% 85%, rgba(196,98,45,0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 60%, rgba(184,154,90,0.12) 0%, transparent 40%),
    linear-gradient(170deg, #1a2e1a 0%, #0d1f0d 30%, #1C1008 60%, #2C1F14 100%);
  position: relative;
  min-height: 100vh;
}
.hero-scene::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, #0a1a0a 0%, transparent 100%);
  clip-path: polygon(0% 100%, 8% 40%, 16% 65%, 22% 25%, 30% 55%, 38% 10%, 46% 50%, 55% 20%, 62% 45%, 70% 5%, 78% 40%, 86% 20%, 92% 50%, 100% 30%, 100% 100%);
}
.hero-scene::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(10,20,10,0.95) 0%, transparent 100%);
  clip-path: polygon(0% 100%, 5% 60%, 12% 80%, 18% 45%, 25% 70%, 32% 40%, 40% 65%, 48% 35%, 55% 60%, 63% 30%, 70% 55%, 78% 25%, 85% 50%, 92% 35%, 100% 55%, 100% 100%);
}
.fire-glow {
  position: absolute;
  bottom: 15%; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(196,98,45,0.8) 0%, rgba(184,154,90,0.4) 30%, transparent 70%);
  border-radius: 50%;
  animation: flicker 2s ease-in-out infinite alternate;
  z-index: 2;
}
.stars { position: absolute; inset: 0; overflow: hidden; }
.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle var(--dur, 3s) ease-in-out infinite alternate;
}
.hero-divider {
  position: absolute;
  left: 50%; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--clay), transparent);
  opacity: 0.3;
  z-index: 3;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 2s ease 1.5s forwards;
  opacity: 0;
}
.scroll-indicator span {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--stone), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---- MARQUEE ---- */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid rgba(196,168,130,0.15);
  border-bottom: 1px solid rgba(196,168,130,0.15);
  padding: 18px 0;
  background: var(--soil);
}
.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dust);
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--ember);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- SECTIONS ---- */
section, .posts-section, .philosophy, .gear-strip, .tag-archive, .page-full, .post-full {
  padding: 100px 52px;
}
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::after {
  content: '';
  display: block;
  height: 1px; width: 60px;
  background: var(--ember);
  opacity: 0.4;
}

/* ---- POST CARDS ---- */
.posts-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}
.post-card { position: relative; overflow: hidden; cursor: none; }
.post-card-link { display: block; text-decoration: none; }
.post-card-inner {
  padding: 40px 32px;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.post-card:hover .post-card-inner { transform: translateY(-8px); }

.post-card-0 .post-card-inner, .post-card-1 .post-card-inner {
  background:
    linear-gradient(to top, rgba(44,31,20,0.97) 0%, rgba(44,31,20,0.5) 50%, transparent 100%),
    radial-gradient(ellipse at 30% 30%, rgba(74,102,112,0.4) 0%, transparent 60%),
    linear-gradient(135deg, #0d2420 0%, #1a3528 40%, #2C1F14 100%);
}
.post-card-2 .post-card-inner, .post-card-3 .post-card-inner {
  background:
    linear-gradient(to top, rgba(44,31,20,0.97) 0%, rgba(44,31,20,0.4) 60%, transparent 100%),
    radial-gradient(ellipse at 70% 20%, rgba(196,98,45,0.3) 0%, transparent 50%),
    linear-gradient(160deg, #1f0e05 0%, #3d1a0a 100%);
}
.post-card-4 .post-card-inner, .post-card-5 .post-card-inner {
  background:
    linear-gradient(to top, rgba(44,31,20,0.97) 0%, rgba(44,31,20,0.5) 50%, transparent 100%),
    radial-gradient(ellipse at 50% 40%, rgba(122,140,110,0.3) 0%, transparent 60%),
    linear-gradient(140deg, #141f0f 0%, #1e2d16 60%, #2C1F14 100%);
}
.post-card:has(img) .post-card-inner {
  background: linear-gradient(to top, rgba(44,31,20,0.97) 0%, rgba(44,31,20,0.3) 60%, transparent 100%);
  position: relative;
}
.post-card img.card-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: transform 0.6s ease;
}
.post-card:hover img.card-img { transform: scale(1.04); }

.post-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 12px;
  text-decoration: none;
}
.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 16px;
}
.post-title em { font-style: italic; color: var(--dust); }
.post-meta {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--stone);
  display: flex;
  gap: 8px;
}
.post-arrow {
  position: absolute;
  top: 32px; right: 32px;
  width: 36px; height: 36px;
  border: 1px solid rgba(196,168,130,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--dust);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.post-card:hover .post-arrow { opacity: 1; transform: translateY(0); }

/* Post list (below the grid) */
.posts-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 24px;
}
.post-list-item {
  padding: 28px 32px;
  background: rgba(61,43,26,0.3);
  border-top: 1px solid rgba(196,168,130,0.08);
  text-decoration: none;
  transition: background 0.3s;
  display: block;
}
.post-list-item:hover { background: rgba(61,43,26,0.7); }
.post-list-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin: 8px 0;
  line-height: 1.2;
}
.post-list-meta {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--stone);
  display: flex;
  gap: 8px;
}

/* ---- PHILOSOPHY ---- */
.philosophy {
  background: var(--soil);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.philosophy-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 32px;
}
.philosophy-text h2 em { font-style: italic; color: var(--dust); }
.philosophy-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--stone);
  max-width: 420px;
  margin-bottom: 24px;
}
.philosophy-pillars { display: flex; flex-direction: column; gap: 1px; }
.pillar {
  padding: 28px 36px;
  background: rgba(44,31,20,0.5);
  border-left: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  cursor: none;
}
.pillar:hover { border-left-color: var(--ember); background: rgba(44,31,20,0.8); }
.pillar-num {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--ember);
  margin-bottom: 10px;
}
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}
.pillar-desc { font-size: 13px; color: var(--stone); line-height: 1.7; }

/* ---- NEWSLETTER ---- */
.newsletter {
  background: var(--ember);
  padding: 80px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
}
.newsletter h2 em { font-style: italic; color: var(--dirt); }
.newsletter-form { display: flex; flex-direction: column; gap: 20px; }
.newsletter p { font-size: 14px; line-height: 1.8; color: rgba(242,234,216,0.75); }
.newsletter input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(242,234,216,0.4);
  padding: 16px 0;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.newsletter input::placeholder { color: rgba(242,234,216,0.4); }
.newsletter input:focus { border-bottom-color: var(--cream); }
.newsletter button {
  background: var(--dirt);
  color: var(--cream);
  border: none;
  padding: 18px 40px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  align-self: flex-start;
}
.newsletter button:hover { background: var(--cream); color: var(--dirt); }

/* ---- FOOTER ---- */
.site-footer {
  padding: 52px;
  border-top: 1px solid rgba(196,168,130,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
}
.footer-logo span { font-style: italic; color: var(--ember); }
.footer-links { display: flex; gap: 32px; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--cream); }
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--stone);
  opacity: 0.5;
}

/* ---- POST FULL ---- */
.post-header {
  padding-top: 140px;
  background: var(--soil);
  text-align: center;
}
.post-header-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 52px;
}
.post-full-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  margin: 16px 0 24px;
}
.post-excerpt {
  font-size: 18px;
  line-height: 1.7;
  color: var(--stone);
  max-width: 600px;
  margin: 0 auto 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.post-full-meta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.post-feature-image {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}
.post-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-feature-image figcaption {
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--stone);
  padding: 12px;
  background: var(--soil);
}

/* ---- POST CONTENT (Ghost Card styles) ---- */
.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 52px;
}
.gh-content h2, .gh-content h3, .gh-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--cream);
  margin: 48px 0 20px;
  line-height: 1.15;
}
.gh-content h2 { font-size: clamp(28px, 3.5vw, 44px); }
.gh-content h3 { font-size: clamp(22px, 2.5vw, 32px); }
.gh-content h4 { font-size: 20px; }
.gh-content p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--dust);
  margin-bottom: 28px;
}
.gh-content a { color: var(--ember); text-decoration: none; border-bottom: 1px solid var(--ember); transition: color 0.3s; }
.gh-content a:hover { color: var(--cream); }
.gh-content strong { color: var(--cream); font-weight: 400; }
.gh-content em { font-style: italic; color: var(--cream); }
.gh-content blockquote {
  border-left: 2px solid var(--ember);
  padding: 16px 32px;
  margin: 40px 0;
  background: rgba(61,43,26,0.3);
}
.gh-content blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
  margin: 0;
}
.gh-content img { width: 100%; height: auto; margin: 40px 0; }
.gh-content ul, .gh-content ol {
  padding-left: 24px;
  margin-bottom: 28px;
}
.gh-content li {
  font-size: 17px;
  line-height: 1.85;
  color: var(--dust);
  margin-bottom: 8px;
}
.gh-content hr {
  border: none;
  border-top: 1px solid rgba(196,168,130,0.15);
  margin: 56px 0;
}
.gh-content pre {
  background: var(--soil);
  padding: 24px;
  border-radius: 2px;
  overflow-x: auto;
  margin-bottom: 28px;
}
.gh-content code {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--dust);
}

/* Post footer */
.post-footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 52px 80px;
  border-top: 1px solid rgba(196,168,130,0.1);
  padding-top: 48px;
}
.post-tags { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.tag-pill {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid rgba(196,168,130,0.2);
  padding: 8px 16px;
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s;
}
.tag-pill:hover { color: var(--cream); border-color: var(--cream); }
.author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: var(--soil);
}
.author-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 8px;
}
.author-bio { font-size: 13px; color: var(--stone); line-height: 1.7; }

/* Related posts */
.related-posts { padding: 80px 52px; border-top: 1px solid rgba(196,168,130,0.1); }

/* ---- ARCHIVE / TAG ---- */
.archive-header {
  padding-top: 140px;
  margin-bottom: 64px;
  border-bottom: 1px solid rgba(196,168,130,0.1);
  padding-bottom: 64px;
}
.archive-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  margin: 16px 0;
}
.archive-desc { font-size: 15px; color: var(--stone); line-height: 1.8; max-width: 480px; margin-bottom: 16px; }
.archive-count { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em; color: var(--stone); }

/* ---- ERROR PAGE ---- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px;
}
.error-inner { max-width: 600px; }

/* ---- PAGINATION ---- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 64px 52px;
  border-top: 1px solid rgba(196,168,130,0.1);
}
.pagination a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dust);
  text-decoration: none;
  border-bottom: 1px solid var(--ember);
  padding-bottom: 4px;
  transition: color 0.3s;
}
.pagination a:hover { color: var(--cream); }

/* ---- REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- COMMENTS ---- */
.post-comments { padding: 0 52px 80px; max-width: 720px; margin: 0 auto; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes flicker {
  0% { opacity: 0.7; transform: translateX(-50%) scale(0.95); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}
@keyframes twinkle {
  0% { opacity: 0.2; }
  100% { opacity: 0.9; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .site-nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--dirt);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(196,168,130,0.1);
  }
  .nav-menu-toggle { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 120px 24px 80px; }
  .hero-divider { display: none; }

  .posts-grid { grid-template-columns: 1fr; }
  .posts-list-grid { grid-template-columns: 1fr; }
  .philosophy { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }
  .newsletter { grid-template-columns: 1fr; padding: 64px 24px; gap: 40px; }

  section, .posts-section, .tag-archive, .post-full, .page-full { padding: 64px 24px; }
  .post-content { padding: 64px 24px; }
  .post-footer { padding: 0 24px 64px; }
  .related-posts { padding: 64px 24px; }
  .site-footer { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
  .post-header-inner { padding: 64px 24px; }
}
