:root {
  --forest-deep: #1a2e1a;
  --forest-dark: #2d4a2d;
  --forest-mid: #3d6b3d;
  --forest-light: #5a8f5a;
  --moss: #7aad6a;
  --leaf: #a8cc8a;
  --mist: #c8dfc0;
  --paper: #f5f0e8;
  --paper-warm: #ede8dc;
  --bark: #6b4f35;
  --ink: #1e1e1e;
  --ink-light: #3a3a3a;
  --gold: #c4923a;
  --card: #fff1cf;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background: var(--forest-deep);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(61,107,61,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(45,74,45,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(26,46,26,0.3) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Header */
header {
  position: relative;
  background: linear-gradient(180deg, var(--forest-deep) 0%, var(--forest-dark) 100%);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.forest-scene {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 280px;
}

.forest-scene svg { width: 100%; height: 100%; }

@keyframes sway-left {
  0%, 100% { transform: rotate(0deg); transform-origin: bottom center; }
  30% { transform: rotate(1.2deg); transform-origin: bottom center; }
  70% { transform: rotate(-0.8deg); transform-origin: bottom center; }
}
@keyframes sway-right {
  0%, 100% { transform: rotate(0deg); transform-origin: bottom center; }
  30% { transform: rotate(-1deg); transform-origin: bottom center; }
  70% { transform: rotate(0.9deg); transform-origin: bottom center; }
}
@keyframes window-glow {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

.tree-grp-l1 { animation: sway-left 5s ease-in-out infinite; }
.tree-grp-l2 { animation: sway-right 6.5s ease-in-out infinite; }
.tree-grp-l3 { animation: sway-left 4.5s ease-in-out infinite 1s; }
.tree-grp-r1 { animation: sway-right 5.5s ease-in-out infinite 0.5s; }
.tree-grp-r2 { animation: sway-left 7s ease-in-out infinite 1.5s; }
.tree-grp-r3 { animation: sway-right 4.8s ease-in-out infinite 0.8s; }
.window-warm { animation: window-glow 4s ease-in-out infinite; }

.header-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 60px 20px 80px;
}

.site-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--moss);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(122,173,106,0.3);
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
}

.site-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  margin-bottom: 16px;
  animation: fade-in 1.2s ease forwards;
}

.site-title a {
  color: var(--paper);
  text-decoration: none;
}

.site-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--mist);
  letter-spacing: 0.25em;
  animation: fade-in 1.5s ease forwards;
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  padding: 8px 24px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.ground-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--moss), var(--forest-light), var(--moss), transparent);
  opacity: 0.4;
}

/* Nav */
nav {
  background: var(--forest-dark);
  border-bottom: 1px solid rgba(122,173,106,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

nav a {
  display: block;
  padding: 16px 28px;
  color: var(--mist);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--moss);
  transition: width 0.3s ease;
}

nav a:hover { color: var(--leaf); }
nav a:hover::after { width: 60%; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  cursor: pointer;
  position: absolute;
  right: 12px;
  background: none; border: none;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--mist);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Main */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--moss);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(122,173,106,0.4), transparent);
}

/* Tag filter */
.tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-tag {
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid rgba(122,173,106,0.3);
  border-radius: 20px;
  color: var(--mist);
  background: rgba(122,173,106,0.07);
  cursor: pointer;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.filter-tag::before { content: '# '; opacity: 0.5; }
.filter-tag:first-child::before { content: ''; }
.filter-tag:hover { background: rgba(122,173,106,0.18); color: var(--leaf); border-color: rgba(122,173,106,0.5); }
.filter-tag.active { background: var(--forest-mid); color: var(--leaf); border-color: var(--moss); font-weight: 500; }

/* Book cards */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.book-card {
  background: var(--card);
  border-radius: 4px;
  overflow: visible;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.book-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, var(--forest-mid), var(--moss));
}

.book-card.is-new::after {
  content: '新着';
  position: absolute;
  top: -2px; right: 18px;
  width: 28px;
  background: linear-gradient(180deg, #d4711a 0%, #e8922a 60%, #c4601a 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  box-shadow: 2px 4px 12px rgba(180,90,20,0.4);
  z-index: 10;
  writing-mode: vertical-rl;
  padding: 10px 6px 18px;
}

.book-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }

.book-card-inner { padding: 28px 24px 24px 30px; overflow: hidden; border-radius: 4px; }

.book-category {
  font-size: 11px; font-weight: 500; letter-spacing: 0.3em;
  color: var(--forest-mid); text-transform: uppercase; margin-bottom: 10px;
}

.book-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px; font-weight: 600; color: var(--ink); line-height: 1.5; margin-bottom: 6px;
}

.book-author { font-size: 14px; color: #888; margin-bottom: 12px; font-weight: 300; }

.book-summary { font-size: 15px; color: var(--ink-light); line-height: 1.8; margin-bottom: 12px; }

.book-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }

.card-tag {
  font-size: 11px; padding: 3px 10px;
  border: 1px solid rgba(122,173,106,0.3); border-radius: 20px;
  color: var(--moss); background: rgba(122,173,106,0.07);
  cursor: pointer; letter-spacing: 0.05em; transition: all 0.2s;
}

.card-tag::before { content: '# '; opacity: 0.5; }
.card-tag:hover { background: rgba(122,173,106,0.2); color: var(--leaf); }

.book-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.08);
}

.book-verdict { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 20px; }
.verdict-buy { background: rgba(61,107,61,0.12); color: var(--forest-mid); border: 1px solid rgba(61,107,61,0.25); }
.book-date { font-size: 12px; color: #aaa; font-weight: 300; }

.read-more {
  font-size: 13px; color: var(--forest-mid); text-decoration: none;
  letter-spacing: 0.1em; transition: color 0.2s; display: flex; align-items: center; gap: 4px;
}

.read-more:hover { color: var(--moss); }
.read-more::after { content: '→'; }

/* Featured */
.featured {
  background: var(--card);
  border-radius: 4px; padding: 48px; margin-bottom: 28px;
  position: relative; overflow: visible; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.featured-bookmark {
  position: absolute; top: -2px; right: 32px; width: 32px;
  padding: 10px 7px 20px;
  background: linear-gradient(180deg, #d4711a 0%, #e8922a 60%, #c4601a 100%);
  color: #fff; font-size: 10px; font-weight: 500; letter-spacing: 0.15em;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
  box-shadow: 2px 4px 14px rgba(180,90,20,0.45);
  z-index: 10; writing-mode: vertical-rl; line-height: 1;
}

.featured::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, var(--forest-dark), var(--moss), var(--leaf));
}

.featured::after {
  content: '森の一冊';
  position: absolute; top: 24px; right: 80px;
  font-family: 'Shippori Mincho', serif; font-size: 11px;
  color: var(--moss); letter-spacing: 0.3em; opacity: 0.6;
}

.featured-label { font-size: 10px; font-weight: 500; letter-spacing: 0.4em; color: var(--moss); text-transform: uppercase; margin-bottom: 16px; }
.featured-title { font-family: 'Shippori Mincho', serif; font-size: clamp(22px, 4vw, 32px); font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 8px; }
.featured-author { font-size: 15px; color: #888; margin-bottom: 24px; font-weight: 300; }
.featured-body { font-size: 16px; line-height: 2; color: var(--ink-light); margin-bottom: 28px; max-width: 640px; }

.featured-points { list-style: none; margin-bottom: 28px; }
.featured-points li { font-size: 15px; line-height: 1.9; color: var(--ink-light); padding: 8px 0 8px 20px; position: relative; border-bottom: 1px solid rgba(0,0,0,0.05); }
.featured-points li:last-child { border-bottom: none; }
.featured-points li::before { content: '◆'; position: absolute; left: 0; color: var(--moss); font-size: 8px; top: 11px; }

.verdict-tag { display: inline-block; background: var(--forest-dark); color: var(--leaf); font-size: 12px; padding: 8px 20px; border-radius: 2px; letter-spacing: 0.1em; }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 8px 0 48px; }

.page-btn {
  min-width: 40px; height: 40px; padding: 0 14px;
  background: rgba(45,74,45,0.5); border: 1px solid rgba(122,173,106,0.2);
  border-radius: 3px; color: var(--mist); font-size: 13px;
  font-family: 'Zen Kaku Gothic New', sans-serif; cursor: pointer; transition: all 0.2s;
}

.page-btn:hover { background: rgba(45,74,45,0.9); color: var(--leaf); border-color: rgba(122,173,106,0.4); }
.page-btn.active { background: var(--forest-mid); color: var(--leaf); border-color: var(--moss); font-weight: 500; }
.page-next { padding: 0 18px; letter-spacing: 0.1em; }
.page-dots { color: var(--moss); opacity: 0.5; font-size: 14px; }

/* Sidebar */
.sidebar-widget {
  background: rgba(45,74,45,0.6); border: 1px solid rgba(122,173,106,0.2);
  border-radius: 4px; padding: 28px; margin-bottom: 24px; backdrop-filter: blur(4px);
}

.widget-title {
  font-family: 'Shippori Mincho', serif; font-size: 14px; font-weight: 600;
  color: var(--leaf); margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(122,173,106,0.2); letter-spacing: 0.1em;
}

.widget-list { list-style: none; }
.widget-list li { padding: 10px 0; border-bottom: 1px solid rgba(122,173,106,0.1); font-size: 13px; color: var(--mist); line-height: 1.5; cursor: pointer; transition: color 0.2s; }
.widget-list li:last-child { border-bottom: none; }
.widget-list li:hover { color: var(--leaf); }
.widget-list li span { display: block; font-size: 11px; color: rgba(200,223,192,0.5); margin-top: 3px; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 11px; padding: 5px 12px; border: 1px solid rgba(122,173,106,0.3); border-radius: 20px; color: var(--mist); cursor: pointer; transition: all 0.2s; letter-spacing: 0.05em; }
.tag:hover { background: rgba(122,173,106,0.15); color: var(--leaf); border-color: rgba(122,173,106,0.5); }

.about-box { text-align: center; }

.about-icon {
  width: 80px; height: 80px; background: #2a1a08; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; overflow: hidden;
  border: 3px solid rgba(122,173,106,0.3); box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.about-name { font-family: 'Shippori Mincho', serif; font-size: 15px; color: var(--leaf); margin-bottom: 10px; }
.about-text { font-size: 12px; color: var(--mist); line-height: 1.8; opacity: 0.8; }

/* Article page */
.article-card {
  background: var(--card); border-radius: 4px; padding: 48px;
  position: relative; box-shadow: 0 4px 24px rgba(0,0,0,0.35); overflow: visible;
}

.article-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, var(--forest-dark), var(--moss), var(--leaf));
}

.article-bookmark {
  position: absolute; top: -2px; right: 32px; width: 32px; padding: 10px 7px 20px;
  background: linear-gradient(180deg, #d4711a, #e8922a, #c4601a);
  color: #fff; font-size: 10px; font-weight: 500;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
  box-shadow: 2px 4px 14px rgba(180,90,20,0.45);
  z-index: 10; writing-mode: vertical-rl; letter-spacing: 0.15em; line-height: 1;
}

.article-category { font-size: 11px; font-weight: 500; letter-spacing: 0.35em; color: var(--forest-mid); text-transform: uppercase; margin-bottom: 12px; }
.article-title { font-family: 'Shippori Mincho', serif; font-size: clamp(24px, 4vw, 36px); font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 8px; }
.article-author { font-size: 15px; color: #888; font-weight: 300; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid rgba(0,0,0,0.08); }

.section-label { font-size: 11px; font-weight: 500; letter-spacing: 0.35em; color: var(--moss); text-transform: uppercase; margin-bottom: 10px; margin-top: 28px; }

.article-summary { font-size: 17px; font-weight: 500; color: var(--ink); line-height: 1.7; padding: 16px 20px; background: rgba(61,107,61,0.07); border-left: 3px solid var(--moss); border-radius: 0 4px 4px 0; }
.article-target { font-size: 15px; color: var(--ink-light); line-height: 1.8; }

.article-points { list-style: none; margin-top: 4px; }
.article-points li { font-size: 15px; line-height: 1.9; color: var(--ink-light); padding: 10px 0 10px 22px; position: relative; border-bottom: 1px solid rgba(0,0,0,0.06); }
.article-points li:last-child { border-bottom: none; }
.article-points li::before { content: '◆'; position: absolute; left: 0; color: var(--moss); font-size: 8px; top: 14px; }

.article-change { font-size: 15px; color: var(--ink-light); line-height: 1.8; padding: 14px 18px; background: rgba(196,146,58,0.08); border-left: 3px solid #c4923a; border-radius: 0 4px 4px 0; }

.verdict-block { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.08); display: flex; align-items: flex-start; gap: 16px; }
.verdict-text { font-size: 15px; color: var(--ink-light); line-height: 1.7; }

.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.08); }
.article-tag { font-size: 12px; padding: 5px 14px; border: 1px solid rgba(122,173,106,0.35); border-radius: 20px; color: var(--moss); text-decoration: none; letter-spacing: 0.05em; transition: all 0.2s; background: rgba(122,173,106,0.07); }
.article-tag::before { content: '# '; opacity: 0.6; }
.article-tag:hover { background: rgba(122,173,106,0.2); color: var(--leaf); border-color: rgba(122,173,106,0.6); }

.article-date { font-size: 12px; color: #999; margin-top: 28px; letter-spacing: 0.1em; }

.amazon-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; padding: 14px 28px; background: #c4923a; color: #fff; text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.1em; border-radius: 3px; transition: background 0.2s, transform 0.2s; }
.amazon-link:hover { background: #a87a2a; transform: translateY(-2px); }
.amazon-link::before { content: '📖'; font-size: 16px; }

.op-block { margin-top: 28px; padding: 20px 24px; background: rgba(26,46,26,0.5); border: 1px solid rgba(122,173,106,0.2); border-radius: 4px; }
.op-label { font-size: 11px; font-weight: 500; letter-spacing: 0.35em; color: var(--moss); text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.op-label::before { content: '絶版'; background: rgba(196,146,58,0.2); color: #c4923a; font-size: 10px; padding: 2px 8px; border-radius: 2px; border: 1px solid rgba(196,146,58,0.3); letter-spacing: 0.1em; }
.op-isbn { font-size: 13px; color: var(--mist); margin-bottom: 14px; opacity: 0.8; }
.op-links { display: flex; flex-wrap: wrap; gap: 10px; }
.op-link { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 3px; text-decoration: none; font-size: 13px; font-weight: 500; transition: all 0.2s; }
.op-link-fukkan { background: rgba(196,146,58,0.15); color: #c4923a; border: 1px solid rgba(196,146,58,0.35); }
.op-link-fukkan:hover { background: rgba(196,146,58,0.3); transform: translateY(-2px); }
.op-link-fukkan::before { content: '📬'; font-size: 14px; }
.op-link-calil { background: rgba(122,173,106,0.12); color: var(--moss); border: 1px solid rgba(122,173,106,0.3); }
.op-link-calil:hover { background: rgba(122,173,106,0.25); transform: translateY(-2px); }
.op-link-calil::before { content: '🏛️'; font-size: 14px; }
.op-link-kosho { background: rgba(107,79,53,0.2); color: #a07850; border: 1px solid rgba(107,79,53,0.35); }
.op-link-kosho:hover { background: rgba(107,79,53,0.35); transform: translateY(-2px); }
.op-link-kosho::before { content: '📚'; font-size: 14px; }

.article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.article-nav a { background: rgba(45,74,45,0.5); border: 1px solid rgba(122,173,106,0.2); border-radius: 4px; padding: 16px 20px; text-decoration: none; transition: background 0.2s; }
.article-nav a:hover { background: rgba(45,74,45,0.8); }
.article-nav .nav-label { font-size: 10px; color: var(--moss); letter-spacing: 0.3em; display: block; margin-bottom: 6px; }
.article-nav .nav-title { font-size: 13px; color: var(--mist); line-height: 1.5; }
.article-nav .prev { text-align: left; }
.article-nav .next { text-align: right; }
.article-nav .prev .nav-label::before { content: '← '; }
.article-nav .next .nav-label::after { content: ' →'; }

/* Breadcrumb */
.breadcrumb { font-size: 12px; color: var(--moss); margin-bottom: 32px; letter-spacing: 0.1em; opacity: 0.8; }
.breadcrumb a { color: var(--moss); text-decoration: none; }
.breadcrumb a:hover { color: var(--leaf); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* Footer */
footer { background: var(--forest-deep); border-top: 1px solid rgba(122,173,106,0.15); padding: 40px 20px; text-align: center; position: relative; z-index: 1; }
.footer-title { font-family: 'Shippori Mincho', serif; font-size: 20px; color: var(--mist); margin-bottom: 8px; letter-spacing: 0.1em; }
.footer-copy { font-size: 11px; color: rgba(200,223,192,0.4); letter-spacing: 0.2em; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 768px) {
  .content-layout { grid-template-columns: 1fr; }
  .featured { padding: 28px 24px 28px 32px; }
  .article-card { padding: 28px 20px 28px 28px; }
  .hamburger { display: flex; }
  .nav-inner { justify-content: flex-start; padding: 0 16px; min-height: 48px; }
  nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--forest-dark); border-bottom: 1px solid rgba(122,173,106,0.2); box-shadow: 0 8px 24px rgba(0,0,0,0.4); z-index: 100; }
  nav ul.open { display: flex; }
  nav ul li { border-bottom: 1px solid rgba(122,173,106,0.1); }
  nav ul li:last-child { border-bottom: none; }
  nav a { padding: 16px 24px; font-size: 14px; }
  nav a::after { display: none; }
  .article-nav { grid-template-columns: 1fr; }
  .verdict-block { flex-direction: column; }
  .nav-site-title { font-family: 'Shippori Mincho', serif; font-size: 14px; color: var(--leaf); letter-spacing: 0.15em; padding: 0 8px; }
}

@media (min-width: 769px) { .nav-site-title { display: none; } }