:root {
  --bg: #f5f1e7;
  --bg-soft: #fbf8f2;
  --surface: rgba(255,255,255,0.72);
  --surface-strong: #ffffff;
  --surface-dark: #0f241d;
  --text: #15211d;
  --text-soft: #52615c;
  --text-inverse: #f6f1e9;
  --line: rgba(21,33,29,0.12);
  --line-strong: rgba(21,33,29,0.22);
  --primary: #16372d;
  --primary-2: #21493b;
  --accent: #c8a45a;
  --accent-2: #a37d35;
  --success: #2f6e51;
  --shadow: 0 14px 40px rgba(17, 29, 24, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --space-8: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(200,164,90,0.15), transparent 20%),
    radial-gradient(circle at left top, rgba(47,110,81,0.08), transparent 20%),
    var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--text-soft); }
ul { padding-left: 1.1rem; color: var(--text-soft); }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section { padding: var(--space-8) 0; }
.section-tight { padding: var(--space-7) 0; }
.section-soft { background: rgba(255,255,255,0.35); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(200,164,90,0.25);
  background: rgba(255,255,255,0.62);
  border-radius: 999px;
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-2);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 1rem;
}
.h1, h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.h2, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.h3, h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.2;
  margin: 0 0 0.8rem;
}
.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 65ch;
}
.muted { color: var(--text-soft); }
.text-light { color: rgba(246,241,233,0.82); }
.small { font-size: 0.92rem; }
.center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 32px; }
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-body { padding: 24px; }
.card-header { padding: 24px 24px 0; }
.panel {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #e0bf79);
  color: #1d1a14;
  box-shadow: 0 12px 24px rgba(200,164,90,0.22);
}
.btn-secondary {
  background: rgba(255,255,255,0.7);
  border-color: var(--line);
  color: var(--text);
}
.btn-dark {
  background: var(--primary);
  color: var(--text-inverse);
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.badge {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.58);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(245,241,231,0.82);
  border-bottom: 1px solid rgba(21,33,29,0.08);
}
.announcement {
  background: var(--primary);
  color: var(--text-inverse);
  font-size: 0.9rem;
}
.announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  text-align: center;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #284f41);
  color: var(--text-inverse);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  box-shadow: 0 12px 24px rgba(22,55,45,0.25);
}
.logo-text strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.logo-text span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-soft);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.97rem;
}
.nav-links a { color: var(--text-soft); }
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--text);
}
.hero {
  padding: 84px 0 32px;
}
.hero-card {
  padding: 36px;
  background:
    radial-gradient(circle at 20% 20%, rgba(200,164,90,0.15), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.64));
}
.hero-media {
  min-height: 540px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(22,55,45,0.06), rgba(22,55,45,0.12)),
    linear-gradient(145deg, #eee3c8, #f7f2e6 60%, #d8cab0);
  position: relative;
  overflow: hidden;
}
.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}
.hero-media::before {
  width: 460px;
  height: 460px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(200,164,90,0.28), transparent 70%);
}
.hero-media::after {
  width: 380px;
  height: 380px;
  left: -130px;
  bottom: -150px;
  background: radial-gradient(circle, rgba(47,110,81,0.18), transparent 70%);
}
.book-stack,
.product-orb,
.article-frame {
  position: absolute;
  box-shadow: 0 22px 40px rgba(17, 29, 24, 0.12);
}
.book-stack {
  width: 260px;
  height: 340px;
  right: 56px;
  top: 70px;
  border-radius: 24px;
  background: linear-gradient(180deg, #17372d, #264b3f);
  color: var(--text-inverse);
  padding: 30px;
}
.book-stack small,
.product-orb small { letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; }
.book-stack h3,
.product-orb h3 { font-size: 1.8rem; margin-top: 12px; color: inherit; }
.book-stack p,
.product-orb p { color: rgba(246,241,233,0.8); }
.product-orb {
  width: 220px;
  height: 220px;
  border-radius: 28px;
  left: 56px;
  bottom: 56px;
  background: linear-gradient(135deg, #c8a45a, #e0c488);
  padding: 24px;
  color: #1f1a12;
}
.article-frame {
  width: 260px;
  min-height: 180px;
  left: 120px;
  top: 80px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(21,33,29,0.08);
  border-radius: 24px;
  padding: 20px;
}
.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.kpi {
  padding: 20px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(21,33,29,0.08);
  border-radius: 18px;
}
.kpi strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: var(--primary);
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-item,
.feature-item,
.article-card,
.product-card,
.pathway-card,
.testimonial-card,
.faq-item,
.metric-card,
.category-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(21,33,29,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.trust-item,
.feature-item,
.metric-card,
.category-card { padding: 24px; }
.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(22,55,45,0.08);
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 700;
}
.article-card img,
.product-card img,
.category-card img,
.media-banner {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(22,55,45,0.14), rgba(200,164,90,0.22));
}
.article-card .content,
.product-card .content,
.category-card .content {
  padding: 24px;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 0.84rem;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.price {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}
.old-price { text-decoration: line-through; color: var(--text-soft); font-size: 0.95rem; margin-left: 6px; }
.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-clean li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.list-clean li:last-child { border-bottom: 0; }
.list-clean li::before {
  content: "•";
  color: var(--accent-2);
  font-size: 1.1rem;
  line-height: 1.4;
}
.newsletter {
  background: linear-gradient(145deg, #17372d, #264b3f);
  color: var(--text-inverse);
}
.newsletter p { color: rgba(246,241,233,0.76); }
.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.input,
.select,
.textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(21,33,29,0.12);
  background: rgba(255,255,255,0.88);
  color: var(--text);
  font: inherit;
}
.textarea {
  min-height: 150px;
  padding-top: 16px;
  resize: vertical;
}
.form-row .input-grow { flex: 1 1 280px; }
.form-row .btn { flex: 0 0 auto; }
.faq-wrap { display: grid; gap: 14px; }
.faq-item {
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  font: inherit;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-answer {
  display: none;
  padding: 0 24px 24px;
}
.faq-item.open .faq-answer { display: block; }
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(22,55,45,0.06);
  color: var(--primary-2);
  font-size: 0.82rem;
}
.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.filter-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  color: var(--text);
  cursor: pointer;
}
.filter-btn.active {
  background: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.breadcrumbs span { opacity: 0.6; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}
.article-body {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(21,33,29,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 34px;
}
.article-body h2 { margin-top: 2.2rem; }
.article-body blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  background: rgba(200,164,90,0.08);
  border-radius: 0 18px 18px 0;
  color: var(--primary);
  font-size: 1.06rem;
}
.article-sidebar {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 120px;
}
.author-box {
  display: flex;
  gap: 16px;
  align-items: center;
}
.avatar {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 34px;
  align-items: start;
}
.gallery {
  display: grid;
  gap: 18px;
}
.gallery-main,
.gallery-thumb {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(22,55,45,0.18), rgba(200,164,90,0.2));
  border: 1px solid rgba(21,33,29,0.08);
}
.gallery-main { aspect-ratio: 1 / 1; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-thumb { aspect-ratio: 1 / 1; }
.offer-box {
  position: sticky;
  top: 120px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat {
  padding: 18px;
  background: rgba(22,55,45,0.05);
  border-radius: 18px;
  border: 1px solid rgba(21,33,29,0.08);
}
.footer {
  background: #10241d;
  color: var(--text-inverse);
  padding-top: 70px;
}
.footer p,
.footer a,
.footer li { color: rgba(246,241,233,0.72); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-bottom {
  border-top: 1px solid rgba(246,241,233,0.1);
  margin-top: 36px;
  padding: 20px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(200,164,90,0.08);
  border: 1px solid rgba(200,164,90,0.18);
  color: var(--primary);
}
.divider {
  height: 1px;
  background: var(--line);
  margin: 28px 0;
}
.hidden { display: none !important; }

@media (max-width: 1100px) {
  .split,
  .article-layout,
  .product-hero,
  .footer-grid,
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3,
  .trust-strip,
  .kpi-strip,
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .article-sidebar,
  .offer-box { position: static; }
}

@media (max-width: 820px) {
  .nav-links,
  .nav-cta .btn-secondary { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .site-header.open .nav-panel {
    display: grid;
  }
  .nav-panel {
    display: none;
    gap: 14px;
    padding: 0 0 22px;
  }
  .nav-panel a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.65);
    border: 1px solid var(--line);
  }
  .split,
  .product-hero,
  .article-layout,
  .grid-2,
  .grid-3,
  .grid-4,
  .trust-strip,
  .kpi-strip,
  .footer-grid,
  .stat-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero-card { padding: 24px; }
  .hero-media { min-height: 430px; }
  .book-stack { width: 220px; height: 300px; right: 24px; top: 48px; }
  .product-orb { width: 180px; height: 180px; left: 24px; bottom: 28px; }
  .article-frame { width: 210px; left: 24px; top: 36px; }
  .section { padding: 74px 0; }
  .section-tight { padding: 60px 0; }
}

@media (max-width: 540px) {
  .container { width: min(var(--container), calc(100% - 20px)); }
  .hero-media { min-height: 360px; }
  .book-stack {
    width: 180px;
    height: 250px;
    padding: 20px;
    right: 16px;
    top: 24px;
  }
  .book-stack h3,
  .product-orb h3 { font-size: 1.4rem; }
  .article-frame {
    width: 150px;
    min-height: 120px;
    padding: 16px;
  }
  .product-orb {
    width: 140px;
    height: 140px;
    left: 16px;
    bottom: 16px;
    padding: 16px;
  }
  .article-body,
  .panel,
  .card-body,
  .feature-item,
  .trust-item,
  .metric-card,
  .category-card { padding: 20px; }
  .btn-row,
  .form-row { flex-direction: column; }
  .btn,
  .form-row .btn { width: 100%; }
}


/* WordPress Core helpers */
.screen-reader-text {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 9999;
  background: #fff;
  color: #15211d;
  padding: 12px 16px;
  border-radius: 12px;
}
.skip-link:focus { left: 12px; }

.nav-links .current-menu-item > a,
.nav-links .current-menu-ancestor > a,
.nav-links .current_page_item > a,
.nav-panel .current-menu-item > a,
.nav-panel .current_page_item > a {
  color: var(--primary);
}

.wp-block-image img,
.entry-content img { border-radius: var(--radius-md); }

.entry-content,
.editorial-content {
  max-width: 760px;
}
.entry-content h2,
.entry-content h3,
.editorial-content h2,
.editorial-content h3 {
  color: var(--text);
  margin-top: 1.6em;
}
.entry-content ul,
.entry-content ol,
.editorial-content ul,
.editorial-content ol {
  padding-left: 1.25rem;
}
.entry-content blockquote,
.editorial-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,0.58);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.entry-content table,
.editorial-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.entry-content table th,
.entry-content table td,
.editorial-content table th,
.editorial-content table td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
}

.page-hero {
  padding: var(--space-7) 0 var(--space-5);
}
.page-hero .meta,
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-soft);
  font-size: 0.92rem;
}
.post-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}
.post-sidebar {
  position: sticky;
  top: 110px;
}
.post-sidebar .panel + .panel {
  margin-top: 24px;
}
.author-box {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
  background: rgba(255,255,255,0.58);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.author-box .avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #2b5a4a);
  color: var(--text-inverse);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
}
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
}
.post-nav a {
  flex: 1;
  min-width: 0;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.66);
  color: var(--text);
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}
.filter-btn.active {
  background: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
}
.hidden { display: none !important; }

.archive-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pagination-wrap {
  margin-top: 36px;
}
.pagination-wrap .nav-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.pagination-wrap .page-numbers {
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.65);
}
.pagination-wrap .current {
  background: var(--primary);
  color: var(--text-inverse);
}
.recommendation-grid {
  display: grid;
  gap: 16px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 700;
}
.warning-list li::before {
  content: "–";
  color: var(--accent-2);
}
.featured-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.featured-media img {
  width: 100%;
  height: auto;
}
.form-shell {
  display: grid;
  gap: 14px;
}
.form-shell input,
.form-shell textarea,
.form-shell select {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
}
.form-shell textarea { min-height: 150px; resize: vertical; }
.note {
  font-size: 0.92rem;
  color: var(--text-soft);
}
footer.site-footer .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.site-footer .menu li + li { margin-top: 10px; }

@media (max-width: 1024px) {
  .post-shell,
  .archive-grid {
    grid-template-columns: 1fr;
  }
  .post-sidebar { position: static; }
}

@media (max-width: 767px) {
  .post-nav { flex-direction: column; }
}

.nav-menu-list,
.nav-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-menu-list li,
.nav-panel-list li { margin: 0; padding: 0; }
.nav-menu-list a,
.nav-panel-list a { color: var(--text-soft); }
.nav-menu-list a:hover,
.nav-panel-list a:hover { color: var(--primary); }
.nav-panel-list { flex-direction: column; align-items: flex-start; gap: 14px; }
.site-header .custom-logo-link img {
  max-height: 42px;
  width: auto;
}
