/* ============================================
   MOONSTRUCK VIDEOS — Component Styles
   ============================================ */

/* ---------- NAVIGATION ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-interactive),
              background var(--transition-interactive);
}

.site-header--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text);
  line-height: 1;
}

.nav-logo-text span {
  display: block;
  font-size: var(--text-xs);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav-links a {
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-interactive);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--color-text);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  background: transparent;
}

.theme-toggle:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
  background: var(--color-surface);
}

/* CTA Button (Header) */
.btn-nav-cta {
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text-inverse);
  background: var(--color-gold);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-gold);
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  color: var(--color-text-inverse);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  color: var(--color-text);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--transition-interactive),
              opacity var(--transition-interactive);
  transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-6);
  flex-direction: column;
  gap: var(--space-1);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text-muted);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}

.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] {
  color: var(--color-text);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

@media (max-width: 900px) {
  .nav-container {
    gap: var(--space-2);
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
  .nav-links,
  .btn-nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
    flex-shrink: 0;
  }
  .nav-actions {
    gap: var(--space-2);
    flex-shrink: 0;
  }
  .nav-logo-text span {
    display: none;
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-surface);
  border-color: var(--color-text-muted);
  color: var(--color-text);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--color-text);
  background: var(--color-surface-offset);
}

.btn-sage {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn-sage:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: #fff;
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: #fff;
}

/* ---------- LAYOUT UTILITIES ---------- */
.container {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--default {
  max-width: var(--content-default);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-32));
}

.section--sm {
  padding-block: clamp(var(--space-8), 5vw, var(--space-20));
}

.section--lg {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}

/* ---------- TYPOGRAPHY UTILITIES ---------- */
.display-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.section-subtext {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 60ch;
}

.text-center { text-align: center; }
.text-center .section-subtext { margin: 0 auto; }
.text-center p { max-width: none; }

/* ---------- HERO SECTIONS ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  max-width: 900px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 1.05;
  color: #faf9f6;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.75);
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Cinematic Placeholder (gradient film frame) */
.film-placeholder {
  background: linear-gradient(
    160deg,
    #2a2820 0%,
    #3a3628 25%,
    #4a4232 50%,
    #3a3220 75%,
    #1e1c15 100%
  );
  position: relative;
  overflow: hidden;
}

.film-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 40%,
    rgba(184, 151, 106, 0.12) 0%,
    rgba(122, 140, 110, 0.08) 40%,
    transparent 70%
  );
}

.film-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(20, 18, 12, 0.6) 100%
  );
}

/* Sage gradient placeholder */
.sage-placeholder {
  background: linear-gradient(
    135deg,
    #3d4a38 0%,
    #5a6b4f 30%,
    #7a8c6e 60%,
    #4a5940 100%
  );
  position: relative;
  overflow: hidden;
}

.sage-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 60% 30%,
    rgba(250, 249, 246, 0.1) 0%,
    transparent 60%
  );
}

/* Ivory gradient placeholder */
.ivory-placeholder {
  background: linear-gradient(
    135deg,
    #ede9e0 0%,
    #f5f0e6 40%,
    #e8e0d0 70%,
    #d4cdb8 100%
  );
}

/* ---------- CARDS ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-interactive),
              transform var(--transition-interactive),
              border-color var(--transition-interactive);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-image img {
  transform: scale(1.04);
}

.card-body {
  padding: var(--space-6);
}

.card-eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.card-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ---------- GRID LAYOUTS ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-gold-light);
  pointer-events: none;
}

[data-theme="dark"] .testimonial-card::before {
  color: var(--color-gold-light);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  padding-top: var(--space-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-initials {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--color-primary-hover) 0%,
    var(--color-primary) 50%,
    #8a9d7e 100%
  );
  color: #fff;
  text-align: center;
}

[data-theme="dark"] .cta-section {
  background: linear-gradient(
    135deg,
    #2a3026 0%,
    #3a4535 50%,
    #2a3528 100%
  );
}

.cta-section .section-eyebrow {
  color: rgba(255,255,255,0.7);
}

.cta-section .display-heading {
  color: #fff;
}

.cta-section .section-subtext {
  color: rgba(255,255,255,0.8);
  margin: var(--space-4) auto var(--space-8);
}

.cta-section .btn-primary {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
}

.cta-section .btn-primary:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
}

.cta-section .btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.4);
}

.cta-section .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* ---------- DIVIDER ---------- */
.section-divider {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: var(--space-6) auto;
}

.section-divider--left {
  margin-left: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-border);
  padding-block: clamp(var(--space-12), 6vw, var(--space-24));
}

.footer-grid {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
}

.footer-brand .nav-logo-text {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  display: block;
}

.footer-description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 36ch;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
  background: var(--color-surface);
}

.footer-col-title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-col ul a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-col ul a:hover {
  color: var(--color-text);
}

.footer-bottom {
  max-width: var(--content-wide);
  margin: var(--space-12) auto 0;
  padding: var(--space-6) var(--space-6) 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer-attribution {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: none;
}

.footer-attribution:hover {
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  padding: var(--space-4) 0;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  color: var(--color-text-faint);
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-text);
}

.breadcrumb [aria-current="page"] {
  color: var(--color-text);
}

/* ---------- PAGE HERO (interior) ---------- */
.page-hero {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  text-align: center;
  background: linear-gradient(
    180deg,
    var(--color-surface-offset) 0%,
    var(--color-bg) 100%
  );
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.page-hero-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 55ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- LAZY LOAD FADE ---------- */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ========================================
   BLOG — SINGLE POST
   ======================================== */

/* Hero image full-bleed */
.post-hero {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  background: var(--color-surface-offset);
}
.post-hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* Post wrapper */
.post-single {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

/* Post header */
.post-header {
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-border);
}
.post-date {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.post-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 0;
}

/* Post body */
.post-content {
  font-size: var(--text-base);
  line-height: 1.85;
  color: var(--color-text-muted);
  max-width: 72ch;
}
.post-content p {
  margin-bottom: var(--space-5);
}
.post-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
}
.post-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}
.post-content ul,
.post-content ol {
  padding-left: var(--space-6);
  margin-bottom: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.post-content li {
  line-height: 1.75;
}
.post-content strong {
  color: var(--color-text);
  font-weight: 500;
}
.post-content a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-content a:hover {
  color: var(--color-gold-hover);
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-block: var(--space-6);
}
.post-content blockquote {
  border-left: 3px solid var(--color-gold);
  padding-left: var(--space-6);
  margin-left: 0;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 300;
  color: var(--color-text);
  margin-block: var(--space-8);
}

/* Post footer */
.post-footer {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.post-author p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.post-tags a {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: border-color var(--transition-interactive), color var(--transition-interactive);
}
.post-tags a:hover {
  border-color: var(--color-gold);
  color: var(--color-text);
}

/* Post navigation */
.post-navigation {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-border);
  padding-block: clamp(var(--space-8), 5vw, var(--space-16));
}
.post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
.post-navigation a {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  text-decoration: none;
  padding: var(--space-5) var(--space-6);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-interactive), transform var(--transition-interactive);
}
.post-navigation a:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
}
.nav-direction {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.nav-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.4;
}
.nav-next {
  text-align: right;
  margin-left: auto;
}
@media (max-width: 600px) {
  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }
  .nav-next {
    text-align: left;
  }
}
