/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,500;0,700;1,300;1,500&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ===== CSS 变量 ===== */
:root {
  --green: #87ff71;
  --amber: #ffce5c;
  --dark: #192617;
  --dark-80: rgba(25,38,23,0.80);
  --green-dim: #5dcf47;
  --amber-dim: #e0b040;
  --off-white: #f5f2e8;
  --border: #87ff71;
  --text: #192617;
  --text-inv: #f5f2e8;
  --font-head: 'Cormorant Garamond', 'Crimson Pro', Georgia, serif;
  --font-body: 'Crimson Pro', 'Cormorant Garamond', Georgia, serif;
  --font-ui: system-ui, -apple-system, sans-serif;
  --nav-h: 68px;
  --anchor-h: 44px;
  --radius: 0;
  --max-w: 1200px;
  --prose-w: 720px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--amber); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== Page Wrapper ===== */
.page-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* ===== Memphis Decorative ===== */
.memphis-bar {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0px, var(--green) 24px,
    var(--amber) 24px, var(--amber) 48px,
    var(--dark) 48px, var(--dark) 72px
  );
}
.memphis-bar--top { position: relative; z-index: 10; }

.memphis-dots {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--green) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.25;
}
.memphis-dots--amber {
  background-image: radial-gradient(var(--amber) 2px, transparent 2px);
}
.memphis-dots--green {
  background-image: radial-gradient(var(--green) 2px, transparent 2px);
}

.memphis-stripe {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(135,255,113,0.12) 6px,
    rgba(135,255,113,0.12) 12px
  );
}
.memphis-stripe--green {
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(135,255,113,0.18) 6px,
    rgba(135,255,113,0.18) 12px
  );
}
.memphis-stripe--amber {
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(255,206,92,0.15) 6px,
    rgba(255,206,92,0.15) 12px
  );
}

/* Geometric shapes */
.geo-circle {
  display: block;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 4px solid var(--green);
}
.geo-circle--lg { width: 140px; height: 140px; }
.geo-tri {
  display: block;
  width: 0; height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid var(--amber);
}
.geo-tri--ch { border-bottom-color: var(--green); }
.geo-sqr {
  display: block;
  width: 60px; height: 60px;
  border: 4px dashed var(--amber);
  transform: rotate(20deg);
}

/* Zigzag divider */
.hero-zigzag {
  position: relative;
  height: 32px;
  background: var(--dark);
  overflow: hidden;
}
.hero-zigzag::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 32px;
  background:
    linear-gradient(135deg, var(--green) 25%, transparent 25%) -16px 0,
    linear-gradient(225deg, var(--green) 25%, transparent 25%) -16px 0,
    linear-gradient(315deg, var(--green) 25%, transparent 25%),
    linear-gradient(45deg,  var(--green) 25%, transparent 25%);
  background-size: 32px 32px;
  background-color: var(--dark);
}
.hero-zigzag--sm { height: 20px; }
.hero-zigzag--sm::before { height: 20px; background-size: 20px 20px; }
.hero-zigzag--amber::before { background-color: transparent;
  background:
    linear-gradient(135deg, var(--amber) 25%, transparent 25%) -16px 0,
    linear-gradient(225deg, var(--amber) 25%, transparent 25%) -16px 0,
    linear-gradient(315deg, var(--amber) 25%, transparent 25%),
    linear-gradient(45deg,  var(--amber) 25%, transparent 25%);
  background-size: 32px 32px;
}

/* ===== Header & Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 2px solid var(--green);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
}
.main-nav {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 0.5rem;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.nav-right { justify-content: flex-end; }
.brand-center {
  flex: 0 0 auto;
  padding: 0 1rem;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.brand-link:hover { color: var(--amber); }
.brand-logo { height: 36px; width: auto; }
.brand-name { line-height: 1; }

.nav-link {
  color: var(--off-white);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.55rem 0.6rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  letter-spacing: 0.02em;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav-link:hover,
.nav-link--active {
  color: var(--green);
  border-color: var(--green);
  background: rgba(135,255,113,0.07);
}

/* Nav search */
.nav-search {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--green);
  background: transparent;
  overflow: hidden;
  margin-left: 0.5rem;
}
.nav-search__input {
  background: transparent;
  color: var(--off-white);
  border: none;
  outline: none;
  padding: 0.45rem 0.6rem;
  font-size: 0.8rem;
  width: 120px;
  min-height: 40px;
}
.nav-search__input::placeholder { color: rgba(245,242,232,0.4); }
.nav-search__btn {
  background: var(--green);
  color: var(--dark);
  border: none;
  padding: 0.45rem 0.7rem;
  min-height: 40px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}
.nav-search__btn:hover { background: var(--amber); }

/* ===== Sticky Anchor Bar ===== */
.sticky-anchor-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: var(--dark);
  border-bottom: 2px solid var(--amber);
  height: var(--anchor-h);
}
.anchor-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.anchor-bar-inner::-webkit-scrollbar { display: none; }
.anchor-link {
  color: rgba(245,242,232,0.7);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  padding: 0.4rem 0.8rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.anchor-link:hover,
.anchor-link--active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

/* ===== Eyebrow / Tags ===== */
.eyebrow-tag {
  display: inline-block;
  background: var(--green);
  color: var(--dark);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.8rem;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
}

.eyebrow-small {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* ===== Hero Section (Home) ===== */
.hero-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding-top: 0;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  min-height: 45vh;
}
.hero-text {
  flex: 1;
  min-width: 0;
}
.hero-eyebrow { margin-bottom: 1rem; }
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(245,242,232,0.82);
  margin-bottom: 1.8rem;
  max-width: 480px;
}
.hero-cta {
  display: inline-block;
  background: var(--green);
  color: var(--dark);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  min-height: 44px;
  letter-spacing: 0.06em;
  border: 2px solid var(--green);
  transition: background 0.2s, color 0.2s;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}
.hero-cta:hover {
  background: transparent;
  color: var(--green);
}
.hero-media {
  flex: 0 0 40%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  width: 100%;
  border: 2px solid var(--green);
  object-fit: cover;
  max-height: 320px;
}
.hero-placeholder {
  width: 280px; height: 220px;
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    -45deg,
    rgba(135,255,113,0.06),
    rgba(135,255,113,0.06) 6px,
    transparent 6px,
    transparent 12px
  );
}
.hero-deco-tri {
  position: absolute;
  top: -20px; right: -20px;
  width: 0; height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid var(--amber);
  opacity: 0.5;
  transform: rotate(15deg);
}

/* ===== Content Sections ===== */
.content-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  gap: 2.5rem;
  position: relative;
}

.section-inner { flex: 1; min-width: 0; }
.section-inner--articles { flex: 1; }

.section-deco-fig {
  flex: 0 0 0;
  position: absolute;
  left: 0; top: 0;
  width: 60px; height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* ===== Channel Cards ===== */
.channels-section {
  flex-direction: column;
  align-items: stretch;
  position: relative;
  background: rgba(135,255,113,0.03);
  border-top: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
}
.channels-section .section-inner { width: 100%; }
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.channel-card {
  border: 2px solid var(--green);
  background: var(--dark);
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.channel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s;
}
.channel-card:hover::before { transform: scaleY(1); }
.channel-card:hover { border-color: var(--amber); transform: translateY(-3px); }
.channel-card__link {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  color: var(--off-white);
  height: 100%;
}
.channel-card__tag {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--amber);
  padding: 0.1rem 0.5rem;
  display: inline-block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}
.channel-card__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.channel-card__desc {
  font-size: 0.9rem;
  color: rgba(245,242,232,0.7);
  flex: 1;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.channel-card__arrow {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--amber);
  font-weight: 600;
}

/* ===== Articles List ===== */
.articles-section {
  background: rgba(255,206,92,0.04);
  border-bottom: 2px solid var(--amber);
}
.articles-aside {
  flex: 0 0 220px;
  order: -1;
}
.articles-list {
  display: grid;
  gap: 0;
}
.articles-list__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.75rem 0 0.25rem;
  border-top: 1px solid rgba(135,255,113,0.2);
}
.articles-list__title a { color: var(--off-white); }
.articles-list__title a:hover { color: var(--green); }
.articles-list__desc {
  font-size: 0.9rem;
  color: rgba(245,242,232,0.65);
  padding-bottom: 0.75rem;
  line-height: 1.5;
}

/* ===== Prose (main content) ===== */
.main-content-section { align-items: flex-start; }
.prose-wrap {
  flex: 1;
  min-width: 0;
}
.prose-wrap--wide { max-width: var(--prose-w); flex: 1; }
.prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245,242,232,0.88);
}
.prose h2, .prose h3, .prose h4 {
  font-family: var(--font-head);
  color: var(--green);
  margin: 1.5rem 0 0.6rem;
  line-height: 1.25;
}
.prose h2 { font-size: 1.5rem; }
.prose h3 { font-size: 1.2rem; }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol {
  margin: 0.75rem 0 1rem 1.5rem;
  list-style: disc;
}
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--green); border-bottom: 1px dotted var(--green); }
.prose a:hover { color: var(--amber); border-bottom-color: var(--amber); }
.prose strong { color: var(--amber); font-weight: 600; }
.prose blockquote {
  border-left: 4px solid var(--green);
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  background: rgba(135,255,113,0.06);
  color: rgba(245,242,232,0.75);
  font-style: italic;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}
.prose th {
  background: var(--green);
  color: var(--dark);
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-weight: 700;
}
.prose td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid rgba(135,255,113,0.15);
}
.prose--article { font-size: 1.08rem; }
.prose--legal { font-size: 1rem; }

/* ===== Aside (sidebar) ===== */
.prose-aside {
  flex: 0 0 220px;
  border: 2px solid var(--amber);
  padding: 1.25rem;
  align-self: flex-start;
  position: sticky;
  top: calc(var(--nav-h) + var(--anchor-h) + 1rem);
  background: rgba(255,206,92,0.04);
}
.prose-aside--article { border-color: var(--green); background: rgba(135,255,113,0.04); }
.aside-h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}
.aside-links { display: flex; flex-direction: column; gap: 0.35rem; }
.aside-links li a {
  color: rgba(245,242,232,0.75);
  font-size: 0.9rem;
  display: block;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(135,255,113,0.1);
  transition: color 0.2s, padding-left 0.2s;
}
.aside-links li a:hover { color: var(--green); padding-left: 0.4rem; }
.aside-text {
  font-size: 0.88rem;
  color: rgba(245,242,232,0.65);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.aside-more {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 0.35rem 0.9rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, color 0.2s;
}
.aside-more:hover { background: var(--amber); color: var(--dark); }
.section-aside {
  flex: 0 0 220px;
  border: 2px solid var(--green);
  padding: 1.25rem;
  align-self: flex-start;
  background: rgba(135,255,113,0.03);
}

/* ===== Child List (dl > dt > a + dd) ===== */
.child-list {
  display: grid;
  gap: 0;
  margin-top: 0.5rem;
}
.child-list__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.75rem 0 0.2rem;
  border-top: 1px solid rgba(135,255,113,0.2);
}
.child-list__title a { color: var(--off-white); }
.child-list__title a:hover { color: var(--green); }
.child-list__desc {
  font-size: 0.88rem;
  color: rgba(245,242,232,0.6);
  padding-bottom: 0.75rem;
  line-height: 1.5;
}

/* ===== Channel Hero ===== */
.channel-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--green);
}
.channel-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.5rem;
  position: relative;
  z-index: 2;
}
.channel-hero__badge {
  display: inline-block;
  background: var(--amber);
  color: var(--dark);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.channel-hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.channel-hero__desc {
  font-size: 1rem;
  color: rgba(245,242,232,0.75);
  max-width: 560px;
  margin-bottom: 1rem;
}
.channel-hero__back {
  display: inline-flex;
  align-items: center;
  color: var(--amber);
  font-size: 0.85rem;
  min-height: 40px;
}
.channel-hero__deco {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0.35;
  pointer-events: none;
}

/* ===== Channel Content ===== */
.channel-content-section { align-items: flex-start; }
.children-section {
  background: rgba(135,255,113,0.03);
  border-top: 2px solid var(--green);
  align-items: flex-start;
}
.children-aside {
  flex: 0 0 220px;
  border: 2px dashed var(--green);
  padding: 1.25rem;
  align-self: flex-start;
  background: rgba(135,255,113,0.03);
}

/* ===== Article ===== */
.article-header-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--amber);
}
.article-header-fig {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.article-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2rem;
  position: relative;
  z-index: 2;
}
.article-breadcrumb {
  font-size: 0.82rem;
  color: rgba(245,242,232,0.5);
  margin-bottom: 0.75rem;
}
.article-breadcrumb a { color: rgba(245,242,232,0.6); }
.article-breadcrumb a:hover { color: var(--amber); }
.article-tags { margin-bottom: 0.75rem; }
.article-tag {
  display: inline-block;
  background: var(--green);
  color: var(--dark);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.1rem 0.6rem;
  letter-spacing: 0.08em;
}
.article-h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.article-lead {
  font-size: 1.05rem;
  color: rgba(245,242,232,0.75);
  max-width: 640px;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.article-meta, .content-meta {
  font-size: 0.82rem;
  color: rgba(245,242,232,0.45);
  margin-top: 0.5rem;
}
.article-date { font-size: 0.82rem; color: rgba(245,242,232,0.45); }

.article-body-section { align-items: flex-start; }
.article-body-main { flex: 1; min-width: 0; }
.article-hero-figure {
  margin-bottom: 1.5rem;
  border: 2px solid var(--green);
}
.article-hero-img { width: 100%; height: auto; }

/* ===== About Page ===== */
.about-hero-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--green);
}
.about-hero-fig {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2rem;
  overflow: hidden;
}
.about-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  position: relative;
  z-index: 2;
}
.about-eyebrow { margin-bottom: 1rem; }
.about-h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.about-lead {
  font-size: 1.05rem;
  color: rgba(245,242,232,0.75);
  max-width: 560px;
}
.about-content-section { align-items: flex-start; }

/* ===== Privacy Page ===== */
.privacy-header-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--amber);
}
.privacy-header-fig {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.privacy-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2rem;
  position: relative;
  z-index: 2;
}
.privacy-h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--amber);
  margin: 0.75rem 0;
  line-height: 1.2;
}
.privacy-lead {
  font-size: 1rem;
  color: rgba(245,242,232,0.7);
  max-width: 560px;
}
.privacy-content-section { align-items: flex-start; }

/* ===== Footer ===== */
.site-footer {
  background: #0e1a0c;
  border-top: 4px solid var(--green);
  padding: 1.5rem 1.5rem 1rem;
  margin-top: auto;
  position: relative;
}
.footer-memphis {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0, var(--green) 16px,
    var(--amber) 16px, var(--amber) 32px,
    var(--dark) 32px, var(--dark) 48px
  );
}

/* footer nav: nav > dl > dt/dd > a */
.footer-nav {
  max-width: var(--max-w);
  margin: 0 auto 1rem;
}
.footer-nav-dl {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0;
  align-items: center;
}
.footer-nav-dl dt {
  display: inline;
}
.footer-nav-dl dt a {
  color: rgba(245,242,232,0.6);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  padding: 0.4rem 0.75rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer-nav-dl dt a:hover {
  color: var(--green);
  border-color: rgba(135,255,113,0.3);
}
.footer-nav-dl dd {
  width: 100%;
  font-size: 0.76rem;
  color: rgba(245,242,232,0.3);
  padding: 0.25rem 0.75rem 0;
  font-style: italic;
}

.footer-brand {
  max-width: var(--max-w);
  margin: 0 auto 0.4rem;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--green);
}
.footer-copy {
  display: block;
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.78rem;
  color: rgba(245,242,232,0.3);
}

/* ===== Hover micro-interactions ===== */
@media (prefers-reduced-motion: no-preference) {
  .channel-card {
    transition: border-color 0.22s, transform 0.22s;
  }
  .channel-card:hover {
    transform: translateY(-4px) rotate(-0.3deg);
  }
  .hero-cta {
    transition: background 0.2s, color 0.2s, transform 0.15s;
  }
  .hero-cta:hover {
    transform: translateX(3px);
  }
  .nav-link {
    transition: color 0.2s, border-color 0.2s, background 0.2s;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    padding: 2rem 1rem 1.5rem;
    min-height: auto;
  }
  .hero-media { width: 100%; flex: none; }
  .hero-deco-tri { display: none; }
  .content-section {
    flex-direction: column;
    padding: 2rem 1rem;
  }
  .prose-aside, .section-aside, .children-aside, .articles-aside {
    flex: none;
    width: 100%;
    position: static;
  }
  .channels-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .channel-hero__deco { display: none; }
  .about-hero-fig { display: none; }
}

@media (max-width: 640px) {
  .main-nav {
    flex-wrap: wrap;
    height: auto;
    padding: 0.5rem 0;
    gap: 0.25rem;
  }
  .nav-left, .nav-right { flex: 0 1 auto; }
  .brand-center { order: -1; width: 100%; text-align: center; padding: 0.4rem 0; }
  .brand-name { font-size: 1.15rem; }
  .nav-link { font-size: 0.75rem; padding: 0.45rem 0.4rem; }
  .nav-search { margin-left: 0; }
  .nav-search__input { width: 90px; }

  .hero-inner { padding: 1.5rem 1rem 1rem; }
  .hero-h1 { font-size: 1.7rem; }

  .channels-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  .footer-nav-dl { flex-direction: column; align-items: flex-start; }
  .footer-nav-dl dt a { padding: 0.35rem 0.5rem; }

  .article-header-inner,
  .channel-hero__inner,
  .about-hero-inner,
  .privacy-header-inner {
    padding: 1.5rem 1rem 1rem;
  }

  .content-section { padding: 1.5rem 1rem; gap: 1.5rem; }
}

@media (max-width: 375px) {
  html { font-size: 16px; }
  .channels-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 1.5rem; }
  .section-h2 { font-size: 1.4rem; }
}
