@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* ── 变量 ── */
:root {
  --c-bg: #26171f;
  --c-bg2: #2f1d28;
  --c-bg3: #3a2232;
  --c-pink: #ff0080;
  --c-violet: #ff00ff;
  --c-text: #f0e0eb;
  --c-text2: #c4a0b8;
  --c-text3: #8a6080;
  --c-border: rgba(255,0,128,0.18);
  --c-card: rgba(58,34,50,0.85);
  --c-glow: rgba(255,0,255,0.12);
  --nav-w: 220px;
  --radius: 4px;
  --radius-pill: 24px;
  --font: 'Plus Jakarta Sans', 'PingFang SC', 'Noto Sans SC', system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(255,0,128,0.10), 0 1px 4px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 40px rgba(255,0,255,0.22), 0 2px 8px rgba(0,0,0,0.5);
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ── 重置 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--c-pink); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-violet); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, textarea { font-family: var(--font); }

/* ── Aurora 背景层 ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(255,0,128,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(255,0,255,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255,0,180,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: auroraShift 18s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0%   { opacity: 1; transform: scale(1) translate(0,0); }
  50%  { opacity: 0.8; transform: scale(1.04) translate(-1%,1%); }
  100% { opacity: 1; transform: scale(1) translate(1%,-1%); }
}

/* ── 左侧固定导航 ── */
.side-nav {
  position: fixed;
  top: 0; left: 0;
  width: var(--nav-w);
  height: 100vh;
  background: rgba(38,23,31,0.95);
  backdrop-filter: blur(12px);
  border-right: 1px solid var(--c-border);
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.side-nav summary.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px 16px;
  cursor: pointer;
  list-style: none;
  border-bottom: 1px solid var(--c-border);
  background: linear-gradient(160deg, rgba(255,0,128,0.12), rgba(255,0,255,0.08));
}
.side-nav summary.nav-brand::-webkit-details-marker { display: none; }
.side-nav summary.nav-brand::marker { display: none; }

.brand-text-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--c-pink), var(--c-violet));
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  box-shadow: 0 0 16px rgba(255,0,128,0.4);
}
.brand-icon { width: 48px; height: 48px; border-radius: var(--radius-pill); }

.nav-slogan {
  font-size: 0.65rem;
  color: var(--c-text3);
  text-align: center;
  letter-spacing: 0.05em;
}

.side-nav menu {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.side-nav menu li a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-text2);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  min-height: 40px;
  line-height: 1.25;
  display: flex;
  align-items: center;
}
.side-nav menu li a:hover,
.side-nav menu li a[aria-current="page"] {
  background: linear-gradient(90deg, rgba(255,0,128,0.18), rgba(255,0,255,0.10));
  color: #fff;
  box-shadow: 0 0 12px rgba(255,0,128,0.18);
}
.side-nav menu li a[aria-current="page"] {
  background: linear-gradient(90deg, rgba(255,0,128,0.28), rgba(255,0,255,0.18));
  border-left: 3px solid var(--c-pink);
}

/* details 展开状态 */
.side-nav[open] menu { display: flex; }

/* ── 页面骨架 ── */
.page-shell {
  margin-left: var(--nav-w);
  display: flex;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* ── 侧边栏（内容左侧） ── */
aside.sidebar-left {
  width: 200px;
  min-width: 180px;
  flex-shrink: 0;
  padding: 40px 16px 40px 24px;
  border-right: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  order: -1;
}
aside.sidebar-left .aside-eyebrow {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--c-pink);
  text-transform: uppercase;
  margin-bottom: 6px;
}
aside.sidebar-left .aside-title {
  font-size: 0.85rem;
  color: var(--c-text2);
  margin-bottom: 16px;
  font-weight: 600;
}
aside.sidebar-left ul { display: flex; flex-direction: column; gap: 4px; }
aside.sidebar-left ul li a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--c-text2);
  transition: all var(--transition);
  min-height: 36px;
  display: flex;
  align-items: center;
}
aside.sidebar-left ul li a:hover {
  color: var(--c-pink);
  background: rgba(255,0,128,0.08);
}

/* ── main ── */
main {
  flex: 1;
  min-width: 0;
}
main .wrap {
  padding: 40px 40px 60px;
  max-width: 860px;
}
main .wrap > section > div {
  position: relative;
}

/* ── 面包屑 ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--c-text3);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--c-text3); }
.breadcrumb a:hover { color: var(--c-pink); }
.breadcrumb span { color: var(--c-text3); }

/* ── section-eyebrow / small 眉题 ── */
.section-eyebrow,
small.section-eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--c-pink);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ── h1 / h2 / h3 ── */
h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #fff 60%, var(--c-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 4px;
}
h3 { font-size: 1rem; font-weight: 600; color: var(--c-text); margin-bottom: 10px; }
h4 { font-size: 0.95rem; font-weight: 600; color: var(--c-text); margin-bottom: 6px; }

/* ── 正文内容 ── */
.entry-body, .cat-content-body, .about-body, .privacy-body, .tag-content-body, .home-content-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text2);
}
.entry-body h2, .cat-content-body h2, .about-body h2, .privacy-body h2 {
  font-size: 1.15rem;
  color: #fff;
  margin-top: 32px;
  margin-bottom: 12px;
}
.entry-body h3, .cat-content-body h3 { font-size: 1rem; margin-top: 24px; }
.entry-body p, .cat-content-body p, .about-body p, .privacy-body p { margin-bottom: 16px; }
.entry-body ul, .entry-body ol { margin-bottom: 16px; padding-left: 20px; }
.entry-body ul { list-style: disc; }
.entry-body ol { list-style: decimal; }
.entry-body li { margin-bottom: 6px; }
.entry-body a { color: var(--c-pink); text-decoration: underline; text-decoration-color: rgba(255,0,128,0.3); }
.entry-body a:hover { color: var(--c-violet); }

/* ── 时间 ── */
.pub-date, .mod-date, .card-date {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--c-text3);
  margin-right: 12px;
}
.entry-meta { margin-top: 8px; margin-bottom: 24px; }

/* ── entry lead ── */
.entry-lead, .cat-desc, .about-lead, .privacy-lead {
  font-size: 1rem;
  color: var(--c-text2);
  margin-bottom: 12px;
  line-height: 1.65;
}

/* ── 按钮 ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--c-pink), var(--c-violet));
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  min-height: 44px;
  box-shadow: 0 0 20px rgba(255,0,128,0.35);
  transition: box-shadow var(--transition), transform var(--transition);
}
.btn-primary:hover { box-shadow: 0 0 32px rgba(255,0,255,0.5); color: #fff; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border: 1px solid var(--c-pink);
  color: var(--c-pink);
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.9rem;
  min-height: 44px;
  transition: background var(--transition), color var(--transition);
}
.btn-ghost:hover { background: rgba(255,0,128,0.12); color: var(--c-violet); }

/* ── 标签胶囊 ── */
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(255,0,128,0.1);
  border: 1px solid rgba(255,0,128,0.25);
  color: var(--c-pink);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  transition: background var(--transition), box-shadow var(--transition);
  min-height: 32px;
}
.tag-pill:hover { background: rgba(255,0,128,0.22); box-shadow: 0 0 10px rgba(255,0,128,0.2); color: var(--c-violet); }

/* ── Hero（首页） ── */
.hero-wrap {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 60px 48px 60px 40px;
}
.hero-slash {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg,
    transparent 0%,
    transparent 42%,
    rgba(255,0,128,0.18) 42%,
    rgba(255,0,255,0.22) 58%,
    transparent 58%,
    transparent 100%
  );
  pointer-events: none;
}
.hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 40%, rgba(255,0,255,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(255,0,128,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  text-align: right;
  max-width: 600px;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--c-pink);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}
.hero-desc {
  font-size: 1rem;
  color: var(--c-text2);
  margin-bottom: 28px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ── 首页分类卡片 ── */
.home-cats-section, .home-entries-section, .home-tags-section {
  margin-top: 56px;
}
.home-cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.home-cat-card {
  position: relative;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 20px 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.home-cat-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,0,128,0.35);
  transform: translateY(-2px);
}
.cat-card-glow {
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,0,255,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.home-cat-card h3 { font-size: 1rem; margin-bottom: 8px; }
.home-cat-card h3 a { color: #fff; }
.home-cat-card h3 a:hover { color: var(--c-pink); }
.home-cat-card p { font-size: 0.82rem; color: var(--c-text2); margin-bottom: 14px; line-height: 1.55; }
.cat-children { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.cat-child-link {
  font-size: 0.72rem;
  padding: 3px 10px;
  background: rgba(255,0,128,0.08);
  border: 1px solid rgba(255,0,128,0.18);
  border-radius: var(--radius);
  color: var(--c-text2);
  transition: color var(--transition), background var(--transition);
}
.cat-child-link:hover { color: var(--c-pink); background: rgba(255,0,128,0.14); }
.cat-more-btn {
  font-size: 0.78rem;
  color: var(--c-pink);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}
.cat-more-btn:hover { color: var(--c-violet); }

/* ── 首页 entry 卡片 ── */
.home-entries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.home-entry-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.home-entry-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,0,255,0.28);
  transform: translateY(-2px);
}
.entry-thumb { width: 100%; height: 140px; object-fit: cover; }
.entry-card-body { padding: 16px; }
.entry-card-body h4 { font-size: 0.9rem; margin-bottom: 6px; }
.entry-card-body h4 a { color: var(--c-text); }
.entry-card-body h4 a:hover { color: var(--c-pink); }
.entry-card-body p { font-size: 0.8rem; color: var(--c-text2); margin-bottom: 8px; line-height: 1.5; }

/* ── 标签云 ── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* ── 分类页 entry 列表 ── */
.cat-entries-wrap, .tag-entries-wrap { margin-top: 48px; }
.cat-entry-list, .tag-entry-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  counter-reset: entrycount;
}
.cat-entry-item, .tag-entry-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  overflow: hidden;
}
.cat-entry-item:hover, .tag-entry-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,0,128,0.3);
  transform: translateX(3px);
}
.cat-entry-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  color: var(--c-text);
  min-height: 48px;
}
.cat-entry-img-wrap { width: 80px; height: 60px; flex-shrink: 0; border-radius: var(--radius); overflow: hidden; }
.cat-entry-img { width: 100%; height: 100%; object-fit: cover; }
.cat-entry-info { display: flex; flex-direction: column; gap: 4px; }
.cat-entry-info strong { font-size: 0.9rem; color: #fff; }
.cat-entry-info small { font-size: 0.75rem; color: var(--c-text2); line-height: 1.4; }
.entry-date { font-size: 0.7rem; color: var(--c-text3); }

/* ── tag layout ── */
.tag-entry-item {
  padding: 0;
}
.tag-entry-item a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  color: var(--c-text);
  min-height: 48px;
}
.tag-entry-item a strong { font-size: 0.9rem; color: #fff; }
.tag-entry-item a small { font-size: 0.75rem; color: var(--c-text2); line-height: 1.4; }
.tag-cat-badge {
  display: inline-block;
  font-size: 0.68rem;
  padding: 2px 8px;
  background: rgba(255,0,255,0.1);
  border: 1px solid rgba(255,0,255,0.2);
  border-radius: var(--radius);
  color: var(--c-violet);
  margin: 4px 0 4px 20px;
}
.tag-entry-item time { font-size: 0.7rem; color: var(--c-text3); padding: 0 20px 12px; }

.other-tags { margin-top: 40px; }
.other-tags-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

/* ── entry 相关 ── */
.entry-tags { margin: 28px 0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tags-label { font-size: 0.78rem; color: var(--c-text3); }
.entry-related { margin-top: 48px; }
.related-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.related-list li a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 18px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}
.related-list li a:hover { border-color: var(--c-pink); box-shadow: 0 0 12px rgba(255,0,128,0.12); }
.related-list li a strong { font-size: 0.88rem; color: #fff; }
.related-list li a small { font-size: 0.75rem; color: var(--c-text2); }

/* ── entry hero 图 ── */
.entry-hero-wrap {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.entry-hero-img { width: 100%; max-height: 360px; object-fit: cover; }

/* ── about 页 ── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0 36px;
}
.about-stat-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-stat-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--c-pink), var(--c-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.about-stat-item span { font-size: 0.75rem; color: var(--c-text3); }
.about-cats { margin-top: 40px; }
.about-cats-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.about-cat-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--c-text2);
  transition: all var(--transition);
  min-height: 40px;
}
.about-cat-link:hover { border-color: var(--c-pink); color: var(--c-pink); background: rgba(255,0,128,0.08); }

/* ── privacy ── */
.privacy-header { margin-bottom: 32px; }
.privacy-nav-links { display: flex; gap: 12px; margin-top: 40px; }

/* ── 页脚 ── */
footer {
  margin-left: var(--nav-w);
  background: rgba(30,16,24,0.95);
  border-top: 1px solid var(--c-border);
  position: relative;
  z-index: 1;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 48px 48px 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-col h3 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--c-pink);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col p { font-size: 0.82rem; color: var(--c-text3); line-height: 1.6; margin-bottom: 10px; }
.footer-col ul { display: flex; flex-direction: column; gap: 6px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--c-text3);
  transition: color var(--transition);
  display: block;
  min-height: 28px;
  display: flex;
  align-items: center;
}
.footer-col ul li a:hover { color: var(--c-pink); }
.footer-contact address { font-style: normal; }
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: var(--c-text3); }

/* ── Reveal 动效 ── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── 滚动条 ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: rgba(255,0,128,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,0,128,0.5); }

/* ── 响应式 ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --nav-w: 0px; }

  .side-nav {
    width: 260px;
    transform: translateX(-100%);
    transition: transform var(--transition);
  }
  .side-nav[open] {
    transform: translateX(0);
    box-shadow: 4px 0 32px rgba(0,0,0,0.5);
  }
  .side-nav summary.nav-brand {
    flex-direction: row;
    padding: 16px 20px;
    gap: 12px;
  }

  .page-shell {
    margin-left: 0;
    flex-direction: column;
  }

  aside.sidebar-left {
    position: static;
    height: auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding: 20px 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }
  aside.sidebar-left .aside-eyebrow,
  aside.sidebar-left .aside-title { margin: 0; }
  aside.sidebar-left ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  aside.sidebar-left ul li a {
    padding: 6px 14px;
    min-height: 40px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--c-border);
  }

  footer { margin-left: 0; }

  .hero-wrap { padding: 48px 24px; min-height: 40vh; }
  .hero-content { max-width: 100%; text-align: left; }
  .hero-actions { justify-content: flex-start; }

  main .wrap { padding: 28px 24px 48px; max-width: 100%; }
}

@media (max-width: 600px) {
  .home-cats-grid { grid-template-columns: 1fr; }
  .home-entries-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { padding: 32px 20px 20px; }
  .hero-wrap { padding: 36px 20px; }
  main .wrap { padding: 20px 16px 40px; }
  .privacy-nav-links { flex-direction: column; }
  .hero-actions { flex-direction: column; gap: 10px; }
}

/* ── prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
