/* ===========================================================
 * 日本彭祖学院官网 全站样式（手机优先）
 * 13 栏目统一规范：Logo 顶左 · 无横向导航 · 无弹窗 · 无自动播放
 * =========================================================== */

:root {
  --navy: #1B1B3A;
  --gold: #C9A96E;
  --gold-deep: #a97d1f;
  --cream: #FAF7F2;
  --paper: #fffdf7;
  --ink: #3d3020;
  --line: rgba(169, 125, 31, .25);
  --shadow: 0 8px 32px rgba(169, 125, 31, .12);
  --radius: 10px;
  --max-w: 1180px;
}

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

html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans",
               "Noto Sans CJK SC", "Noto Sans JP", sans-serif;
  background: radial-gradient(circle at 50% 0%, #fdf6e9 0%, #f6efe2 70%, #f0e5cf 100%);
  color: var(--ink);
  line-height: 1.7;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ============== 顶部 Logo 区（顶左）============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, .96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.site-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.site-logo-link img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
}
.site-logo-link .brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.2;
  /* 第 2 批 2026-09-10 抬头栏改造：校名完整不截断 */
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
.site-logo-link .brand small {
  display: block;
  font-size: .65rem;
  color: #8a6a2e;
  font-weight: 400;
  letter-spacing: .2em;
  margin-top: 2px;
}

/* 第 2 批 2026-09-10 抬头栏改造：语言切换靠右 + 收窄 padding/gap 给校名让位 */
.site-header { gap: 14px; }
/* 第 4 批 2026-09-10 整改：语言按钮紧贴校名（株）后面，不再靠最右 */
.site-header { justify-content: flex-start; }
.lang-switcher { gap: 4px; margin-left: 4px; }
.lang-switcher a { padding: 6px 9px; min-width: 36px; }

/* 语言切换控件 */
.lang-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}
.lang-switcher a {
  font-size: .8rem;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  color: var(--gold-deep);
  background: #fff;
  min-width: 36px;
  text-align: center;
}
.lang-switcher a.active {
  background: var(--gold-deep);
  color: #fff;
  border-color: var(--gold-deep);
}

/* ============== 主内容容器 ============== */
.page-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 20px 80px;
}

/* ============== 面包屑 ============== */
.breadcrumb {
  font-size: .85rem;
  color: #8a6a2e;
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.breadcrumb a {
  color: #8a6a2e;
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb .sep { margin: 0 6px; color: #c5a86a; }

/* ============== 页面标题区 ============== */
.page-head {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.page-head h1 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.page-head .lead {
  color: #6e5a3a;
  font-size: clamp(.9rem, 2.4vw, 1rem);
}

/* ============== 通用栅格（PC 三列 / 手机单列）============== */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============== 卡片 ============== */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #efe5d0;
}
.card-body {
  padding: 14px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}
.card-meta {
  font-size: .8rem;
  color: #8a6a2e;
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.card-desc {
  font-size: .9rem;
  color: #5a4a30;
  flex: 1;
}
.card-link {
  display: inline-block;
  margin-top: 10px;
  font-size: .85rem;
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 600;
}
.card-link::after { content: " →"; }

/* ============== 人物卡（圆角头像）============== */
.person-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.person-card img {
  width: 110px;
  height: 110px;
  /* 1:1 正方形头像框 — 轻微圆角矩形，禁止圆形裁切以保护胸前 Logo */
  border-radius: 10px;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
  border: 2px solid var(--line);
}
.person-card .name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.person-card .role {
  font-size: .85rem;
  color: var(--gold-deep);
  letter-spacing: .05em;
}

/* ============== 章节标题 ============== */
.section-title {
  font-size: clamp(1.25rem, 4vw, 1.6rem);
  color: var(--navy);
  margin: 32px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  letter-spacing: .04em;
  position: relative;
}
.section-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1em;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: -2px;
}

/* ============== 文本段落 ============== */
.prose {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.85;
  max-width: 760px;
}
.prose p { margin-bottom: 14px; }
.prose strong { color: var(--navy); font-weight: 700; }
.prose .small { font-size: .85rem; color: #8a6a2e; }

/* ============== 时间线（大事记）============== */
.timeline {
  list-style: none;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  margin: 18px 0;
}
.timeline li {
  position: relative;
  padding: 6px 0 14px;
  font-size: .95rem;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============== 加载更多按钮 ============== */
.load-more-wrap {
  text-align: center;
  margin: 28px 0;
}
.btn-load-more {
  display: inline-block;
  padding: 12px 36px;
  background: var(--gold-deep);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: .1em;
  transition: background .2s;
}
.btn-load-more:hover { background: #8a6316; }
.btn-load-more:disabled {
  background: #c9b48a;
  cursor: default;
}

/* ============== 视频容器（手动播放，无自动）============== */
.video-frame {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}
.video-frame video,
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============== 受控隐藏 ============== */
.hidden-block {
  display: none !important;
}
.dash-block {
  background: #fff;
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .9rem;
  color: #8a6a2e;
}

/* ============== 友情链接列表 ============== */
.friends-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) {
  .friends-list { grid-template-columns: repeat(2, 1fr); }
}
.friends-list li a {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
}
.friends-list li a:hover {
  border-color: var(--gold);
  background: #fff;
}
.friends-list .friends-note {
  grid-column: 1/-1;
  font-size: .85rem;
  color: #8a6a2e;
  padding: 8px 4px 0;
}

/* ============== 联系我们列表 ============== */
.contact-list {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .contact-list { grid-template-columns: repeat(2, 1fr); } }
.contact-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.contact-item .name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-item .role {
  color: var(--gold-deep);
  font-size: .9rem;
  margin-bottom: 10px;
}
.contact-item .info {
  font-size: .9rem;
  color: #5a4a30;
  line-height: 1.9;
}

/* ============== 法务区块 ============== */
.legal-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 20px 0;
}
.legal-block h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.legal-block dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  font-size: .92rem;
}
.legal-block dt {
  color: #8a6a2e;
  font-weight: 600;
  white-space: nowrap;
}
.legal-block dd {
  color: var(--ink);
  word-break: break-all;
}

/* ============== 底部 ============== */
.site-footer {
  background: var(--navy);
  color: #d4c89a;
  padding: 36px 20px 24px;
  margin-top: 40px;
  text-align: center;
  font-size: .85rem;
}
.site-footer .legal-line {
  margin-bottom: 8px;
  letter-spacing: .05em;
}
.site-footer .copyright {
  margin-top: 14px;
  color: #8d8159;
  font-size: .75rem;
}

/* ============== 语言选择首页专用 ============== */
.lang-portal {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.lang-portal .emblem {
  width: clamp(90px, 22vw, 140px);
  height: clamp(90px, 22vw, 140px);
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 4px 18px rgba(169, 125, 31, .35));
}
.lang-portal h1 {
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 400;
  letter-spacing: .35em;
  margin-bottom: .4rem;
  color: var(--gold-deep);
  text-indent: .35em;
}
.lang-portal .sub {
  font-size: clamp(.75rem, 3vw, .9rem);
  color: #8a6a2e;
  letter-spacing: .18em;
  margin-bottom: 2rem;
  text-align: center;
}
.lang-portal .prompt {
  font-size: clamp(.95rem, 3vw, 1.1rem);
  color: #6e5a3a;
  margin-bottom: 1.6rem;
  letter-spacing: .12em;
}
.lang-portal .langs {
  display: flex;
  gap: clamp(1rem, 4vw, 1.8rem);
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 720px;
}
.lang-portal .langs a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 140px;
  max-width: 200px;
  min-height: clamp(130px, 32vw, 170px);
  border: 1px solid rgba(169, 125, 31, .55);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  background: rgba(169, 125, 31, .06);
  transition: all .3s ease;
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  letter-spacing: .2em;
}
.lang-portal .langs a:hover,
.lang-portal .langs a:focus {
  background: rgba(169, 125, 31, .15);
  border-color: var(--gold-deep);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(169, 125, 31, .25);
}
.lang-portal .langs a small {
  font-size: .7rem;
  color: #8a6a2e;
  margin-top: .7rem;
  letter-spacing: .1em;
  font-weight: 400;
}

/* ============== 学员见证特别样式 =============== */
.testimony-card .meta-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: #8a6a2e;
  margin-bottom: 8px;
}
.testimony-card .badge {
  display: inline-block;
  font-size: .72rem;
  padding: 2px 8px;
  background: rgba(201, 169, 110, .15);
  color: var(--gold-deep);
  border-radius: 4px;
  letter-spacing: .05em;
}
.locked-banner {
  background: var(--paper);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 18px;
  font-size: .85rem;
  color: #8a6a2e;
  letter-spacing: .04em;
}

/* ============== 出版物标签样式 ============== */
.pub-tag {
  display: inline-block;
  font-size: .72rem;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: .05em;
  font-weight: 600;
  margin-right: 6px;
}
.pub-tag.free { background: #e8f4ec; color: #2e6f4a; }
.pub-tag.paid { background: #f5ecdc; color: #8a6316; }
.pub-tag.course { background: #ecedf5; color: #404674; }

/* ============== 媒体声明小字 ============== */
.disclaimer {
  font-size: .8rem;
  color: #8a6a2e;
  padding: 8px 12px;
  background: rgba(201, 169, 110, .08);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  margin: 14px 0;
}

/* ============== 工具类 ============== */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ============== 响应式主导航 ==============
 *  PC（≥ 768px）：横向 flex 排布，多列并排
 *  手机（< 768px）：垂直竖向折叠下拉，按钮展开/收起
 *  语言跟随当前页面（HTML lang / data-lang 决定按钮文字）
 *  =========================================== */
.site-nav {
  background: rgba(255, 253, 247, .94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 64px;
  z-index: 99;
}
.site-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.site-nav-toggle-btn {
  display: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--gold-deep);
  font-size: .85rem;
  padding: 8px 12px;
  cursor: pointer;
  letter-spacing: .05em;
  font-family: inherit;
}
.site-nav-toggle-btn::before {
  content: "☰ ";
}
.site-nav-toggle-btn[aria-expanded="true"]::before {
  content: "✕ ";
}
.site-nav-list {
  list-style: none;
  /* 第 3 批 2026-09-10 导航栏改造：6×2 网格，紧贴无间隙 */
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  margin: 0;
  overflow: visible;
  max-width: var(--max-w);
}
.site-nav-list li {
  width: 100%;
  display: flex;
}
.site-nav-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: .82rem;
  padding: 9px 2px;
  border-radius: 0;
  text-decoration: none;
  color: var(--gold-deep);
  border: 1px solid var(--line);
  /* 仅留右边+下边形成网格细线；首行无上边、末列无右边、末行无下边 */
  border-top: 0;
  border-left: 0;
  letter-spacing: .04em;
  white-space: nowrap;
  background: transparent;
  transition: background .15s;
}
.site-nav-list li:nth-child(6n) a { border-right: 0; }
.site-nav-list li:nth-last-child(-n+6) a { border-bottom: 0; }
.site-nav-list li a:hover {
  background: rgba(201, 169, 110, .12);
}
.site-nav-list li a.active {
  background: var(--gold-deep);
  color: #fff;
  font-weight: 600;
}

/* 移动端：< 768px 折叠（保留旧 toggle 行为；新 grid 6×2 在下方 .site-nav-list V3 块统一生效）*/
@media (max-width: 767.98px) {
  .site-nav-toggle-btn {
    display: inline-flex;
    align-items: center;
  }
  .site-nav-list {
    display: none;
    width: 100%;
    padding: 6px 0 12px;
    gap: 2px;
  }
  .site-nav-list.is-open {
    display: flex;
  }
  .site-nav-list li a {
    text-align: left;
    padding: 10px 14px;
    font-size: .9rem;
    margin-bottom: 4px;
    background: var(--paper);
  }
  .site-nav-list li a.active {
    background: var(--gold-deep);
    color: #fff;
  }
}

/* ============== 全站移动端统一导航（V3 - 2026-09-10 网格化改造版）
 *  不动 PC（≥768px）grid 6×2；≤767.98px 强制 grid 6×2 覆盖旧 flex 行为，
 *  移除 toggle 按钮依赖；≤540px 进一步缩字 + padding；≤420px 兜底为 3×4。
 *  =========================================== */
@media (max-width: 767.98px) {
  /* 移除 toggle 按钮依赖，导航常驻展开 */
  .site-nav-toggle-btn { display: none !important; }
  .site-nav-list {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
    align-items: stretch !important;
  }
  .site-nav-list li {
    flex: unset !important;
    display: flex !important;
  }
  .site-nav-list li a {
    padding: 8px 1px !important;
    font-size: .7rem !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
  }
  .site-nav-list li a:not(.active) {
    background: transparent !important;
  }
}

@media (max-width: 540px) {
  /* site-header：缩 padding + 强制 logo+lang 第 1 行、nav 独占第 2 行 */
  .site-header {
    flex-wrap: wrap !important;
    padding: 10px 12px !important;
    row-gap: 8px !important;
    column-gap: 8px !important;
  }
  .site-logo-link img { width: 36px !important; height: 36px !important; }
  .site-logo-link .brand { font-size: .9rem !important; letter-spacing: .08em !important; }
  .site-logo-link .brand small { font-size: .55rem !important; letter-spacing: .15em !important; }
  /* 语言切换：缩小按钮，紧贴校名 */
  .lang-switcher {
    margin-left: 4px !important;
    gap: 3px !important;
  }
  .lang-switcher a {
    font-size: .7rem !important;
    padding: 3px 6px !important;
    min-width: 28px !important;
  }
  /* site-nav 独占整行 */
  .site-nav { width: 100% !important; }
  .site-nav-inner { padding: 0 4px !important; max-width: none !important; }
  /* 网格 6×2 在 ≤540px 进一步缩字号 + padding（保持两排，禁止变三/四排）*/
  .site-nav-list li a {
    padding: 5px 1px !important;
    font-size: .62rem !important;
  }
}

/* ≤420px 抬头栏强制单行（爱卿明示"提到上一栏，节省空间，不要把校名挤出去"）
 *  🔒 LOCKED 2026-09-10 爱卿钦定
 *  ❌ 禁止 flex-wrap（会让语言切换被挤到第二行）
 *  ❌ 禁止回退到 .site-header { flex-wrap: wrap }
 *  =========================================== */
@media (max-width: 420px) {
  .site-header {
    flex-wrap: nowrap !important;
    padding: 8px 10px !important;
    row-gap: 0 !important;
    column-gap: 6px !important;
  }
  .site-logo-link img { width: 30px !important; height: 30px !important; flex-shrink: 0 !important; }
  .site-logo-link .brand {
    font-size: .82rem !important;
    letter-spacing: .04em !important;
    line-height: 1.15 !important;
  }
  .site-logo-link .brand small {
    display: none !important;   /* 极窄屏隐藏 JAPAN PENGZU ACADEMY 副标，节省横向空间 */
  }
  .lang-switcher {
    margin-left: 0 !important;
    gap: 2px !important;
    flex-shrink: 0 !important;
  }
  .lang-switcher a {
    font-size: .68rem !important;
    padding: 3px 5px !important;
    min-width: 26px !important;
    letter-spacing: 0 !important;
    border-radius: 4px !important;
  }
  /* 强制 "English" 按钮显示为大写 "ENGLISH"（爱卿钦定，全站统一） */
  .lang-switcher a[href*="/en/"] {
    text-transform: uppercase !important;
    font-weight: 700 !important;
  }
}

/* ≤420px 极窄屏（含 iPhone SE/12mini/13mini 等 375px 设备）：
 *  🔒 LOCKED 2026-09-10 爱卿钦定 · 6×2 网格，缩 padding + 字号 + 浮雕 box-shadow
 *  ❌ 禁止改成 4 列（爱卿明示"不要分成 4 列"）
 *  ❌ 禁止改回 3×4（爱卿明示"不要弄成四行"）
 *  12 项 = 6 列 × 2 行 = 2 排。中文 4 字/日文 4 字符自然容纳；英文长词接受 ellipsis 截断
 *  =========================================== */
@media (max-width: 420px) {
  .site-nav-list,
  body .site-nav-list,
  .site-nav-inner .site-nav-list {
    grid-template-columns: repeat(6, 1fr) !important;
  }
  .site-nav-list li a {
    padding: 5px 1px !important;
    font-size: .62rem !important;
    letter-spacing: 0 !important;
    line-height: 1.2 !important;
  }
  /* 🔒 LOCKED · 浮雕式按钮：内阴影凸起感，hover/active 切换方向 */
  .site-nav-list li a {
    background: linear-gradient(180deg, #fbf4e3 0%, #f5ead0 100%) !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.65),
      inset 0 -1px 0 rgba(160,120,40,.18),
      0 1px 1px rgba(120,90,30,.10) !important;
    border-top: 1px solid var(--line) !important;
    border-bottom: 0 !important;
    border-left: 0 !important;
  }
  .site-nav-list li:nth-child(6n) a { border-right: 0 !important; }
  .site-nav-list li:nth-last-child(-n+6) a { border-bottom: 0 !important; }
  .site-nav-list li a:hover {
    background: linear-gradient(180deg, #f3e8c4 0%, #ead49d 100%) !important;
  }
  .site-nav-list li a.active {
    background: linear-gradient(180deg, var(--gold-deep) 0%, #8a6a2e 100%) !important;
    color: #fff !important;
    font-weight: 600 !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.25),
      inset 0 -1px 0 rgba(0,0,0,.20) !important;
  }
}