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

/* ============================================
   RESET & FOUNDATION
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: var(--leading-tight);
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-6);
}

p:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: 600;
}

em, i {
  font-style: italic;
}

blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-6);
  margin: var(--space-10) 0;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: var(--container-prose);
}

.container-wide {
  max-width: var(--container-2xl);
}

.section {
  padding: var(--space-24) 0;
}

.section-sm {
  padding: var(--space-16) 0;
}

.section-lg {
  padding: var(--space-32) 0;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--duration-300) var(--ease-out);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  opacity: 0;
  transition: opacity var(--duration-300) var(--ease-out);
}

.header.scrolled::after {
  opacity: 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: var(--tracking-wide);
  transition: opacity var(--duration-200) var(--ease-out);
}

.logo:hover {
  opacity: 0.7;
}

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

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  padding: var(--space-2) 0;
  position: relative;
  transition: color var(--duration-200) var(--ease-out);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--duration-300) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: all var(--duration-200) var(--ease-out);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: var(--space-8) var(--space-6);
    gap: var(--space-6);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-link {
    font-size: var(--text-base);
  }
}

/* Header spacer */
.header-spacer {
  height: 88px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-dark);
  overflow: hidden;
}

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

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 37, 64, 0.6) 0%,
    rgba(14, 37, 64, 0.8) 50%,
    rgba(14, 37, 64, 0.95) 100%
  );
  z-index: 1;
}

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

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-8);
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  line-height: var(--leading-snug);
  color: white;
  margin-bottom: var(--space-8);
  position: relative;
  padding: 0 var(--space-8);
}

.hero-title::before,
.hero-title::after {
  font-family: Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-style: normal;
  opacity: 0.15;
  position: absolute;
  line-height: 1;
}

.hero-title::before {
  content: '\201C';
  top: -0.3em;
  left: 0;
}

.hero-title::after {
  content: '\201D';
  bottom: -0.5em;
  right: 0;
}

.hero-attribution {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-12);
}

.hero-attribution strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

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

.hero-scroll {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { 
    opacity: 0.4; 
    transform: scaleY(1); 
  }
  50% { 
    opacity: 0.8; 
    transform: scaleY(1.15); 
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--duration-200) var(--ease-out);
}

.btn-primary {
  background: var(--color-accent);
  color: white;
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-dark {
  background: var(--color-text);
  color: white;
}

.btn-dark:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  padding: var(--space-2) 0;
}

.btn-ghost:hover {
  color: var(--color-accent);
}

.btn-ghost svg {
  transition: transform var(--duration-200) var(--ease-out);
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-16);
}

.section-eyebrow {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-5);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

/* ============================================
   FEATURED ARTICLES GRID
   ============================================ */

.section-featured {
  background: var(--color-surface);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: var(--space-6);
}

.featured-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-primary-dark);
}

.featured-item:nth-child(1) {
  grid-column: span 6;
  grid-row: span 2;
}

.featured-item:nth-child(2) {
  grid-column: span 6;
}

.featured-item:nth-child(3) {
  grid-column: span 3;
}

.featured-item:nth-child(4) {
  grid-column: span 3;
}

.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-700) var(--ease-out);
}

.featured-item:hover img {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-8);
  transition: background var(--duration-300) var(--ease-out);
}

.featured-item:hover .featured-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.featured-category {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-3);
}

.featured-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 500;
  color: white;
  line-height: var(--leading-snug);
  margin-bottom: var(--space-2);
  transition: color var(--duration-200) var(--ease-out);
}

.featured-item:nth-child(1) .featured-title {
  font-size: var(--text-3xl);
}

.featured-item:hover .featured-title {
  color: var(--color-accent-light);
}

.featured-meta {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

.featured-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

@media (max-width: 992px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 350px repeat(2, 250px);
  }
  
  .featured-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .featured-item:nth-child(2),
  .featured-item:nth-child(3),
  .featured-item:nth-child(4) {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .featured-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 280px);
  }
  
  .featured-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

/* ============================================
   PHILOSOPHY / VALUES SECTION
   ============================================ */

.section-philosophy {
  background: var(--color-background);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-10);
}

.philosophy-card {
  text-align: center;
  padding: var(--space-8);
}

.philosophy-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--radius-full);
  color: white;
  box-shadow: var(--shadow-md);
}

.philosophy-icon svg {
  width: 32px;
  height: 32px;
}

.philosophy-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.philosophy-text {
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

@media (max-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* ============================================
   ARTICLES GRID
   ============================================ */

.section-articles {
  background: var(--color-background);
}

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

.article-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-300) var(--ease-out);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.article-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-500) var(--ease-out);
}

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

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

.article-card-category {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.article-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: var(--leading-snug);
  margin-bottom: var(--space-3);
}

.article-card-title a {
  color: var(--color-text);
  transition: color var(--duration-200) var(--ease-out);
}

.article-card-title a:hover {
  color: var(--color-primary);
}

.article-card-excerpt {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.article-card-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

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

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

/* ============================================
   CTA SECTION
   ============================================ */

.section-cta {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-size: var(--text-3xl);
  color: white;
  margin-bottom: var(--space-5);
}

.cta-text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-10);
  line-height: var(--leading-relaxed);
}

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

.cta-features {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  margin-top: var(--space-12);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}

.cta-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-feature-icon svg {
  width: 14px;
  height: 14px;
  color: white;
}

@media (max-width: 768px) {
  .cta-features {
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--color-secondary);
  color: white;
  padding: var(--space-20) 0 var(--space-10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-brand .logo {
  color: white;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
  display: inline-block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  max-width: 320px;
}

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

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration-200) var(--ease-out);
}

.footer-social a:hover {
  background: var(--color-accent);
  color: white;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--space-6);
}

.footer-column ul li {
  margin-bottom: var(--space-3);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-base);
  transition: color var(--duration-200) var(--ease-out);
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: var(--text-sm);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-8);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.35);
  font-size: var(--text-sm);
  transition: color var(--duration-200) var(--ease-out);
}

.footer-legal a:hover {
  color: white;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    gap: var(--space-6);
  }
}

/* ============================================
   SINGLE ARTICLE
   ============================================ */

.article-header {
  padding: var(--space-16) 0 var(--space-12);
  background: var(--color-surface);
}

.article-header .container {
  max-width: var(--container-lg);
}

.article-meta-top {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
}

.article-meta-top a {
  color: var(--color-accent);
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.article-meta-top span {
  color: var(--color-text-muted);
}

.article-meta-divider {
  width: 4px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--color-text-light);
}

.article-title-single {
  font-size: clamp(2rem, 4vw, var(--text-5xl));
  font-weight: 500;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
  max-width: 900px;
}

.article-excerpt-single {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  max-width: 720px;
}

.article-hero-image {
  margin: 0 auto;
  max-width: var(--container-xl);
  padding: 0 var(--space-6);
}

.article-hero-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

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

.article-content h2 {
  font-size: var(--text-3xl);
  margin: var(--space-14) 0 var(--space-6);
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  font-size: var(--text-2xl);
  margin: var(--space-10) 0 var(--space-5);
}

.article-content p {
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-6);
}

.article-content ul,
.article-content ol {
  margin: var(--space-6) 0;
  padding-left: var(--space-8);
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}

.article-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content a:hover {
  color: var(--color-accent);
}

.article-content blockquote {
  margin: var(--space-10) 0;
  padding: var(--space-8);
  background: var(--color-background);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.article-content blockquote p {
  margin-bottom: 0;
}

.article-content img {
  margin: var(--space-10) 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .article-content p,
  .article-content li {
    font-size: var(--text-base);
  }
}

/* ============================================
   ARCHIVE / LIST
   ============================================ */

.archive-header {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: white;
  text-align: center;
}

.archive-header h1 {
  font-size: var(--text-4xl);
  color: white;
  margin-bottom: var(--space-4);
}

.archive-header p {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

.archive-content {
  padding: var(--space-20) 0;
  background: var(--color-background);
}

/* ============================================
   PAGE CONTENT
   ============================================ */

.page-header {
  padding: var(--space-16) 0 var(--space-12);
  background: var(--color-surface);
  text-align: center;
}

.page-header h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.page-header p {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.page-content h2 {
  font-size: var(--text-2xl);
  margin: var(--space-12) 0 var(--space-6);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: var(--text-xl);
  margin: var(--space-8) 0 var(--space-4);
}

.page-content p {
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-6);
}

.page-content ul,
.page-content ol {
  margin: var(--space-6) 0;
  padding-left: var(--space-8);
}

.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }

.page-content li {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}

.page-content hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-12) 0;
}

/* ============================================
   UTILITIES
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s var(--ease-out) forwards;
}

.stagger > * {
  opacity: 0;
  animation: fadeInUp 0.6s var(--ease-out) forwards;
}

.stagger > *:nth-child(1) { animation-delay: 0.1s; }
.stagger > *:nth-child(2) { animation-delay: 0.2s; }
.stagger > *:nth-child(3) { animation-delay: 0.3s; }
.stagger > *:nth-child(4) { animation-delay: 0.4s; }
.stagger > *:nth-child(5) { animation-delay: 0.5s; }
.stagger > *:nth-child(6) { animation-delay: 0.6s; }
