/* ============================================================
   SIENNA · 紫晶星圖 / Amethyst Star Chart
   复制自 specs/TOKENS與文案.md · 2026-07-11
   ============================================================ */

:root {
  --bg-ivory:        #F5F0E8;
  --bg-ivory-2:      #EDE5D5;
  --accent-amethyst: #6B5B8C;
  --depth-smoke:     #4A3A5C;
  --depth-smoke-2:   #2C2438;
  --warm-antique:    #C9A961;
  --ink-night:       #1F1B2E;
  --ink-soft:        #3A3346;

  --serif: "Cormorant Garamond", "Noto Serif SC", "Songti SC", serif;
  --sans:  "Inter", "Noto Sans SC", "PingFang SC", -apple-system, sans-serif;

  --maxw: 1280px;
  --pad:  clamp(24px, 4vw, 64px);

  --ease:  cubic-bezier(.2,.7,.2,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink-soft);
  background: var(--bg-ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

img, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ============================================================
   自定义光标
   ============================================================ */
.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}
.cursor {
  width: 32px; height: 32px;
  border: 1px solid var(--accent-amethyst);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 4px; height: 4px;
  background: var(--accent-amethyst);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor.hover {
  width: 56px; height: 56px;
  border-color: var(--warm-antique);
}
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}

/* ============================================================
   HUD 四角小字
   ============================================================ */
.hud {
  position: fixed;
  z-index: 100;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-night);
  opacity: .55;
  pointer-events: none;
  mix-blend-mode: difference;
}
.hud-tl { top: 18px; left: 22px; }
.hud-tr { top: 18px; right: 22px; }
.hud-bl { bottom: 18px; left: 22px; }
.hud-br { bottom: 18px; right: 22px; font-variant-numeric: tabular-nums; }
@media (max-width: 640px) {
  .hud { font-size: 9px; letter-spacing: 2px; }
  .hud-tl, .hud-bl { left: 14px; }
  .hud-tr, .hud-br { right: 14px; }
}

/* ============================================================
   环境音開關
   ============================================================ */
.audio-toggle {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  background: rgba(31,27,46,.85);
  color: var(--bg-ivory);
  border: 1px solid var(--accent-amethyst);
  padding: 14px 12px;
  cursor: none;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  transition: all .3s var(--ease);
}
.audio-toggle:hover {
  border-color: var(--warm-antique);
  background: rgba(74,58,92,.95);
}
.eq {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  height: 16px;
}
.eq i {
  display: block;
  width: 2px;
  height: 4px;
  background: var(--bg-ivory);
  transition: height .15s;
}
.audio-toggle[data-state="playing"] .eq i {
  animation: eq 1s ease-in-out infinite;
}
.audio-toggle[data-state="playing"] .eq i:nth-child(1) { animation-delay: 0s; }
.audio-toggle[data-state="playing"] .eq i:nth-child(2) { animation-delay: .2s; }
.audio-toggle[data-state="playing"] .eq i:nth-child(3) { animation-delay: .4s; }
.audio-toggle[data-state="playing"] .eq i:nth-child(4) { animation-delay: .6s; }
@keyframes eq {
  0%, 100% { height: 4px; }
  50%      { height: 16px; }
}
@media (max-width: 768px) {
  .audio-toggle {
    right: auto;
    left: 12px;
    top: auto;
    bottom: 18px;
    transform: none;
    padding: 8px 10px;
    flex-direction: row;
    gap: 6px;
  }
  .eq { height: 12px; }
}

/* ============================================================
   Section 通用
   ============================================================ */
.section {
  position: relative;
  min-height: 100vh;
  padding: clamp(80px, 12vh, 160px) var(--pad);
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  overflow: hidden;
}
.section-tag {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-amethyst);
  margin-bottom: 18px;
  opacity: .9;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink-night);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

/* ============================================================
   段 1 · HERO
   ============================================================ */
.section-hero {
  padding: 0;
  align-items: stretch;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(.85) brightness(.95);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(245,240,232,.35) 0%,
      rgba(245,240,232,.55) 45%,
      rgba(74,58,92,.45) 100%),
    radial-gradient(ellipse at 50% 65%, transparent 30%, rgba(31,27,46,.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--pad);
  text-align: center;
  align-self: center;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 8px;
  color: var(--ink-night);
  opacity: 0;
  margin-bottom: 36px;
  transform: translateY(20px);
  animation: heroIntro 1.2s var(--ease) .3s forwards;
}
.hero-slogan-big {
  font-family: var(--serif);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(48px, 9vw, 128px);
  line-height: 1.15;
  letter-spacing: 4px;
  color: var(--ink-night);
  margin: 0 0 28px;
  text-shadow: 0 2px 40px rgba(245,240,232,.35);
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-slogan-big span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  animation: heroChar 1.2s var(--ease) forwards;
}
.hero-slogan-big span:nth-child(1) { animation-delay: .6s; }
.hero-slogan-big span:nth-child(2) { animation-delay: .72s; }
.hero-slogan-big span:nth-child(3) { animation-delay: .84s; }
.hero-slogan-big span:nth-child(4) { animation-delay: .96s; }
.hero-slogan-big span:nth-child(5) { animation-delay: 1.08s; }
.hero-slogan-big span:nth-child(6) { animation-delay: 1.20s; }
.hero-slogan-big span:nth-child(7) { animation-delay: 1.32s; }
.hero-slogan-big span:nth-child(8) { animation-delay: 1.44s; }
@keyframes heroChar {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero-slogan {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--ink-night);
  opacity: 0;
  transform: translateY(20px);
  animation: heroIntro 1.2s var(--ease) 2.4s forwards;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--ink-night);
  opacity: 0;
  transform: translateY(20px);
  animation: heroIntro 1.2s var(--ease) 2.8s forwards;
  letter-spacing: 1.5px;
}
@keyframes heroIntro {
  to { opacity: 1; transform: translateY(0); }
}
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 18px;
  height: 28px;
  opacity: 0;
  animation: heroIntro 1s var(--ease) 3.2s forwards;
}
.scroll-cue span {
  display: block;
  width: 1px;
  height: 8px;
  background: var(--ink-night);
  margin: 0 auto;
  animation: drop 1.8s var(--ease) infinite;
}
@keyframes drop {
  0%   { transform: translateY(0);    opacity: 1; }
  60%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0);    opacity: 0; }
}

/* ============================================================
   段 2 · 關於我
   ============================================================ */
.section-about {
  background: var(--bg-ivory);
}
.about-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--accent-amethyst);
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about-portrait:hover img { transform: scale(1.04); }
.about-text { padding: 8px 0; }
.about-line {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.5;
  color: var(--ink-night);
  margin-bottom: 18px;
}
.about-line em {
  font-style: italic;
  color: var(--accent-amethyst);
  font-weight: 400;
}
.about-quote {
  font-style: italic;
  color: var(--depth-smoke);
  border-left: 1px solid var(--warm-antique);
  padding-left: 18px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   段 3 · 招牌動作
   ============================================================ */
.section-sign {
  padding: 0;
  background: var(--ink-night);
  color: var(--bg-ivory);
  align-items: stretch;
  min-height: 100vh;
}
.sign-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .55;
}
.sign-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(31,27,46,.35) 0%,
    rgba(31,27,46,.15) 50%,
    rgba(31,27,46,.7) 100%);
}
.sign-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--pad);
  width: 100%;
  text-align: center;
  align-self: center;
}
.sign-content .section-tag { color: var(--warm-antique); }
.sign-content .section-title {
  color: var(--bg-ivory);
  font-size: clamp(48px, 8vw, 96px);
  margin-bottom: 28px;
}
.sign-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 5.5vw, 64px);
  color: var(--bg-ivory);
  opacity: .85;
  line-height: 1.8;
}

/* ============================================================
   段 4 · 三板塊
   ============================================================ */
.section-cards {
  background: var(--bg-ivory-2);
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.section-head {
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 6vh, 72px);
  text-align: center;
}
.cards-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
.card {
  background: var(--bg-ivory);
  border: 1px solid rgba(107,91,140,.25);
  transition: all .4s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: var(--accent-amethyst);
  box-shadow: 0 18px 48px -16px rgba(74,58,92,.35);
}
.card-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--depth-smoke);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.card:hover .card-media img { transform: scale(1.06); }
.card-body {
  padding: 24px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-num {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 3px;
  color: var(--accent-amethyst);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.card-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink-night);
  margin-bottom: 12px;
  line-height: 1.2;
}
.card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.card-meta {
  list-style: none;
  font-size: 12.5px;
  color: var(--depth-smoke);
  margin-bottom: 20px;
  flex: 1;
}
.card-meta li {
  padding: 5px 0;
  border-top: 1px dashed rgba(74,58,92,.18);
}
.card-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent-amethyst);
  padding: 10px 0 0;
  border-top: 1px solid var(--accent-amethyst);
  margin-top: auto;
  transition: color .25s;
}
.card-cta:hover { color: var(--warm-antique); }
@media (max-width: 960px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cards-grid { grid-template-columns: 1fr; } }

/* ============================================================
   段 5 · 北極星解讀
   ============================================================ */
.section-north {
  padding: 0;
  background: var(--ink-night);
  color: var(--bg-ivory);
  align-items: stretch;
}
.north-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.north-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
  filter: saturate(.7) hue-rotate(15deg);
}
.north-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(107,91,140,.4) 0%, transparent 60%),
    linear-gradient(180deg, rgba(31,27,46,.6) 0%, rgba(31,27,46,.85) 100%);
}
.north-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--pad);
  width: 100%;
  text-align: center;
  align-self: center;
}
.north-title {
  color: var(--bg-ivory);
  font-size: clamp(40px, 6.5vw, 84px);
  font-style: italic;
  margin-bottom: 16px;
}
.north-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--warm-antique);
  letter-spacing: 2px;
  margin-bottom: 64px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 0 auto;
  max-width: 920px;
  margin-bottom: 56px;
}
.stat {
  border-top: 1px solid rgba(201,169,97,.4);
  padding-top: 24px;
  text-align: left;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  color: var(--warm-antique);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  transform: translateY(8px);
  transition: transform .6s var(--ease);
}
.stat.in .stat-num {
  transform: translateY(0);
}
.stat-unit {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--bg-ivory);
  opacity: .55;
  letter-spacing: 2px;
  margin-top: 6px;
}
.stat-label {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--bg-ivory);
  opacity: .75;
  margin-top: 10px;
}
.north-foot {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--bg-ivory);
  opacity: .4;
  letter-spacing: 1.5px;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* ============================================================
   段 6 · CTA
   ============================================================ */
.section-cta {
  padding: 0;
  align-items: stretch;
  background: var(--depth-smoke-2);
  color: var(--bg-ivory);
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  filter: saturate(.6) hue-rotate(15deg);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(107,91,140,.3) 0%, transparent 60%),
    linear-gradient(180deg, rgba(31,27,46,.5) 0%, rgba(31,27,46,.85) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--pad);
  width: 100%;
  text-align: center;
  align-self: center;
}
.cta-content .section-title {
  color: var(--bg-ivory);
  font-size: clamp(42px, 7vw, 96px);
  margin-bottom: 18px;
}
.cta-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--warm-antique);
  margin-bottom: 48px;
  letter-spacing: 2px;
}
.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--accent-amethyst);
  color: var(--bg-ivory);
  background: transparent;
  cursor: none;
  transition: all .3s var(--ease);
}
.btn-primary {
  background: var(--accent-amethyst);
  border-color: var(--accent-amethyst);
}
.btn-primary:hover {
  background: var(--warm-antique);
  border-color: var(--warm-antique);
  color: var(--ink-night);
}
.btn-ghost {
  border: none;
  padding: 12px 0;
  color: var(--accent-amethyst);
  letter-spacing: 0.1em;
  border-bottom: 1px solid transparent;
}
.btn-ghost:hover {
  background: transparent;
  border-color: var(--accent-amethyst);
  color: var(--accent-amethyst);
}
@media (max-width: 640px) {
  .cta-buttons { flex-direction: column; }
  .btn { width: 100%; }
}

/* ============================================================
   段 7 · 月度運勢入口
   ============================================================ */
.section-monthly {
  background: var(--bg-ivory);
}
.monthly-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.monthly-desc {
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.6;
}
.monthly-thumb {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(107,91,140,.3);
  overflow: hidden;
}
.monthly-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) { .monthly-grid { grid-template-columns: 1fr; } }

/* ============================================================
   段 8 · 本月運勢全文
   ============================================================ */
.section-monthly-content {
  background: var(--bg-ivory);
}
.monthly-content-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 96px) clamp(24px, 4vw, 48px);
}
.monthly-content-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.monthly-content-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.monthly-content-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--ink-deep);
  line-height: 1.15;
  margin-bottom: 16px;
}
.monthly-content-meta {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
}
.monthly-content-body {
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.85;
  color: var(--ink-soft);
}
.monthly-content-body h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  color: var(--ink-deep);
  margin: clamp(56px, 6vw, 80px) 0 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(107, 91, 140, 0.18);
  line-height: 1.3;
}
.monthly-content-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.monthly-content-body h3 {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--accent-amethyst);
  margin: 40px 0 16px;
  line-height: 1.4;
}
.monthly-content-body p {
  margin-bottom: 24px;
}
.monthly-content-body blockquote {
  margin: 32px 0;
  padding: 16px 24px;
  border-left: 3px solid var(--accent-amethyst);
  font-style: italic;
  color: var(--ink-deep);
  background: rgba(107, 91, 140, 0.04);
}
.monthly-content-figure {
  margin: 40px 0;
  text-align: center;
}
.monthly-content-figure img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1px solid rgba(107, 91, 140, 0.18);
}
.monthly-content-figure figcaption {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
}
.monthly-content-body hr {
  border: none;
  height: 1px;
  background: rgba(107, 91, 140, 0.18);
  margin: clamp(48px, 5vw, 64px) 0;
}
.monthly-content-body em {
  color: var(--ink-deep);
  font-style: normal;
  font-weight: 500;
}
.monthly-content-body strong {
  color: var(--ink-deep);
  font-weight: 500;
}
.monthly-content-footer {
  margin-top: clamp(64px, 7vw, 96px);
  padding-top: 32px;
  border-top: 1px solid rgba(107, 91, 140, 0.18);
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-faint);
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.monthly-content-back {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--accent-amethyst);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: opacity 0.3s;
}
.monthly-content-back:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .monthly-content-body { font-size: 16px; line-height: 1.75; }
  .monthly-content-body h2 { margin-top: 40px; padding-top: 24px; }
}

/* ============================================================
   段 9 · 聯系 / Footer
   ============================================================ */
.section-contact {
  background: var(--depth-smoke-2);
  color: var(--bg-ivory);
  min-height: 80vh;
}
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  text-align: left;
}
.section-contact .section-title { color: var(--bg-ivory); margin-bottom: 48px; }
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(201,169,97,.3);
}
.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr 24px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(201,169,97,.3);
  transition: all .3s var(--ease);
  color: var(--bg-ivory);
}
.contact-row:hover {
  padding-left: 16px;
  background: rgba(107,91,140,.15);
}
.contact-key {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-antique);
}
.contact-val {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--bg-ivory);
  opacity: .8;
}
.contact-arrow {
  text-align: right;
  opacity: .4;
  transition: all .3s;
}
.contact-row:hover .contact-arrow {
  opacity: 1;
  color: var(--warm-antique);
  transform: translateX(4px);
}
.contact-qr {
  height: 80px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .contact-row { grid-template-columns: 90px 1fr 18px; padding: 18px 0; }
}

.site-footer {
  padding: 32px var(--pad);
  background: var(--ink-night);
  color: var(--bg-ivory);
  text-align: center;
  font-size: 11px;
  letter-spacing: 2px;
  opacity: .65;
}
.footer-line { margin: 4px 0; }

/* ============================================================
   reveal 入場
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   降级 · prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01s !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-eyebrow, .hero-slogan, .hero-sub, .scroll-cue { opacity: 1; transform: none; }
}
