/* ============================================
   陳玉萍 議員個人網站
   風格：Editorial Magazine × 媽媽紅暖系
   配色：桃紅 #e94560 / 媽媽紅 #b22a3f / 粉 #f5c2c2 / 暖米 #fdf3e8 / 酒紅深字 #3d1a26 / 金沙 #d4a574
   字型：Cormorant Garamond + Noto Serif TC + Noto Sans TC
   ============================================ */

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

:root {
  --rose: #e94560;       /* 桃紅主色 */
  --rose-deep: #b22a3f;  /* 媽媽紅 深 */
  --rose-light: #f5c2c2; /* 媽媽粉 淺 */
  --rose-mist: #fce0d8;  /* 粉霧 */
  --cream: #fdf3e8;      /* 暖米底 */
  --cream-deep: #f8e7d3; /* 米褐 */
  --ink: #3d1a26;        /* 深酒紅字 */
  --ink-soft: #7a5260;   /* 副字 */
  --gold: #d4a574;       /* 金沙重音 */
  --line: #ead9c8;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(178, 42, 63, 0.12);
}

html { scroll-behavior: smooth; }

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

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

/* ============================================
   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: 9999;
    border-radius: 50%;
    mix-blend-mode: difference;
  }
  .cursor-dot {
    width: 6px; height: 6px;
    background: var(--cream);
    transform: translate(-50%, -50%);
    transition: transform .15s;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--cream);
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s, background .25s, border-color .25s;
  }
  .cursor-ring.hover {
    width: 56px; height: 56px;
    background: rgba(233, 69, 96, 0.18);
    border-color: var(--rose);
  }
}

/* ============================================
   2. 預覽提示條 + 捲動進度
   ============================================ */
.preview-bar {
  background: var(--ink);
  color: var(--rose-light);
  font-size: 12px;
  text-align: center;
  padding: 6px 16px;
  letter-spacing: 2px;
}
.preview-bar strong { color: var(--rose); }

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--rose), var(--rose-deep), var(--gold));
  z-index: 9998;
  transition: width .12s linear;
}

/* ============================================
   3. Header — 編輯雜誌風橫條
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--ink);
  transition: background .3s, color .3s;
}
.site-header.scrolled {
  background: rgba(253, 243, 232, 0.96);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.masthead {
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  line-height: 1;
}
.masthead .label {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-style: italic;
  font-weight: 500;
}
.masthead .name {
  font-size: 26px;
  letter-spacing: 4px;
  color: var(--ink);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .masthead .label { font-size: 10px; letter-spacing: 4px; }
  .masthead .name  { font-size: 18px; letter-spacing: 2px; }
}
@media (max-width: 380px) {
  .masthead .name  { font-size: 15px; letter-spacing: 1px; }
}

.issue-info {
  text-align: center;
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--ink-soft);
}
.issue-info::before,
.issue-info::after { content: "—"; margin: 0 12px; color: var(--rose); }

.nav-bar {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-bar a {
  position: relative;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--ink);
  padding: 8px 14px;
  font-weight: 500;
}
.nav-bar a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s;
}
.nav-bar a:hover::after,
.nav-bar a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-bar a.active { color: var(--rose-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--ink);
  cursor: none;
}

/* ============================================
   4. HERO — 雜誌封面：左文字右照片不對稱
   ============================================ */
.cover {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--cream);
  overflow: hidden;
}

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

.cover-issue {
  position: absolute;
  top: 60px;
  left: 60px;
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--rose-deep);
  border-bottom: 1px solid var(--rose);
  padding-bottom: 6px;
}

.cover-num {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 28vw;
  font-weight: 700;
  color: var(--cream-deep);
  line-height: 0.8;
  z-index: 1;
  opacity: 0.55;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.cover-eyebrow {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 6px;
  color: var(--rose);
  margin-bottom: 24px;
}

.cover-title {
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 1.05;
  letter-spacing: 6px;
  color: var(--ink);
  margin-bottom: 32px;
  position: relative;
}
.cover-title .ch {
  display: inline-block;
  overflow: hidden;
}
.cover-title .ch span {
  display: inline-block;
  transform: translateY(110%);
  animation: chSlide 1s cubic-bezier(.2,.7,.2,1) forwards;
}
.cover-title .ch:nth-child(1) span { animation-delay: 0.2s; }
.cover-title .ch:nth-child(2) span { animation-delay: 0.3s; }
.cover-title .ch:nth-child(3) span { animation-delay: 0.4s; }
.cover-title .ch:nth-child(4) span { animation-delay: 0.5s; }
.cover-title .ch:nth-child(5) span { animation-delay: 0.6s; }
.cover-title .ch:nth-child(6) span { animation-delay: 0.7s; }
.cover-title .ch:nth-child(7) span { animation-delay: 0.8s; }
.cover-title .ch:nth-child(8) span { animation-delay: 0.9s; }
.cover-title .ch:nth-child(9) span { animation-delay: 1.0s; }
@keyframes chSlide {
  to { transform: translateY(0); }
}
/* ?ogshot=1 跳過所有入場動畫 — 給 headless screenshot 用 */
html.no-fx .cover-title .ch span,
html.no-fx .cover-lede,
html.no-fx .cover-meta,
html.no-fx .cover-cta,
html.no-fx [class*="reveal"] {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}
html.no-fx .preview-bar { display: none !important; }
.cover-title .rose { color: var(--rose); }

.cover-lede {
  font-size: 17px;
  line-height: 1.95;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 32px;
  border-left: 2px solid var(--rose);
  padding-left: 20px;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}

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

.cover-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.5s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cover-right {
  position: relative;
  overflow: hidden;
  background: var(--rose-mist);
}
.cover-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(178,42,63,0.08), rgba(233,69,96,0.18));
  z-index: 2;
}
.cover-portrait-wrap {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--rose-mist) 0%, var(--rose-light) 100%);
  overflow: hidden;
}
.cover-portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(233,69,96,0.10), transparent 60%);
  z-index: 2;
  pointer-events: none;
}
.cover-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: contrast(1.03) saturate(1.05);
  animation: heroZoom 9s ease-in-out infinite alternate;
  transform-origin: center 30%;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}
/* 平板 / 手機改 contain + 底端對齊，露出全身且不切臉 */
@media (max-width: 1024px) {
  .cover-portrait {
    object-fit: contain;
    object-position: center bottom;
    animation: none;
  }
  .cover-right { min-height: 60vh; }
}
/* 極小手機，photo 縮一點 */
@media (max-width: 480px) {
  .cover-right { min-height: 52vh; }
  .cover-portrait { object-position: center bottom; }
}

/* 封面右上垂直 issue */
.cover-vertical {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 8px;
  color: var(--cream);
  z-index: 3;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* ============================================
   5. 按鈕 — 雜誌風細線
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 600;
  border: none;
  cursor: none;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
}
.btn-solid {
  background: var(--rose-deep);
  color: var(--cream);
}
.btn-solid::after {
  content: "→";
  font-size: 18px;
  transition: transform .3s;
}
.btn-solid:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-solid:hover::after {
  transform: translateX(6px);
}
.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-line:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ============================================
   6. 區段 — magazine spread layout
   ============================================ */
section { padding: 120px 0; position: relative; }

.spread {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.spread-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-mark {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 60px;
}
.section-mark .num {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 72px;
  font-style: italic;
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
}
.section-mark .meta {
  flex: 1;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
}
.section-mark .meta .en {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--rose-deep);
}
.section-mark .meta .zh {
  font-family: "Noto Serif TC", serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--ink);
  margin-top: 4px;
}

/* ============================================
   7. Pull Quote — 巨型引言
   ============================================ */
.pull-quote {
  background: var(--rose-deep);
  color: var(--cream);
  padding: 140px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.pull-quote::before {
  content: "❝";
  position: absolute;
  top: 40px;
  left: 60px;
  font-family: "Cormorant Garamond", serif;
  font-size: 200px;
  color: var(--rose);
  line-height: 0.8;
  opacity: 0.4;
}
.pull-quote::after {
  content: "❞";
  position: absolute;
  bottom: 20px;
  right: 60px;
  font-family: "Cormorant Garamond", serif;
  font-size: 200px;
  color: var(--rose);
  line-height: 0.5;
  opacity: 0.4;
}
.pull-quote q {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 4px;
  display: block;
  max-width: 1080px;
  margin: 0 auto;
}
.pull-quote q::before,
.pull-quote q::after { content: none; }
.pull-quote cite {
  display: block;
  margin-top: 40px;
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 6px;
  color: var(--rose-light);
}

/* ============================================
   8. 故事 / 兩欄不對稱
   ============================================ */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.editorial-grid .col-img {
  position: sticky;
  top: 120px;
}
.editorial-grid .col-img figure {
  position: relative;
  margin-bottom: 16px;
}
.editorial-grid .col-img img {
  width: 100%;
  filter: contrast(1.03) saturate(0.95);
}
.editorial-grid .col-img figcaption {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--ink-soft);
  border-top: 1px solid var(--ink);
  padding-top: 8px;
}

.editorial-grid .col-text {
  font-size: 17px;
  line-height: 2;
  color: var(--ink);
}
.editorial-grid .col-text h3 {
  font-family: "Noto Serif TC", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 3px;
  margin: 48px 0 20px;
}
.editorial-grid .col-text h3:first-child { margin-top: 0; }
.editorial-grid .col-text p { margin-bottom: 24px; }
.editorial-grid .col-text p:first-of-type::first-letter {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--rose);
  float: left;
  line-height: 0.85;
  padding: 8px 16px 0 0;
}

/* ============================================
   8.5 媒體看玉萍 — 1 大 + 3 小 編輯式
   ============================================ */
.media-section { background: var(--cream); }
.media-feature {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px 24px 32px;
  margin-top: 16px;
}
.media-player-frame {
  aspect-ratio: 16/9;
  background: #1a0d12;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--ink);
}
.media-player-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.media-caption-ed {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.media-caption-ed .ch {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--rose-deep);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.media-caption-ed h3 {
  font-family: "Noto Serif TC", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink);
  line-height: 1.5;
}

.media-thumbs {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.media-thumb-ed {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px 10px 14px;
  cursor: none;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.media-thumb-ed:hover {
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(178,42,63,0.15);
}
.media-thumb-ed.active {
  border-color: var(--rose);
  background: linear-gradient(180deg, #fff 0%, var(--rose-mist) 100%);
}
.media-thumb-ed.active::after {
  content: "▶ NOW PLAYING";
  position: absolute;
  top: -10px;
  left: 12px;
  background: var(--rose);
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 3px;
  padding: 3px 10px;
}
.media-thumb-ed .img {
  aspect-ratio: 16/9;
  background: #1a0d12;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.media-thumb-ed .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.media-thumb-ed:hover .img img { transform: scale(1.06); }
.media-thumb-ed .img::before {
  content: "▶";
  position: absolute;
  top: 50%; left: 50%;
  width: 44px; height: 44px;
  margin: -22px 0 0 -22px;
  background: rgba(233, 69, 96, 0.92);
  color: var(--cream);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 14px;
  padding-left: 3px;
  opacity: 0;
  transform: scale(0.7);
  transition: all .3s;
  z-index: 2;
}
.media-thumb-ed:hover .img::before,
.media-thumb-ed.active .img::before {
  opacity: 1;
  transform: scale(1);
}
.media-thumb-ed .ext-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15,30,22,0.86);
  color: var(--rose-light);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 3px 8px;
  border: 1px solid rgba(233,69,96,0.5);
  z-index: 3;
  pointer-events: none;
}
.media-thumb-ed .info .ch-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--rose-deep);
  text-transform: uppercase;
}
.media-thumb-ed .info .t {
  font-family: "Noto Serif TC", serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.55;
  margin-top: 4px;
  letter-spacing: 1px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .media-thumbs { grid-template-columns: 1fr; gap: 12px; }
  .media-thumb-ed {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 14px;
    padding: 8px;
    align-items: center;
  }
  .media-thumb-ed .img { margin-bottom: 0; }
  .media-thumb-ed .img::before { width: 32px; height: 32px; margin: -16px 0 0 -16px; font-size: 11px; }
  .media-thumb-ed.active::after { left: 8px; top: -8px; font-size: 10px; }
  .media-feature { padding: 14px 14px 22px; }
  .media-caption-ed h3 { font-size: 18px; }
}

/* ============================================
   9. 橫向卷軸 — 政績 timeline
   ============================================ */
.h-scroll-wrap {
  margin-top: 60px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 20px 40px 40px;
  cursor: none;
}
.h-scroll-wrap::-webkit-scrollbar { display: none; }

.h-scroll-track {
  display: flex;
  gap: 32px;
  width: max-content;
}

.h-card {
  flex: 0 0 380px;
  background: var(--white);
  padding: 40px 32px 36px;
  scroll-snap-align: start;
  position: relative;
  border: 1px solid var(--line);
  transition: all .4s cubic-bezier(.2,.7,.2,1);
}
.h-card:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(61,26,38,0.3);
}
.h-card:hover .h-num,
.h-card:hover .h-cat,
.h-card:hover h4,
.h-card:hover p { color: var(--cream); }
.h-card:hover .h-num { color: var(--rose); }
.h-card:hover .h-cat { color: var(--rose-light); }

.h-card .h-num {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 56px;
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
  letter-spacing: -2px;
  transition: color .4s;
}
.h-card .h-cat {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--rose-deep);
  margin: 24px 0 12px;
  border-top: 1px solid var(--ink);
  padding-top: 16px;
  transition: color .4s;
}
.h-card h4 {
  font-family: "Noto Serif TC", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
  line-height: 1.4;
  transition: color .4s;
}
.h-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
  transition: color .4s;
}

.scroll-hint {
  margin-top: 24px;
  padding: 0 40px;
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.scroll-hint::after {
  content: "→";
  font-size: 18px;
  animation: arrowSlide 1.5s ease-in-out infinite;
}
@keyframes arrowSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* ============================================
   10. Numbers strip — 數字條
   ============================================ */
.numbers-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0;
}
.numbers-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.numbers-grid .stat {
  position: relative;
  border-top: 1px solid rgba(245,194,194,0.3);
  padding-top: 28px;
}
.numbers-grid .stat .n {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 84px;
  font-weight: 500;
  font-style: italic;
  color: var(--rose);
  line-height: 1;
  letter-spacing: -2px;
}
.numbers-grid .stat .n small {
  font-size: 32px;
  font-style: normal;
  font-family: "Noto Serif TC", serif;
  margin-left: 4px;
  color: var(--rose-light);
}
.numbers-grid .stat .l {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--rose-light);
  margin-top: 12px;
  text-transform: uppercase;
}
.numbers-grid .stat .zh {
  font-family: "Noto Serif TC", serif;
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--cream);
  margin-top: 4px;
}

/* ============================================
   11. 雜誌列表 — 最新動態
   ============================================ */
.feed {
  margin-top: 60px;
  border-top: 1px solid var(--ink);
}
.feed-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: all .35s;
  position: relative;
}
.feed-item:hover {
  background: var(--rose-mist);
  padding-left: 24px;
  padding-right: 24px;
}
.feed-date {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--rose-deep);
}
.feed-title {
  font-family: "Noto Serif TC", serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 1px;
  line-height: 1.5;
}
.feed-cat {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--rose);
  text-transform: uppercase;
  border: 1px solid var(--rose);
  padding: 4px 12px;
}

/* ============================================
   12. 服務項目 — 倒置 grid
   ============================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}
.svc-item {
  background: var(--cream);
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  transition: all .4s;
  cursor: none;
}
.svc-item:hover {
  background: var(--rose);
  color: var(--cream);
}
.svc-item:hover .svc-no,
.svc-item:hover h5,
.svc-item:hover p { color: var(--cream); }
.svc-item:hover .svc-no { color: var(--ink); }
.svc-item .svc-no {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 48px;
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
  transition: color .4s;
}
.svc-item h5 {
  font-family: "Noto Serif TC", serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  transition: color .4s;
}
.svc-item p {
  grid-column: 1 / -1;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
  transition: color .4s;
}

/* ============================================
   13. CTA band
   ============================================ */
.cta-band {
  background: var(--rose);
  color: var(--cream);
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "FOR SUAO";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: clamp(180px, 22vw, 360px);
  font-weight: 700;
  letter-spacing: 16px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(253,243,232,0.25);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}
.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(36px, 5vw, 56px);
  letter-spacing: 6px;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-band p {
  font-size: 17px;
  margin-bottom: 36px;
  color: var(--rose-light);
}
.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: 80px 40px 30px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-grid h6 {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--rose);
  margin-bottom: 20px;
  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: 14px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--rose-light);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { padding: 5px 0; }
.footer-grid a {
  color: var(--cream);
  font-size: 14px;
  letter-spacing: 1px;
}
.footer-grid a:hover { color: var(--rose); }

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

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(245,194,194,0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--rose-light);
  letter-spacing: 1px;
}
.footer-bottom a {
  font-family: "Noto Serif TC", serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--rose);
  text-shadow: 0 0 12px rgba(233,69,96,0.3);
}
.footer-bottom a:hover {
  color: var(--cream);
  text-shadow: 0 0 18px rgba(245,194,194,0.6);
}

/* ============================================
   15. Reveal animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.left { transform: translateX(-40px); }
.reveal.right { transform: translateX(40px); }
.reveal.left.in, .reveal.right.in { transform: translateX(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ============================================
   16. 內頁 hero — 較小、左對齊
   ============================================ */
.page-cover {
  background: var(--cream);
  padding: 100px 40px 80px;
  border-bottom: 1px solid var(--ink);
}
.page-cover-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.page-cover .meta {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 6px;
  color: var(--rose);
  border-left: 2px solid var(--rose);
  padding-left: 14px;
  margin-bottom: 28px;
}
.page-cover h1 {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 700;
  letter-spacing: 6px;
  line-height: 1.05;
  color: var(--ink);
}
.page-cover .sub {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--rose-deep);
  letter-spacing: 4px;
  text-align: right;
}

/* ============================================
   17. 表格 — basic info
   ============================================ */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}
.info-table th, .info-table td {
  text-align: left;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.info-table th {
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  color: var(--rose-deep);
  letter-spacing: 3px;
  width: 130px;
  font-size: 14px;
}
.info-table td {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.85;
}

/* ============================================
   18. 聯絡頁
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-top: 60px;
}
.contact-info .row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .row .k {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--rose-deep);
  text-transform: uppercase;
  padding-top: 6px;
}
.contact-info .row .v {
  font-family: "Noto Serif TC", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
}

.contact-form {
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--line);
}
.contact-form h3 {
  font-family: "Noto Serif TC", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.contact-form .sub {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  color: var(--rose);
  margin-bottom: 28px;
  letter-spacing: 3px;
  font-size: 13px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--rose-deep);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .25s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--rose);
}
.form-row textarea { min-height: 120px; resize: vertical; }

/* ============================================
   19. Responsive
   ============================================ */
@media (max-width: 1024px) {
  .cover { grid-template-columns: 1fr; min-height: auto; }
  .cover-left { padding: 100px 32px 60px; }
  .cover-right { min-height: 60vh; }
  .editorial-grid { grid-template-columns: 1fr; gap: 40px; }
  .editorial-grid .col-img { position: relative; top: 0; max-width: 400px; }
  .page-cover-inner { grid-template-columns: 1fr; gap: 24px; }
  .page-cover .sub { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .header-inner { padding: 16px 24px; grid-template-columns: 1fr auto; gap: 16px; }
  .issue-info { display: none; }
  .nav-toggle { display: block; }
  .nav-bar {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--ink);
    flex-direction: column;
    gap: 0;
    transform: translateY(-150%);
    transition: transform .3s;
    z-index: -1;
  }
  .nav-bar.open { transform: translateY(0); }
  .nav-bar a { padding: 14px 24px; border-bottom: 1px solid var(--line); width: 100%; }
  .cover-left { padding: 80px 24px 40px; }
  .cover-issue { left: 24px; }
  .cover-num { font-size: 50vw; right: 16px; bottom: 16px; }
  .cover-title { letter-spacing: 3px; }
  section { padding: 80px 0; }
  .spread, .spread-wide { padding: 0 24px; }
  .section-mark { flex-direction: column; gap: 16px; align-items: flex-start; }
  .section-mark .num { font-size: 56px; }
  .section-mark .meta .zh { font-size: 28px; }
  .pull-quote { padding: 80px 24px; }
  .pull-quote::before { font-size: 120px; left: 24px; top: 24px; }
  .pull-quote::after { font-size: 120px; right: 24px; bottom: 0; }
  .h-card { flex: 0 0 280px; padding: 28px 22px; }
  .numbers-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-cover { padding: 60px 24px 48px; }
  .feed-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .feed-cat { grid-column: 1 / -1; justify-self: start; }
  .cta-band { padding: 80px 24px; }
  body, a, button { cursor: auto !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
}
