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

/* ===== 变量与基础 ===== */
:root {
  --c-bg: #1a1a2e;
  --c-bg2: #16213e;
  --c-bg3: #0f3460;
  --c-red: #e63946;
  --c-red-dim: rgba(230,57,70,0.15);
  --c-cream: #f1faee;
  --c-cream-dim: rgba(241,250,238,0.65);
  --c-cream-faint: rgba(241,250,238,0.08);
  --c-border: rgba(241,250,238,0.12);
  --font-main: 'Figtree', 'Noto Sans', system-ui, -apple-system, sans-serif;
  --radius: 0;
  --nav-h: 56px;
  --bottom-bar-h: 60px;
  --prose-max: 820px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-cream);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

body.dark-theme {
  background: var(--c-bg);
  color: var(--c-cream);
}

a {
  color: var(--c-red);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}
a:hover { color: var(--c-cream); opacity: 0.9; }
a:focus-visible { outline: 2px solid var(--c-red); outline-offset: 3px; }

img { max-width: 100%; height: auto; display: block; }

/* ===== 页面包装 ===== */
.page-wrap {
  min-height: 100vh;
  padding-top: var(--nav-h);
  padding-bottom: var(--bottom-bar-h);
}

/* ===== 顶部 Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(26,26,46,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  z-index: 200;
  will-change: transform;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--c-red);
  color: var(--c-cream);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon:hover { opacity: 0.85; color: var(--c-cream); }
.brand-mark { line-height: 1; }

/* ===== 汉堡按钮 ===== */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  min-height: 44px;
  align-items: flex-end;
  box-sizing: content-box;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--c-cream);
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  width: 30px;
}
.hamburger span:nth-child(2) { width: 20px; }
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); width: 30px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); width: 30px; }

/* ===== 全屏菜单 ===== */
.fullscreen-nav {
  position: fixed;
  inset: 0;
  background: rgba(15,15,30,0.98);
  backdrop-filter: blur(20px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.fullscreen-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.fn-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.nav-a {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--c-cream);
  padding: 14px 40px;
  min-height: 54px;
  line-height: 1.4;
  border-bottom: 1px solid var(--c-border);
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.nav-a:last-child { border-bottom: none; }
.nav-a:hover, .nav-a[aria-current="page"] { color: var(--c-red); }

.fn-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--c-cream-dim);
  font-size: 1.6rem;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}
.fn-close:hover { color: var(--c-red); }

/* ===== 底部固定导航条 ===== */
.bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--bottom-bar-h);
  background: rgba(22,33,62,0.97);
  border-top: 1px solid var(--c-border);
  display: flex;
  align-items: stretch;
  z-index: 150;
  backdrop-filter: blur(10px);
}
.bb-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--c-cream-dim);
  text-decoration: none;
  font-size: 0.7rem;
  min-height: 44px;
  padding: 8px 4px;
  transition: color var(--transition), background var(--transition);
  border-right: 1px solid var(--c-border);
}
.bb-item:last-child { border-right: none; }
.bb-item:hover, .bb-item.active { color: var(--c-red); background: var(--c-red-dim); }
.bb-icon { font-size: 1.2rem; line-height: 1; }
.bb-label { font-size: 0.65rem; letter-spacing: 0.02em; }

/* ===== 通用组件 ===== */
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--c-red);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.prose-wrap {
  max-width: var(--prose-max);
  margin: 0 auto;
  padding: 0 20px;
}

.prose-wrap h2 { font-size: 1.4rem; font-weight: 600; margin: 2rem 0 0.8rem; color: var(--c-cream); }
.prose-wrap h3 { font-size: 1.15rem; font-weight: 600; margin: 1.6rem 0 0.6rem; }
.prose-wrap p { margin-bottom: 1.1rem; color: var(--c-cream-dim); }
.prose-wrap ul, .prose-wrap ol { padding-left: 1.5rem; margin-bottom: 1.1rem; color: var(--c-cream-dim); }
.prose-wrap li { margin-bottom: 0.4rem; }
.prose-wrap a { color: var(--c-red); border-bottom: 1px solid transparent; transition: border-color var(--transition); }
.prose-wrap a:hover { border-bottom-color: var(--c-red); }
.prose-wrap table { width: 100%; border-collapse: collapse; margin-bottom: 1.2rem; font-size: 0.9rem; }
.prose-wrap table th, .prose-wrap table td { border: 1px solid var(--c-border); padding: 8px 12px; text-align: left; }
.prose-wrap table th { background: var(--c-bg2); font-weight: 600; }
.prose-wrap strong { color: var(--c-cream); font-weight: 600; }

.btn-primary {
  display: inline-block;
  background: var(--c-red);
  color: var(--c-cream) !important;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  min-height: 48px;
  line-height: 1.3;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: #c62b36; transform: translateY(-2px); color: var(--c-cream); opacity: 1; }

.breadcrumb-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--c-cream-dim);
  margin-bottom: 16px;
}
.breadcrumb-row a { color: var(--c-cream-dim); }
.breadcrumb-row a:hover { color: var(--c-red); }
.bc-sep { color: var(--c-red); }

/* ===== Hero 首页 ===== */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 20px 60px;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.layer-1 {
  background: linear-gradient(135deg, var(--c-bg) 0%, var(--c-bg3) 60%, #1a0a15 100%);
  transform: translateZ(0);
}
.layer-2 {
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(230,57,70,0.18) 0%, transparent 70%);
  transform: translateY(0);
  transition: transform 0.1s linear;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-right: auto;
}
.hero-badge {
  display: inline-block;
  background: var(--c-red-dim);
  border: 1px solid var(--c-red);
  color: var(--c-red);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--c-cream);
}
.hero-sub {
  font-size: 1rem;
  color: var(--c-cream-dim);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

/* 双图错位拼贴 */
.hero-collage {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  z-index: 1;
}
.collage-frame {
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: flex-end;
  padding: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.collage-frame:hover { border-color: var(--c-red); transform: translateY(-3px); }
.frame-a { grid-column: 1; grid-row: 1 / 3; background: linear-gradient(160deg, #0f3460 0%, #1a1a2e 100%); }
.frame-b { grid-column: 2; grid-row: 1; background: linear-gradient(160deg, #3a0a15 0%, #1a1a2e 100%); }
.frame-c { grid-column: 2; grid-row: 2; background: linear-gradient(160deg, #1a2e1a 0%, #1a1a2e 100%); }
.collage-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-red);
  text-transform: uppercase;
}

/* ===== 首页内容区 ===== */
.content-section {
  padding: 60px 0;
  border-top: 1px solid var(--c-border);
}

/* ===== 分类卡片 ===== */
.categories-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--c-border);
}
.categories-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--c-cream);
}

.cat-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
}

.cat-grid > li {
  background: var(--c-bg);
}

.cat-card {
  padding: 28px 24px;
  background: var(--c-bg2);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  position: relative;
}
.cat-card:hover { border-bottom-color: var(--c-red); background: var(--c-bg3); }
.cat-card h3 { font-size: 1rem; font-weight: 600; margin: 0; }
.cat-card h3 a { color: var(--c-cream); text-decoration: none; }
.cat-card h3 a:hover { color: var(--c-red); }
.cat-card p { font-size: 0.85rem; color: var(--c-cream-dim); line-height: 1.5; margin: 0; flex: 1; }
.cat-count { font-size: 0.72rem; color: var(--c-red); font-weight: 600; letter-spacing: 0.06em; }
.card-link { font-size: 0.8rem; font-weight: 600; color: var(--c-red); letter-spacing: 0.04em; text-transform: uppercase; }
.card-link:hover { color: var(--c-cream); }

/* ===== 文章列表 ===== */
.recent-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--c-border);
}
.recent-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--c-cream);
}

.art-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
}
.art-grid > li { background: var(--c-bg); }

.art-card {
  padding: 24px 22px;
  background: var(--c-bg2);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.art-card:hover { border-bottom-color: var(--c-red); background: rgba(15,52,96,0.4); }
.card-date { font-size: 0.72rem; color: var(--c-red); font-weight: 500; letter-spacing: 0.04em; }
.art-card h3 { font-size: 0.95rem; font-weight: 600; margin: 0; }
.art-card h3 a { color: var(--c-cream); }
.art-card h3 a:hover { color: var(--c-red); }
.art-card p { font-size: 0.83rem; color: var(--c-cream-dim); line-height: 1.5; margin: 0; }

/* ===== 栏目 Hero ===== */
.cat-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}
.cat-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-bg3) 0%, var(--c-bg) 60%);
  z-index: 0;
}
.cat-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--c-bg) 100%);
}
.cat-hero-inner {
  position: relative;
  z-index: 2;
  padding: 48px 20px 40px;
  max-width: var(--prose-max);
  margin: 0 auto;
  width: 100%;
}
.cat-hero-inner h1 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 12px;
}
.cat-hero-desc { color: var(--c-cream-dim); font-size: 1rem; }

/* ===== 栏目内容 ===== */
.cat-content-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--c-border);
}

.entries-section {
  padding: 48px 20px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.entries-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--c-cream);
}

.entries-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--c-border);
}
.entries-list > li { background: var(--c-bg); }

.entry-card {
  padding: 24px 28px;
  background: var(--c-bg2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 4px solid transparent;
  transition: border-color var(--transition), background var(--transition), padding-left var(--transition);
}
.entry-card:hover { border-left-color: var(--c-red); background: var(--c-bg3); padding-left: 32px; }
.entry-card h3 { font-size: 1.05rem; font-weight: 600; margin: 0; }
.entry-card h3 a { color: var(--c-cream); }
.entry-card h3 a:hover { color: var(--c-red); }
.entry-card p { font-size: 0.85rem; color: var(--c-cream-dim); line-height: 1.5; margin: 0; }
.entry-more { font-size: 0.78rem; font-weight: 600; color: var(--c-red); letter-spacing: 0.06em; text-transform: uppercase; align-self: flex-start; }
.entry-more:hover { color: var(--c-cream); }

/* ===== 文章页 ===== */
.art-header-section {
  padding: 48px 20px 40px;
  max-width: var(--prose-max);
  margin: 0 auto;
  border-bottom: 1px solid var(--c-border);
}
.art-header-inner h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--c-cream);
  line-height: 1.3;
  margin-bottom: 12px;
}
.art-date { display: block; font-size: 0.78rem; color: var(--c-red); font-weight: 500; margin-bottom: 14px; }
.art-lead { font-size: 1.05rem; color: var(--c-cream-dim); line-height: 1.7; }
.art-hero-wrap { margin-top: 24px; }
.art-hero-img { width: 100%; height: 260px; object-fit: cover; }

.art-body-section {
  padding: 48px 0 40px;
}
.prose-article { max-width: var(--prose-max); }

.related-section {
  padding: 40px 20px 60px;
  max-width: var(--prose-max);
  margin: 0 auto;
  border-top: 1px solid var(--c-border);
}
.related-section h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; color: var(--c-cream); }
.related-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.related-list li a {
  display: block;
  padding: 11px 16px;
  color: var(--c-cream-dim);
  border-left: 3px solid var(--c-border);
  font-size: 0.9rem;
  transition: color var(--transition), border-color var(--transition), padding-left var(--transition);
}
.related-list li a:hover { color: var(--c-red); border-left-color: var(--c-red); padding-left: 22px; }

/* ===== 关于页 ===== */
.about-hero {
  position: relative;
  padding: 60px 20px 48px;
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}
.about-hero-number {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 700;
  color: var(--c-cream-faint);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  user-select: none;
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--prose-max);
  margin: 0 auto;
}
.about-hero-inner h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--c-cream);
}
.about-hero-inner p { color: var(--c-cream-dim); font-size: 1.05rem; }

.about-body {
  padding: 48px 0;
  max-width: var(--prose-max);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.about-meta-block {
  margin-top: 48px;
  padding: 32px;
  background: var(--c-bg2);
  border-left: 4px solid var(--c-red);
}
.about-meta-block h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--c-cream); }
.about-meta-block p { font-size: 0.9rem; color: var(--c-cream-dim); margin-bottom: 20px; }

/* ===== 隐私页 ===== */
.privacy-header {
  padding: 48px 20px 36px;
  max-width: var(--prose-max);
  margin: 0 auto;
  border-bottom: 1px solid var(--c-border);
}
.privacy-header h1 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--c-cream);
}
.privacy-header p { color: var(--c-cream-dim); }
.privacy-updated { font-size: 0.8rem; color: var(--c-red); margin-bottom: 10px; }

.privacy-body {
  padding: 48px 0 40px;
}
.privacy-nav-links {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
  max-width: var(--prose-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.privacy-nav-links a {
  color: var(--c-red);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ===== 页脚 ===== */
.site-footer {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  padding-bottom: 0;
}

.footer-form-block {
  padding: 36px 20px 32px;
  border-bottom: 1px solid var(--c-border);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.footer-form-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.footer-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}
.footer-form input[type="email"] {
  flex: 1;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-right: none;
  color: var(--c-cream);
  font-family: var(--font-main);
  font-size: 0.88rem;
  padding: 12px 16px;
  min-height: 46px;
  outline: none;
  transition: border-color var(--transition);
}
.footer-form input[type="email"]:focus { border-color: var(--c-red); }
.footer-form input::placeholder { color: var(--c-cream-dim); }
.footer-form button {
  background: var(--c-red);
  color: var(--c-cream);
  border: none;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 20px;
  min-height: 46px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background var(--transition);
}
.footer-form button:hover { background: #c62b36; }

.footer-cols {
  display: flex;
  gap: 0;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid var(--c-border);
}

.footer-dl {
  flex: 1;
  padding: 0 24px;
  border-right: 1px solid var(--c-border);
}
.footer-dl:first-child { padding-left: 0; }
.footer-dl:last-child { border-right: none; padding-right: 0; }

.footer-dl dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 14px;
}
.footer-dl dd {
  margin: 0 0 8px;
  font-size: 0.83rem;
  color: var(--c-cream-dim);
  line-height: 1.5;
}
.footer-dl dd a {
  color: var(--c-cream-dim);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-dl dd a:hover { color: var(--c-red); }

.footer-bottom {
  text-align: center;
  padding: 18px 20px;
  font-size: 0.78rem;
  color: var(--c-cream-dim);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer-sep { color: var(--c-border); }
.footer-bottom a { color: var(--c-cream-dim); }
.footer-bottom a:hover { color: var(--c-red); }

/* ===== Scroll Reveal 动效 ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .layer-2 { transition: none; }
  .btn-primary:hover { transform: none; }
  .entry-card:hover { padding-left: 28px; }
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
  html { font-size: 16px; }

  .hero-section { min-height: 70vh; padding: 40px 20px 200px; flex-direction: column; }
  .hero-collage { right: 0; left: 0; width: 100%; height: 180px; top: auto; bottom: 16px; transform: none; position: absolute; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 1fr; }
  .frame-a { grid-column: 1; grid-row: 1; }
  .frame-b { grid-column: 2; grid-row: 1; }
  .frame-c { grid-column: 3; grid-row: 1; }
  .hero-content h1 { font-size: 1.7rem; }

  .footer-cols { flex-direction: column; padding: 28px 20px; gap: 0; }
  .footer-dl { padding: 20px 0; border-right: none; border-bottom: 1px solid var(--c-border); }
  .footer-dl:last-child { border-bottom: none; }

  .hero-collage { display: none; }
  .hero-section { padding-bottom: 60px; }

  .cat-grid { grid-template-columns: 1fr; }
  .art-grid { grid-template-columns: 1fr; }

  .about-hero-number { font-size: 80px; opacity: 0.05; }

  .entry-card { padding: 20px 18px; }
  .entry-card:hover { padding-left: 22px; }

  .footer-form { flex-direction: column; }
  .footer-form input[type="email"] { border-right: 1px solid var(--c-border); border-bottom: none; }
  .footer-form input[type="email"]:focus { border-color: var(--c-red); }
  .footer-form button { min-height: 48px; }
}

@media (max-width: 480px) {
  .prose-wrap { padding: 0 14px; }
  .categories-section, .recent-section, .entries-section { padding-left: 14px; padding-right: 14px; }
  .fn-nav .nav-a { font-size: 1.1rem; padding: 12px 20px; }
}

@media (min-width: 769px) {
  .hero-content h1 { font-size: 2.8rem; }
  .art-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
