@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni:wght@400;500;600;700&family=Public+Sans:wght@300;400;500;600;700&display=swap');

/* ===== CSS 变量 ===== */
:root {
  --parchment: #f5e6c8;
  --caramel: #d4a574;
  --espresso: #262117;
  --espresso-80: rgba(38,33,23,0.85);
  --espresso-40: rgba(38,33,23,0.4);
  --parchment-60: rgba(245,230,200,0.6);
  --caramel-light: #e8c99a;
  --caramel-dark: #b8864e;
  --warm-white: #fdf6e3;
  --text-main: #2a1f0e;
  --text-muted: #7a6040;
  --font-headline: 'Libre Bodoni', Georgia, serif;
  --font-body: 'Public Sans', system-ui, -apple-system, sans-serif;
  --radius: 10px;
  --gap: 1.5rem;
  --max-w: 1200px;
  --prose-w: 720px;
  --transition: 0.3s ease;
}

/* ===== 重置 & 基础 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--espresso);
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--caramel); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--parchment); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ===== Film Grain Overlay ===== */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ===== Light Leak ===== */
.light-leak {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(ellipse 60% 40% at 90% 5%, rgba(212,165,116,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 40% 30% at 5% 95%, rgba(245,230,200,0.10) 0%, transparent 60%);
  animation: lightLeakPulse 8s ease-in-out infinite alternate;
}
.light-leak-subtle {
  opacity: 0.6;
  animation: lightLeakPulse 12s ease-in-out infinite alternate;
}
@keyframes lightLeakPulse {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.02); }
}

/* ===== Polaroid Frame ===== */
.polaroid-frame {
  background: var(--warm-white);
  padding: 8px 8px 28px;
  box-shadow: 3px 4px 18px rgba(0,0,0,0.45), 0 0 0 1px rgba(245,230,200,0.12);
  position: relative;
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease;
}
.polaroid-frame:hover { transform: rotate(0deg) scale(1.01); }
.polaroid-frame img { width: 100%; display: block; filter: sepia(0.25) contrast(1.05) saturate(0.85); }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--espresso);
  border-bottom: 1px solid rgba(212,165,116,0.25);
}
.header-announce {
  background: var(--caramel);
  color: var(--espresso);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 1rem;
  text-transform: uppercase;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
}
.brand-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-mark { width: 36px; height: 36px; object-fit: contain; }
.logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--caramel);
  color: var(--espresso);
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: -0.02em;
}
.site-nav { flex: 1; overflow: hidden; }
.site-nav ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.1rem;
  align-items: center;
}
.site-nav ol li a {
  display: block;
  color: var(--parchment);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.55rem 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
  min-height: 40px;
  display: flex;
  align-items: center;
}
.site-nav ol li a:hover {
  background: rgba(212,165,116,0.18);
  color: var(--caramel);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--parchment);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Breadcrumb ===== */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--caramel); }
.breadcrumb a:hover { color: var(--parchment); }
.breadcrumb span { color: var(--parchment); opacity: 0.7; }

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.6rem;
  background: var(--caramel);
  color: var(--espresso);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: 4px;
  min-height: 44px;
  transition: background var(--transition), transform 0.2s;
  text-transform: uppercase;
}
.btn-primary:hover { background: var(--caramel-light); color: var(--espresso); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.6rem;
  border: 1px solid rgba(212,165,116,0.5);
  color: var(--caramel);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: 4px;
  min-height: 44px;
  transition: border-color var(--transition), background var(--transition);
  text-transform: uppercase;
}
.btn-ghost:hover { border-color: var(--caramel); background: rgba(212,165,116,0.1); color: var(--parchment); }

/* ===== Glass Card ===== */
.glass-card {
  background: rgba(245,230,200,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212,165,116,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

/* ===== HOME: Hero ===== */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 45vh;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  gap: 3rem;
  position: relative;
}
.hero-text {
  text-align: right;
  animation: fadeInRight 0.8s ease both;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.75rem;
}
.hero-h1 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--parchment);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(245,230,200,0.75);
  margin-bottom: 1.5rem;
  max-width: 420px;
  margin-left: auto;
}
.hero-actions { display: flex; gap: 1rem; justify-content: flex-end; flex-wrap: wrap; }
.hero-media {
  max-width: 420px;
  animation: fadeInLeft 0.9s ease 0.2s both;
}
.hero-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: sepia(0.2) contrast(1.08) saturate(0.88); }

/* ===== Content Section ===== */
.content-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.section-content {
  max-width: var(--prose-w);
  margin: 0 auto;
}

/* ===== Topics Grid ===== */
.topics-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
.topics-section h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--parchment);
  margin-bottom: 0.4rem;
}
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.topic-card .card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.card-media { overflow: hidden; height: 180px; }
.card-media img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.2) saturate(0.85); transition: transform 0.5s ease; }
.topic-card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 1.1rem 1.25rem 1.4rem; flex: 1; }
.card-title {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 0.4rem;
}
.card-desc { font-size: 0.85rem; color: rgba(245,230,200,0.65); line-height: 1.55; margin-bottom: 0.6rem; }
.card-count { font-size: 0.75rem; color: var(--caramel); font-weight: 600; letter-spacing: 0.05em; }

/* ===== Latest Section ===== */
.latest-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
.latest-section h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--parchment);
  margin-bottom: 0.4rem;
}
.latest-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}
.articles-list { display: flex; flex-direction: column; gap: 1px; }
.article-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(212,165,116,0.15);
  animation: staggerFade 0.5s ease both;
  animation-delay: calc(var(--i, 0) * 0.08s);
}
.article-link { display: block; color: inherit; }
.article-link:hover .article-title { color: var(--caramel); }
.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.3rem;
}
.article-topic {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--caramel);
  background: rgba(212,165,116,0.12);
  padding: 2px 8px;
  border-radius: 3px;
}
.article-date { font-size: 0.75rem; color: var(--text-muted); }
.article-title {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 0.3rem;
  line-height: 1.35;
  transition: color var(--transition);
}
.article-excerpt { font-size: 0.85rem; color: rgba(245,230,200,0.6); line-height: 1.5; }

/* ===== Sidebar ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-block {
  background: rgba(245,230,200,0.04);
  border: 1px solid rgba(212,165,116,0.18);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}
.sidebar-title {
  font-family: var(--font-headline);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212,165,116,0.2);
}
.quick-links { display: flex; flex-direction: column; gap: 0; }
.quick-links li a {
  display: block;
  padding: 0.45rem 0;
  font-size: 0.85rem;
  color: rgba(245,230,200,0.75);
  border-bottom: 1px solid rgba(212,165,116,0.08);
  transition: color var(--transition), padding-left var(--transition);
  min-height: 40px;
  display: flex;
  align-items: center;
}
.quick-links li:last-child a { border-bottom: none; }
.quick-links li a:hover { color: var(--caramel); padding-left: 4px; }

/* ===== Tag Cloud ===== */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  background: rgba(212,165,116,0.12);
  border: 1px solid rgba(212,165,116,0.3);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--caramel);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  min-height: 32px;
}
.tag-pill:hover { background: var(--caramel); color: var(--espresso); }

/* ===== Subtitle (h2 + p.subtitle) ===== */
.subtitle {
  font-size: 0.95rem;
  color: rgba(245,230,200,0.6);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* ===== TOPIC page ===== */
.topic-hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: center;
  gap: 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2rem;
}
.topic-hero-text h1 {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 0.7rem;
  line-height: 1.15;
}
.topic-lead {
  font-size: 1rem;
  color: rgba(245,230,200,0.7);
  line-height: 1.6;
  max-width: 500px;
}
.topic-hero-img { max-width: 380px; }
.topic-body-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.topic-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
}
.topic-main {}
.topic-content {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212,165,116,0.15);
}
.children-section { margin-top: 1rem; }
.children-section h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--parchment);
  margin-bottom: 0.4rem;
}

/* ===== DL list ===== */
.children-dl { display: flex; flex-direction: column; gap: 0; }
.children-dl dt {
  padding: 0.9rem 0 0.2rem;
  border-top: 1px solid rgba(212,165,116,0.15);
  animation: staggerFade 0.5s ease both;
  animation-delay: calc(var(--i, 0) * 0.07s);
}
.children-dl dt:first-of-type { border-top: none; }
.children-dl dt a {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--parchment);
  transition: color var(--transition);
  line-height: 1.4;
}
.children-dl dt a:hover { color: var(--caramel); }
.children-dl dd {
  padding: 0.3rem 0 0.9rem 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.dl-media { flex-shrink: 0; width: 100px; }
.dl-img { width: 100%; height: 70px; object-fit: cover; border-radius: 4px; filter: sepia(0.2) saturate(0.85); }
.dl-desc { font-size: 0.85rem; color: rgba(245,230,200,0.65); line-height: 1.55; flex: 1; }
.dl-date { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ===== ARTICLE page ===== */
.article-header-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: center;
}
.article-h1 {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 0.7rem;
  line-height: 1.15;
}
.article-deck {
  font-size: 1rem;
  color: rgba(245,230,200,0.7);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.article-byline {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.pub-date, .mod-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: normal;
}
.article-hero { max-width: 360px; }
.article-body-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.article-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
}
.article-content-col {}
.prose {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245,230,200,0.88);
  max-width: var(--prose-w);
}
.prose h2 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--parchment);
  margin: 2rem 0 0.6rem;
}
.prose h3 {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--caramel-light);
  margin: 1.5rem 0 0.5rem;
}
.prose p { margin-bottom: 1.2rem; }
.prose ul, .prose ol { margin: 0.8rem 0 1.2rem 1.4rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--caramel); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--parchment); }
.prose img { border-radius: 6px; margin: 1rem 0; filter: sepia(0.15) saturate(0.9); }
.prose blockquote {
  border-left: 3px solid var(--caramel);
  padding: 0.5rem 1.2rem;
  margin: 1rem 0;
  color: rgba(245,230,200,0.7);
  font-style: italic;
}
.article-footer-nav { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(212,165,116,0.2); }
.back-link {
  font-size: 0.88rem;
  color: var(--caramel);
  font-weight: 600;
}
.back-link:hover { color: var(--parchment); }
.rel-date { font-size: 0.72rem; color: var(--text-muted); }
.parent-link {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--caramel);
  padding: 0.4rem 0;
}

/* ===== TAG page ===== */
.tag-header-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.5rem;
}
.tag-h1 {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}
.tag-count {
  font-size: 0.82rem;
  color: var(--caramel);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}
.tag-body-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.tag-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
}
.tag-main {}
.tag-content {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212,165,116,0.15);
}
.tag-articles h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--parchment);
  margin-bottom: 0.4rem;
}

/* ===== ABOUT page ===== */
.about-header-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2rem;
  border-bottom: 1px solid rgba(212,165,116,0.15);
}
.about-header-inner h1 {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 0.6rem;
}
.about-lead {
  font-size: 1rem;
  color: rgba(245,230,200,0.7);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 0.75rem;
}
.about-body-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
.about-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
}
.about-content-col {}
.about-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  background: rgba(245,230,200,0.04);
  border: 1px solid rgba(212,165,116,0.2);
  border-radius: var(--radius);
}
.about-cta h2 {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  color: var(--parchment);
  margin-bottom: 0.4rem;
}
.cta-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }

/* ===== PRIVACY page ===== */
.privacy-header-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2rem;
  border-bottom: 1px solid rgba(212,165,116,0.15);
}
.privacy-header-section h1 {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}
.privacy-body-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
.privacy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
}
.privacy-content-col {}

/* ===== Footer ===== */
.site-footer {
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(212,165,116,0.2);
  margin-top: auto;
}
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand-col {}
.footer-brand-big {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--caramel);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.footer-slogan {
  font-size: 0.82rem;
  color: rgba(245,230,200,0.5);
  line-height: 1.5;
  max-width: 240px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212,165,116,0.2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0; }
.footer-col ul li a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.83rem;
  color: rgba(245,230,200,0.6);
  transition: color var(--transition);
  min-height: 32px;
  display: flex;
  align-items: center;
}
.footer-col ul li a:hover { color: var(--caramel); }
.footer-col address { font-style: normal; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid rgba(212,165,116,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: rgba(245,230,200,0.4); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal li a {
  font-size: 0.78rem;
  color: rgba(245,230,200,0.45);
  min-height: 32px;
  display: flex;
  align-items: center;
}
.footer-legal li a:hover { color: var(--caramel); }

/* ===== Animations ===== */
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes staggerFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .light-leak { animation: none; }
  .polaroid-frame { transform: none !important; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: span 2; }
  .hero-section { grid-template-columns: 1fr; min-height: auto; gap: 2rem; }
  .hero-text { text-align: left; }
  .hero-actions { justify-content: flex-start; }
  .hero-media { max-width: 320px; }
  .topic-hero { grid-template-columns: 1fr; }
  .topic-hero-img { max-width: 300px; }
  .article-header-section { grid-template-columns: 1fr; }
  .article-hero { max-width: 100%; }
  .latest-layout,
  .topic-layout,
  .article-layout,
  .tag-layout,
  .about-layout,
  .privacy-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    order: 2;
  }
  .topic-main,
  .article-content-col,
  .tag-main,
  .about-content-col,
  .privacy-content-col,
  .articles-col {
    order: 1;
  }
}

@media (max-width: 600px) {
  .site-nav { display: none; overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
  .site-nav.open { display: flex; max-height: 600px; }
  .site-nav ol { flex-direction: column; padding: 0.75rem 0; }
  .site-nav ol li a { padding: 0.7rem 1rem; font-size: 0.9rem; }
  .nav-toggle { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .site-nav {
    order: 3;
    width: 100%;
    display: none;
  }
  .site-nav.open {
    display: block;
  }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand-col { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .topics-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 1.85rem; }
  .children-dl dd { flex-direction: column; }
  .dl-media { width: 100%; }
  .dl-img { height: 160px; width: 100%; }
  .cta-links { flex-direction: column; }
}

@media (max-width: 375px) {
  body { font-size: 16px; }
  .header-inner { padding: 0.5rem 1rem; }
  .hero-section { padding: 1.5rem 1rem; }
  .hero-h1 { font-size: 1.6rem; }
  .latest-section, .topics-section, .content-section { padding-left: 1rem; padding-right: 1rem; }
  .topic-body-section, .article-body-section, .tag-body-section, .about-body-section, .privacy-body-section { padding-left: 1rem; padding-right: 1rem; }
  .footer-top { padding: 2rem 1rem 1.5rem; }
}

/* ===== Stagger Items via JS class ===== */
.stagger-list-ready .stagger-item {
  animation: staggerFade 0.5s ease both;
}
