/* ============================================
   黃琤婷 議員個人網站 — 莫蘭迪電影雜誌風
   配色：莫蘭迪深藍 / 正藍 / 土耳其藍 / 暖白 / 粉 / 桃紅
   字型：Cormorant Garamond italic + Noto Serif TC + Noto Sans TC
   風格：感性、大量特效、翻雜誌的當下
   ============================================ */

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

/* ====================================================
   LINE / in-app webview 字爆大根本鎖（必放最上層 html）
   詳見 /clients/IN-APP-BROWSER-FIXES.md
   ==================================================== */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
}

:root {
  /* 紙張底 */
  --paper: #ede7dc;       /* 暖米白主底 */
  --paper-2: #d8d2c6;     /* 紙張深一階 */
  --cream: #f4eee3;       /* 內頁更亮 */

  /* 主色 — 莫蘭迪藍系 */
  --navy: #485a6e;        /* 深莫蘭迪藍 */
  --blue: #6f8aa6;        /* 正莫蘭迪藍 */
  --teal: #8fa8a9;        /* 莫蘭迪土耳其 */
  --teal-2: #a6c0c2;      /* 淺土耳其 */

  /* 強調 — 莫蘭迪粉桃 */
  --rose: #c9a9a0;        /* 莫蘭迪粉 */
  --peach: #d09186;       /* 莫蘭迪桃紅 */
  --pink: #d9b3b5;        /* 莫蘭迪淺粉 */

  /* 字體 */
  --ink: #2d3640;         /* 深藍灰 */
  --ink-soft: #5d6470;    /* 中藍灰 */
  --muted: #908f88;       /* 暖灰 */

  /* 線條 */
  --line: #c4b9aa;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .3s; }
a:hover { color: var(--peach); }

/* ============================================
   1. 自訂游標（桌機）— 粉色雙環
   ============================================ */
@media (hover: hover) and (pointer: fine) {
  body, a, button { cursor: none; }
  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
  }
  .cursor-dot {
    width: 5px; height: 5px;
    background: var(--peach);
    transform: translate(-50%, -50%);
    transition: transform .15s, background .25s;
  }
  .cursor-ring {
    width: 42px; height: 42px;
    border: 1px solid var(--blue);
    transform: translate(-50%, -50%);
    transition: width .35s cubic-bezier(.2,.7,.2,1), height .35s, border-color .25s, background .25s;
  }
  .cursor-ring.hover {
    width: 72px; height: 72px;
    background: rgba(208, 145, 134, 0.12);
    border-color: var(--peach);
    mix-blend-mode: multiply;
  }
}

/* ============================================
   2. 預覽條 + 滾動進度
   ============================================ */
.preview-bar {
  background: var(--ink);
  color: var(--pink);
  font-size: 11px;
  text-align: center;
  padding: 6px 16px;
  letter-spacing: 4px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}
.preview-bar strong { color: var(--peach); font-weight: 600; }

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--teal), var(--peach));
  z-index: 9999;
  transition: width .12s linear;
}

/* ============================================
   3. Magazine masthead — 雜誌刊頭
   ============================================ */
.masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 48px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  background: var(--navy);
  border-bottom: 1px solid rgba(244,238,227,.12);
  box-shadow: 0 4px 24px rgba(45,54,64,.18);
  /* iOS Safari smooth-scroll fix */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

.masthead-issue {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 6px;
  color: rgba(244,238,227,.62);
  text-transform: uppercase;
}
.masthead-issue::before { content: "— "; color: var(--pink); }
.masthead-issue::after { content: " —"; color: var(--pink); }

.masthead-brand {
  text-align: center;
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
}
.masthead-brand .name {
  font-size: 22px;
  letter-spacing: 6px;
  color: var(--cream);
  line-height: 1;
}
.masthead-brand .sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--pink);
  margin-top: 4px;
}

.masthead-nav {
  justify-self: end;
  display: flex;
  gap: 28px;
}
.masthead-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: "Noto Serif TC", serif;
  font-weight: 500;
  color: rgba(244,238,227,.85);
  position: relative;
  line-height: 1;
  transition: color .3s;
}
.masthead-nav a .zh {
  font-size: 14px;
  letter-spacing: 3px;
}
.masthead-nav a .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(217,179,181,.7);
  text-transform: uppercase;
}
.masthead-nav a:hover { color: var(--cream); }
.masthead-nav a:hover .en { color: var(--peach); }
.masthead-nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  width: 0; height: 1px;
  background: var(--peach);
  transition: width .4s, left .4s;
}
.masthead-nav a:hover::after,
.masthead-nav a.current::after { width: 100%; left: 0; }
.masthead-nav a.current { color: var(--peach); }
.masthead-nav a.current .en { color: var(--peach); }

.masthead-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(244,238,227,.35);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 28px;
  line-height: 1;
  color: var(--cream);
  cursor: pointer;
  justify-self: end;
}
.masthead-toggle:hover { background: rgba(244,238,227,.08); }

/* ============================================
   4. COVER — 全幅電影封面
   ============================================ */
.cover {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--paper);
  overflow: hidden;
  align-items: center;
  padding-top: 100px;
}

.cover::before {
  /* 大型莫蘭迪色塊裝飾（背景幾何） */
  content: "";
  position: absolute;
  top: 12%;
  left: -20%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--teal-2) 0%, transparent 65%);
  opacity: 0.5;
  z-index: 0;
  animation: blobFloat 18s ease-in-out infinite;
}
.cover::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--rose) 0%, transparent 60%);
  opacity: 0.4;
  z-index: 0;
  animation: blobFloat 22s -8s ease-in-out infinite;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.08); }
  66%      { transform: translate(-30px, 50px) scale(0.95); }
}

.cover-text {
  position: relative;
  z-index: 2;
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cover-issue-info {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 6px;
  color: var(--peach);
  margin-bottom: 32px;
}

.cover-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--blue);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.cover-title {
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  font-size: clamp(56px, 7.5vw, 108px);
  line-height: 1.0;
  letter-spacing: 4px;
  color: var(--ink);
  margin-bottom: 36px;
  position: relative;
}
.cover-title .accent {
  color: var(--peach);
  font-style: italic;
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 0.7em;
  display: block;
  letter-spacing: 6px;
  margin-bottom: 12px;
  font-weight: 500;
}

.cover-title .ch {
  display: inline-block;
  overflow: hidden;
}
.cover-title .ch > span {
  display: inline-block;
  transform: translateY(110%);
  animation: chRise 1.1s cubic-bezier(.2,.7,.2,1) forwards;
}
.cover-title .ch:nth-child(1) span { animation-delay: 0.3s; }
.cover-title .ch:nth-child(2) span { animation-delay: 0.45s; }
.cover-title .ch:nth-child(3) span { animation-delay: 0.6s; }
.cover-title .ch:nth-child(4) span { animation-delay: 0.75s; }
.cover-title .ch:nth-child(5) span { animation-delay: 0.9s; }
.cover-title .ch:nth-child(6) span { animation-delay: 1.05s; }
.cover-title .ch:nth-child(7) span { animation-delay: 1.2s; }
.cover-title .ch:nth-child(8) span { animation-delay: 1.35s; }
.cover-title .ch:nth-child(9) span { animation-delay: 1.5s; }
@keyframes chRise { to { transform: translateY(0); } }

.cover-quote {
  font-family: "Noto Serif TC", serif;
  font-size: 20px;
  line-height: 1.95;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 36px;
  padding-left: 24px;
  border-left: 2px solid var(--peach);
  opacity: 0;
  animation: fadeUp 1.2s 1.4s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cover-meta {
  display: flex;
  gap: 36px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1.2s 1.6s forwards;
}
.cover-meta .item {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
}
.cover-meta .item .k {
  font-style: italic;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--blue);
  text-transform: uppercase;
}
.cover-meta .item .v {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 6px;
  letter-spacing: 1px;
}

.cover-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.2s 1.8s forwards;
}

/* 右半部 — 大照片區 */
.cover-image {
  position: relative;
  z-index: 1;
  height: calc(100vh - 100px);
  max-height: 900px;
  margin: 40px 40px 40px 0;
  overflow: hidden;
}
.cover-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(72,90,110,0.10), rgba(208,145,134,0.18));
  z-index: 2;
  mix-blend-mode: multiply;
}
.cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: contrast(1.02) saturate(0.92) brightness(1.02);
  animation: coverZoom 12s ease-in-out infinite alternate;
}
@keyframes coverZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}

/* 垂直 issue 標籤 */
.cover-vertical {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 8px;
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 3;
}

/* 編號浮字 */
.cover-num {
  position: absolute;
  left: 60px;
  bottom: 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: 200px;
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1px var(--peach);
  opacity: 0.3;
  line-height: 0.8;
  z-index: 0;
  user-select: none;
  font-style: italic;
}

/* ============================================
   5. 按鈕 — 細線雜誌風
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 600;
  font-style: italic;
  cursor: none;
  transition: all .4s cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
  border: none;
}
.btn-solid {
  background: var(--ink);
  color: var(--cream);
}
.btn-solid:hover {
  background: var(--peach);
  color: var(--cream);
}
.btn-solid::after { content: "→"; font-size: 18px; transition: transform .3s; }
.btn-solid:hover::after { transform: translateX(8px); }
.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-line:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ============================================
   6. 章節通用
   ============================================ */
section { padding: 140px 0; position: relative; }
.spread { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.spread-wide { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
.spread-narrow { max-width: 880px; margin: 0 auto; padding: 0 48px; }

.chapter-label {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin-bottom: 72px;
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
}
.chapter-label .num {
  font-size: 72px;
  font-style: italic;
  color: var(--peach);
  line-height: 1;
  font-weight: 500;
}
.chapter-label .meta {
  flex: 1;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 12px;
}
.chapter-label .meta .en {
  font-style: italic;
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--blue);
  text-transform: uppercase;
}
.chapter-label .meta .zh {
  font-family: "Noto Serif TC", serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--ink);
  margin-top: 6px;
}

/* ============================================
   7. Pull Quote — 巨型引言（電影感）
   ============================================ */
.pull-quote {
  background: var(--navy);
  color: var(--cream);
  padding: 160px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: "“";
  position: absolute;
  top: 0;
  left: 60px;
  font-family: "Cormorant Garamond", serif;
  font-size: 360px;
  color: var(--peach);
  line-height: 0.8;
  opacity: 0.4;
  font-style: italic;
}
.pull-quote::after {
  content: "”";
  position: absolute;
  bottom: -60px;
  right: 60px;
  font-family: "Cormorant Garamond", serif;
  font-size: 360px;
  color: var(--peach);
  line-height: 0.4;
  opacity: 0.4;
  font-style: italic;
}
.pull-quote .text {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 4px;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pull-quote .text em {
  color: var(--peach);
  font-style: italic;
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
}
.pull-quote .cite {
  display: block;
  margin-top: 48px;
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--pink);
  position: relative;
  z-index: 1;
}

/* ============================================
   8. 雜誌雙欄 — 文+圖 spread
   ============================================ */
.spread-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.spread-grid.reverse { grid-template-columns: 1.3fr 1fr; }

.spread-image {
  position: relative;
}
.spread-image figure { margin: 0; position: relative; }
.spread-image figure::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  background: var(--teal);
  z-index: 0;
  opacity: 0.4;
}
.spread-image img {
  position: relative;
  z-index: 1;
  filter: contrast(1.03) saturate(0.95);
}
.spread-image figcaption {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--muted);
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.spread-text h3 {
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 4px;
  color: var(--ink);
  margin: 0 0 24px;
  line-height: 1.3;
}
.spread-text h3 .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--peach);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 500;
}
.spread-text p {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink);
  margin-bottom: 24px;
}
.spread-text p:first-of-type::first-letter {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 88px;
  font-weight: 700;
  color: var(--peach);
  float: left;
  line-height: 0.85;
  padding: 8px 16px 0 0;
  font-style: italic;
}

/* ============================================
   9. 服務 grid（議員之三大主張）
   ============================================ */
.pillars {
  background: var(--cream);
  padding: 140px 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 72px;
}
.pillar {
  background: var(--paper);
  padding: 48px 36px;
  position: relative;
  transition: all .5s cubic-bezier(.2,.7,.2,1);
  border-top: 3px solid var(--blue);
}
.pillar:hover {
  transform: translateY(-8px);
  background: var(--navy);
  color: var(--cream);
  border-top-color: var(--peach);
}
.pillar:hover .num,
.pillar:hover h4,
.pillar:hover p { color: var(--cream); }
.pillar:hover .num { color: var(--peach); }

.pillar .num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 64px;
  color: var(--peach);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  transition: color .5s;
}
.pillar h4 {
  font-family: "Noto Serif TC", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.5;
  transition: color .5s;
}
.pillar h4 .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--blue);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.pillar p {
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-soft);
  transition: color .5s;
}

/* ============================================
   10. Horizontal photo strip（橫向相簿）
   ============================================ */
.photo-strip {
  margin-top: 80px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: none;
  padding: 20px 0;
}
.photo-strip::-webkit-scrollbar { display: none; }

.photo-strip-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 48px;
}
.photo-strip-item {
  flex: 0 0 360px;
  height: 460px;
  position: relative;
  overflow: hidden;
  background: var(--teal-2);
}
.photo-strip-item:nth-child(2n) { height: 420px; align-self: end; }
.photo-strip-item:nth-child(3n) { height: 480px; }
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.photo-strip-item:hover img { transform: scale(1.08); }
.photo-strip-item .cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 18px;
  background: linear-gradient(0deg, rgba(45,54,64,0.92), transparent);
  color: var(--cream);
}
.photo-strip-item .cap .ch-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--pink);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.photo-strip-item .cap .t {
  font-family: "Noto Serif TC", serif;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ============================================
   11. 數字
   ============================================ */
.numbers {
  background: var(--paper-2);
  padding: 100px 0;
}
.numbers-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.num-item {
  border-top: 1px solid var(--ink);
  padding-top: 28px;
}
.num-item .n {
  font-family: "Cormorant Garamond", serif;
  font-size: 88px;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -2px;
}
.num-item .n small {
  font-size: 24px;
  font-style: normal;
  font-family: "Noto Serif TC", serif;
  color: var(--peach);
  margin-left: 4px;
}
.num-item .l {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--blue);
  margin-top: 14px;
  text-transform: uppercase;
}
.num-item .zh {
  font-family: "Noto Serif TC", serif;
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--ink);
  margin-top: 4px;
}

/* ============================================
   12. News list — 雜誌列表
   ============================================ */
.news-list {
  margin-top: 60px;
  border-top: 1px solid var(--ink);
}
.news-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 36px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: all .35s;
}
.news-row:hover { background: var(--cream); padding-left: 24px; padding-right: 24px; }
.news-row .date {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--peach);
}
.news-row .title {
  font-family: "Noto Serif TC", serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 1px;
  line-height: 1.5;
}
.news-row .cat {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
  border: 1px solid var(--blue);
  padding: 4px 12px;
}

/* ============================================
   13. CTA band — 大型結語
   ============================================ */
.cta-band {
  background: var(--peach);
  color: var(--cream);
  padding: 140px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "JANET";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(220px, 28vw, 440px);
  letter-spacing: 16px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 238, 227, 0.3);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.cta-band .inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.cta-band h2 {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(40px, 5.5vw, 64px);
  letter-spacing: 6px;
  font-weight: 700;
  margin-bottom: 28px;
}
.cta-band p {
  font-size: 17px;
  margin-bottom: 40px;
  color: var(--cream);
  opacity: 0.95;
}
.cta-band .btn-solid {
  background: var(--cream);
  color: var(--ink);
}
.cta-band .btn-solid:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ============================================
   14. Footer
   ============================================ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 96px 40px 32px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-grid h6 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--peach);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.footer-brand .name {
  font-family: "Noto Serif TC", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-brand .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--peach);
  margin-bottom: 24px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--pink);
  line-height: 1.85;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { padding: 6px 0; }
.footer-grid a {
  color: var(--cream);
  font-size: 14px;
  letter-spacing: 1.5px;
}
.footer-grid a:hover { color: var(--peach); }

.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 42px; height: 42px;
  border: 1px solid var(--peach);
  display: grid;
  place-items: center;
  color: var(--pink);
  transition: all .3s;
}
.social-row a:hover { background: var(--peach); color: var(--ink); }
.social-row svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(217,179,181,0.2);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
}
.footer-bottom .yc-credit a {
  font-family: "Noto Serif TC", serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--peach);
}
.footer-bottom .yc-credit a:hover { color: var(--pink); }

/* ============================================
   15. 內頁 hero
   ============================================ */
.page-cover {
  background: var(--paper);
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-cover::before {
  content: "";
  position: absolute;
  top: 30%;
  right: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--rose) 0%, transparent 65%);
  opacity: 0.3;
  z-index: 0;
  animation: blobFloat 24s ease-in-out infinite;
}
.page-cover-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.page-cover .meta {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--peach);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--peach);
  display: inline-block;
}
.page-cover h1 {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 700;
  letter-spacing: 6px;
  line-height: 1.05;
  color: var(--ink);
}
.page-cover .sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 24px;
  color: var(--blue);
  letter-spacing: 4px;
  text-align: right;
}

/* ============================================
   16. Reveal 動畫
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.left { transform: translateX(-48px); }
.reveal.right { transform: translateX(48px); }
.reveal.left.in, .reveal.right.in { transform: translateX(0); }
.reveal[data-d="1"] { transition-delay: 0.1s; }
.reveal[data-d="2"] { transition-delay: 0.2s; }
.reveal[data-d="3"] { transition-delay: 0.3s; }
.reveal[data-d="4"] { transition-delay: 0.4s; }
.reveal[data-d="5"] { transition-delay: 0.5s; }

/* 滑鼠跟隨色塊 */
.cursor-blob {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--peach) 0%, transparent 65%);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity .8s;
  mix-blend-mode: multiply;
  filter: blur(40px);
}

/* ============================================
   17. 四格漫畫
   ============================================ */
.comic-section {
  background:
    linear-gradient(90deg, rgba(196,185,170,0.28) 1px, transparent 1px),
    linear-gradient(0deg, rgba(196,185,170,0.22) 1px, transparent 1px),
    var(--cream);
  background-size: 28px 28px;
  padding: 120px 0;
  overflow: hidden;
}

.comic-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.comic-section .chapter-label {
  margin-bottom: 40px;
}

.comic-lede {
  max-width: 820px;
  margin-bottom: 56px;
  padding-left: 24px;
  border-left: 3px solid var(--peach);
}

.comic-lede p {
  font-family: "Noto Serif TC", serif;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 12px;
}

.comic-strip {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 rgba(72, 90, 110, 0.22);
  margin-top: 56px;
}

.comic-strip-head {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  border-bottom: 2px solid var(--ink);
  background: var(--navy);
  color: var(--cream);
}

.comic-strip-no {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 2px solid var(--peach);
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  font-style: italic;
  color: var(--pink);
  background: rgba(244, 238, 227, 0.08);
}

.comic-kicker {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.comic-strip-head h3 {
  font-family: "Noto Serif TC", serif;
  font-size: 31px;
  line-height: 1.4;
  letter-spacing: 3px;
  color: var(--cream);
  font-weight: 700;
}

.comic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.comic-panel {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border-right: 2px solid var(--ink);
  background: var(--paper);
}

.comic-panel:last-child {
  border-right: 0;
}

.comic-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 2px solid var(--ink);
}

.comic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.06) saturate(0.88) brightness(1.02);
}

.comic-panel[data-focus="top"] .comic-image img {
  object-position: center 24%;
}

.comic-panel[data-focus="left"] .comic-image img {
  object-position: 35% center;
}

.comic-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(45,54,64,0.18) 1px, transparent 1px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
  opacity: 0.36;
  pointer-events: none;
}

.comic-copy {
  min-height: 232px;
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comic-tag {
  align-self: flex-start;
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--peach);
  text-transform: uppercase;
  border-bottom: 1px solid var(--peach);
  padding-bottom: 4px;
}

.comic-copy h4 {
  font-family: "Noto Serif TC", serif;
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: 2px;
  color: var(--ink);
}

.comic-bubble {
  position: relative;
  margin-top: auto;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: #fffaf2;
  font-family: "Noto Serif TC", serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}

.comic-bubble::before {
  content: "";
  position: absolute;
  left: 26px;
  top: -12px;
  width: 18px;
  height: 18px;
  background: inherit;
  border-left: 2px solid var(--ink);
  border-top: 2px solid var(--ink);
  transform: rotate(45deg);
}

.comic-panel:nth-child(2n) .comic-bubble {
  background: #f4ded8;
}

.comic-panel:nth-child(3n) .comic-bubble {
  background: #e7eff0;
}

.comic-receipts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.comic-receipts a {
  display: block;
  min-height: 118px;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  background: rgba(244,238,227,0.82);
  color: var(--ink);
  transition: transform .35s, border-color .35s, background .35s;
}

.comic-receipts a:hover {
  transform: translateY(-4px);
  border-color: var(--peach);
  background: var(--paper);
}

.comic-receipts span {
  display: block;
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--peach);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.comic-receipts strong {
  display: block;
  font-family: "Noto Serif TC", serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: var(--ink);
}

/* ============================================
   18. Responsive
   ============================================ */
/* ========== 媒體區雙欄 ========== */
.media-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}
@media (max-width: 1024px) {
  .media-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  .masthead { padding: 14px 20px; grid-template-columns: 1fr auto; gap: 12px; }
  .masthead-issue { display: none; }
  .cover { grid-template-columns: 1fr; padding-top: 0; }
  .cover-text { padding: 50px 28px 36px; }
  .cover-image { height: 56vh; margin: 0; }
  .cover-num { font-size: 120px; left: 32px; bottom: 24px; }
  .spread-grid, .spread-grid.reverse { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 18px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .page-cover-inner { grid-template-columns: 1fr; gap: 24px; }
  .page-cover .sub { text-align: left; }
  .comic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .comic-panel { border-bottom: 2px solid var(--ink); }
  .comic-panel:nth-child(2n) { border-right: 0; }
  .comic-panel:nth-last-child(-n+2) { border-bottom: 0; }
  .comic-receipts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .masthead { padding: 12px 18px; }
  .masthead-brand .name { font-size: 17px; letter-spacing: 3px; }
  .masthead-brand .sub { font-size: 9px; letter-spacing: 2px; }
  .masthead-nav { display: none; }
  .masthead-toggle { display: block; }
  .masthead-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 12px 24px 24px;
    gap: 0;
    border-bottom: 1px solid rgba(244,238,227,.18);
    box-shadow: 0 8px 24px rgba(45,54,64,.28);
  }
  .masthead-nav.open a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(244,238,227,.12);
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    color: var(--cream);
  }
  .masthead-nav.open a:last-child { border-bottom: none; }
  .masthead-nav.open a .zh { font-size: 16px; letter-spacing: 4px; }
  .masthead-nav.open a .en { font-size: 11px; letter-spacing: 3px; }
  .masthead-nav.open a::after { display: none; }
  .cover-text { padding: 80px 24px 40px; }
  .cover-title { letter-spacing: 2px; }
  .cover-meta { gap: 20px; flex-wrap: wrap; }
  .pull-quote { padding: 80px 24px; }
  .pull-quote::before { font-size: 200px; left: 24px; }
  .pull-quote::after { font-size: 200px; right: 24px; }
  .chapter-label { flex-direction: column; gap: 12px; align-items: flex-start; }
  .chapter-label .num { font-size: 56px; }
  .chapter-label .meta .zh { font-size: 28px; }
  section { padding: 80px 0; }
  .spread, .spread-wide, .spread-narrow { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .news-row { grid-template-columns: 80px 1fr; gap: 16px; }
  .news-row .cat { grid-column: 1 / -1; justify-self: start; }
  .photo-strip-item { flex: 0 0 280px; height: 360px; }
  .comic-section { padding: 80px 0; background-size: 22px 22px; }
  .comic-shell { padding: 0 18px; }
  .comic-section .chapter-label { margin-bottom: 28px; }
  .comic-lede {
    padding-left: 16px;
    margin-bottom: 36px;
  }
  .comic-lede p {
    font-size: 16px;
    line-height: 1.9;
  }
  .comic-strip {
    margin-top: 36px;
    box-shadow: 7px 7px 0 rgba(72, 90, 110, 0.22);
  }
  .comic-strip-head {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 18px;
  }
  .comic-strip-no {
    width: 72px;
    height: 72px;
    font-size: 40px;
  }
  .comic-kicker {
    font-size: 11px;
    letter-spacing: 3px;
  }
  .comic-strip-head h3 {
    font-size: 23px;
    letter-spacing: 1px;
  }
  .comic-grid { grid-template-columns: 1fr; }
  .comic-panel,
  .comic-panel:nth-child(2n),
  .comic-panel:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }
  .comic-panel:last-child { border-bottom: 0; }
  .comic-image { aspect-ratio: 16 / 10; }
  .comic-copy {
    min-height: 0;
    padding: 18px 16px 20px;
  }
  .comic-copy h4 {
    font-size: 20px;
    letter-spacing: 1px;
  }
  .comic-bubble {
    font-size: 16px;
    line-height: 1.7;
    padding: 13px 14px;
  }
  .comic-receipts { grid-template-columns: 1fr; }
  .comic-receipts a { min-height: 0; }
  body, a, button { cursor: auto !important; }
  .cursor-dot, .cursor-ring, .cursor-blob { display: none !important; }
}
