/* ============================================================
   FONKO STUDIO · 个人主页
   视觉：低饱和度中国传统色 + 暗色主题 + 毛玻璃 + 悬浮通透
   ============================================================ */

:root {
  /* 底色：玄 / 墨 */
  --bg:        #131110;
  --bg-soft:   #1A1716;
  --surface:   rgba(237, 233, 226, 0.035);
  --surface-2: rgba(237, 233, 226, 0.06);
  --surface-3: rgba(237, 233, 226, 0.09);

  /* 线条：细分割 */
  --line:      rgba(237, 233, 226, 0.075);
  --line-2:    rgba(237, 233, 226, 0.14);

  /* 文字：米白 */
  --text:      #EDE9E2;
  --text-2:    #A8A29A;
  --text-3:    #6E6862;

  /* 中国传统色（低饱和） */
  --tea:       #9A7551;   /* 茶褐 */
  --tea-soft:  rgba(154, 117, 81, 0.14);
  --dai:       #5A7791;   /* 黛蓝 */
  --dai-soft:  rgba(90, 119, 145, 0.14);
  --zhu:       #6E8874;   /* 竹青 */
  --zhu-soft:  rgba(110, 136, 116, 0.14);
  --zhu-sha:   #9C5F51;   /* 朱砂 */

  --font-serif: "Songti SC", "STSong", "Noto Serif SC", "Source Han Serif SC", "SimSun", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
               "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;

  --wrap: 1080px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* 跳转到主内容（键盘/读屏用户，平时不可见） */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
  background: var(--tea);
  color: #17140F;
  font-size: 13px;
}
.skip-link:focus {
  left: 0;
}

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

/* ---------- 背景光斑（低饱和，极克制） ---------- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.5;
}
.orb-a {
  width: 520px; height: 520px;
  top: -180px; left: -100px;
  background: radial-gradient(circle, rgba(154, 117, 81, 0.32), transparent 68%);
}
.orb-b {
  width: 460px; height: 460px;
  top: 32%; right: -160px;
  background: radial-gradient(circle, rgba(90, 119, 145, 0.26), transparent 68%);
}
.orb-c {
  width: 420px; height: 420px;
  bottom: -120px; left: 34%;
  background: radial-gradient(circle, rgba(110, 136, 116, 0.2), transparent 68%);
}

main, .nav, .foot { position: relative; z-index: 1; }

/* ---------- 导航：毛玻璃 ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(19, 17, 16, 0.72);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 30px; height: 30px;
  flex: 0 0 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: #EFE8DD;
  background: linear-gradient(145deg, rgba(154,117,81,0.85), rgba(90,119,145,0.7));
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.brand-mark.small { width: 26px; height: 26px; flex-basis: 26px; font-size: 14px; border-radius: 8px; }
.brand-text {
  font-size: 14px;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.brand-text em {
  font-style: normal;
  color: var(--text-3);
  font-weight: 400;
}

.links { display: flex; gap: 30px; }
.links a {
  font-size: 13.5px;
  color: var(--text-2);
  position: relative;
  transition: color 0.25s var(--ease);
}
.links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--tea);
  transition: width 0.3s var(--ease);
}
.links a:hover { color: var(--text); }
.links a:hover::after { width: 100%; }

/* 导航内的工作台入口：是「路由」不是「页内锚点」，故用 chip 样式区分 */
.links a.nav-entry {
  color: var(--text-2);
  padding: 4px 13px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-size: 12.5px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease),
              background 0.25s var(--ease);
}
.links a.nav-entry::after { display: none; }
.links a.nav-entry:hover {
  color: var(--text);
  border-color: rgba(154, 117, 81, 0.6);
  background: var(--tea-soft);
}

.menu-toggle {
  display: none;
  background: none; border: 0;
  width: 34px; height: 34px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--text-2);
  transition: transform 0.3s var(--ease);
}
.menu-toggle.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.open span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 22px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-solid {
  color: #17140F;
  background: linear-gradient(145deg, #C9A87C, #A8804F);
  box-shadow: 0 6px 22px rgba(154, 117, 81, 0.28);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(154, 117, 81, 0.38); }

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line-2);
  background: var(--surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 117, 81, 0.55);
  background: var(--tea-soft);
}
.nav-cta { height: 36px; padding: 0 18px; font-size: 13px; }

/* ---------- Hero ---------- */
.hero {
  padding: 168px 0 108px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero .wrap { width: 100%; }
.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.2em;
  color: var(--tea);
  margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 74px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}
.hero h1 .grad {
  background: linear-gradient(100deg, #D8BC94 8%, #9DB4C7 52%, #A9C0AC 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lede {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.95;
  color: var(--text-2);
  margin-bottom: 40px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.facts {
  display: flex;
  gap: 0;
  margin-top: 68px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.facts li {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.facts li:last-child { border-right: 0; }
.facts li + li { padding-left: 24px; }
.facts strong {
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}
.facts span { font-size: 12.5px; color: var(--text-3); }

/* ---------- 区块 ---------- */
.section { padding: 104px 0; }
.section + .section { border-top: 1px solid var(--line); }

.sec-head { margin-bottom: 52px; max-width: 620px; }
.sec-index {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-3);
  display: block;
  margin-bottom: 14px;
}
.sec-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 14px;
}
.sec-head p { color: var(--text-2); font-size: 14.5px; }

/* ---------- 业务卡片 ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  padding: 30px 26px 26px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
              background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237,233,226,0.22), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  background: var(--surface-2);
  border-color: var(--line-2);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4);
}
.card:hover::before { opacity: 1; }

.card-tag {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  padding: 3px 11px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.card-tag.tea { color: #D3B489; background: var(--tea-soft); border: 1px solid rgba(154,117,81,0.3); }
.card-tag.dai { color: #A6C0D6; background: var(--dai-soft); border: 1px solid rgba(90,119,145,0.3); }
.card-tag.zhu { color: #B0C7B5; background: var(--zhu-soft); border: 1px solid rgba(110,136,116,0.3); }

.card h3 {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 12px;
}
.card p { font-size: 14px; color: var(--text-2); line-height: 1.85; }

.card-list {
  margin: 22px 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.card-list li {
  font-size: 13px;
  color: var(--text-3);
  padding-left: 16px;
  position: relative;
  line-height: 2.1;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.95em;
  width: 5px; height: 1px;
  background: var(--text-3);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--text);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.card-link span { transition: transform 0.3s var(--ease); }
.card-link:hover { color: #D3B489; }
.card-link:hover span { transform: translateX(4px); }

/* ---------- 作品 ---------- */
.works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.work {
  padding: 32px 30px 34px;
  background: rgba(19, 17, 16, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.4s var(--ease);
}
.work:hover { background: var(--surface-2); }
.work-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.work-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--zhu);
  box-shadow: 0 0 0 3px rgba(110, 136, 116, 0.14);
}
.work-meta { font-size: 12px; color: var(--text-3); letter-spacing: 0.06em; }
.work h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 10px;
}
.work p { font-size: 13.5px; color: var(--text-2); line-height: 1.9; }

/* ---------- 关于 ---------- */
.about {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text { color: var(--text-2); font-size: 15px; line-height: 2; margin-bottom: 18px; }
.kv { margin-top: 34px; }
.kv li {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
}
.kv li:last-child { border-bottom: 1px solid var(--line); }
.kv span { color: var(--text-3); flex: 0 0 52px; }
.kv b { font-weight: 400; color: var(--text); }

.quote {
  padding: 38px 30px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}
.quote::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154,117,81,0.2), transparent 70%);
}
.quote p {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 16px;
}
.quote span { font-size: 12.5px; color: var(--text-3); }

/* ---------- 联系 ---------- */
.contact {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: stretch;
}
.contact-card {
  padding: 28px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: center;
}
.qr {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  border: 1px dashed var(--line-2);
  background:
    linear-gradient(135deg, rgba(154,117,81,0.1), rgba(90,119,145,0.08)),
    var(--bg-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}
.qr .qr-glyph { color: var(--text-3); opacity: 0.85; }
.qr span { font-size: 12.5px; color: var(--text-3); letter-spacing: 0.08em; }
.qr.qr-loaded { border-style: solid; border-color: var(--line-2); }
.qr.qr-loaded img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--r-sm); }
.qr-hint { font-size: 12.5px; color: var(--text-3); line-height: 1.85; }

.contact-list {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 8px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease);
}
.row:last-child { border-bottom: 0; }
a.row:hover { padding-left: 8px; }
.row-label { flex: 0 0 46px; font-size: 12.5px; color: var(--text-3); letter-spacing: 0.08em; }
.row-value { font-size: 14.5px; color: var(--text); }

/* 可复制行（微信号） */
.row-copy { cursor: pointer; }
.row-tip {
  margin-left: auto;
  font-size: 11.5px;
  color: var(--text-3);
  padding: 2px 9px;
  border: 1px solid var(--line);
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease);
}
.row-copy:hover .row-tip { opacity: 1; }
.row-copy:hover .row-tip { color: var(--tea); border-color: rgba(154, 117, 81, 0.5); }

/* ---------- 页脚 ---------- */
.foot {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  margin-top: 40px;
}
.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.foot-left { display: flex; align-items: center; gap: 14px; }
.foot-left p { font-size: 13px; letter-spacing: 0.1em; margin-bottom: 2px; }
.foot-left span { font-size: 12px; color: var(--text-3); }

.foot-note {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

/* ---------- 阅读进度条 ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  z-index: 60;
  background: linear-gradient(90deg, var(--tea), var(--dai) 55%, var(--zhu));
  transition: width 0.12s linear;
  will-change: width;
}

/* ---------- Hero 装饰（兰草）与滚动提示 ---------- */
.hero { position: relative; }
.hero .wrap { position: relative; z-index: 1; }

.hero-art {
  position: absolute;
  right: -6px;
  top: 50%;
  width: 330px;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 60% 56% at 50% 50%, #000 40%, transparent 76%);
  mask-image: radial-gradient(ellipse 60% 56% at 50% 50%, #000 40%, transparent 76%);
  transform: translateY(-52%);
  animation: breathe 9s ease-in-out infinite;
}
.hero-art img { display: block; width: 100%; height: auto; }

@keyframes breathe {
  0%, 100% { transform: translateY(-52%) scale(1);    opacity: 0.42; }
  50%      { transform: translateY(-52%) scale(1.028); opacity: 0.56; }
}

@media (max-width: 1180px) {
  .hero-art { display: none; }
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: var(--text-3);
  transition: color 0.3s var(--ease);
}
.scroll-hint:hover { color: var(--text-2); }
.scroll-line {
  width: 1px;
  height: 34px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(237, 233, 226, 0.16));
}
.scroll-line::after {
  content: "";
  position: absolute;
  left: 0; top: -34px;
  width: 1px; height: 34px;
  background: linear-gradient(180deg, transparent, var(--tea));
  animation: drop 2.6s var(--ease) infinite;
}
@keyframes drop {
  0%   { transform: translateY(0);    opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translateY(68px); opacity: 0; }
}

/* ---------- 章节序号：中文数字 + 细线 ---------- */
.sec-index {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--tea);
  margin-bottom: 16px;
}
.sec-index::before {
  content: "";
  flex: 0 0 26px;
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

/* ---------- 卡片：常驻顶部高光 + 跟随光斑 ---------- */
.card::before { opacity: 0.5; }
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%),
              rgba(154, 117, 81, 0.13), transparent 68%);
}
.card:hover::after { opacity: 1; }

/* 作品格：hover 左侧竖向高光 */
.work { position: relative; }
.work::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--tea), transparent);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.work:hover::before { opacity: 1; }

/* ---------- 引言卡：茶盏点缀 ---------- */
.quote-art {
  display: block;
  width: 112px;
  height: auto;
  margin: 0 auto 20px;
  opacity: 0.62;
}

/* ---------- 回到顶部 ---------- */
.to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 55;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-2);
  border: 1px solid var(--line-2);
  background: rgba(26, 23, 22, 0.72);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease),
              color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { color: var(--text); border-color: rgba(154, 117, 81, 0.6); }

/* ---------- 入场动效 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ---------- 响应式 ---------- */
@media (max-width: 960px) {
  .cards-3 { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .works { grid-template-columns: repeat(2, 1fr); }
  .work:nth-child(3) { grid-column: 1 / -1; }
  .contact { grid-template-columns: 1fr; }
  .contact-card { max-width: 300px; }
}

@media (max-width: 720px) {
  .hero { padding: 132px 0 72px; min-height: auto; }
  .br-m { display: none; }
  .section { padding: 72px 0; }
  .works { grid-template-columns: 1fr; }
  .work:nth-child(3) { grid-column: auto; }
  .links { display: none; }
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }

  .nav.menu-open { background: rgba(19,17,16,0.94); }
  .nav.menu-open .links {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 28px 22px;
    background: rgba(19,17,16,0.94);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--line);
  }
  .nav.menu-open .links a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14.5px;
  }
  .nav.menu-open .links a::after { display: none; }

  .facts { margin-top: 46px; }
  .facts li, .facts li + li { padding: 0 14px; }
  .facts strong { font-size: 22px; }
  .facts span { font-size: 11.5px; }

  .hero-art, .scroll-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  .hero-art, .scroll-line::after { animation: none !important; }
  .hero-art { opacity: 0.45; }
}
