/* ==========================================================
   SCUni 性歸由你 — 全站樣式
   設計系統
   · 字級：七級，全站只用這七種
   · 色彩：三階橘，皆通過 WCAG AA 對比
   · 間距：8 的倍數
   ========================================================== */

:root {
  /* ---- 色彩 ---- */
  --coral:      #FF6B5C;   /* 主色：填色區塊、按鈕、圖示、logo */
  --coral-dk:   #E05548;   /* 按鈕 hover */
  --coral-mid:  #E8442F;   /* 大標題強調字（白底 3.96:1，通過大字 AA） */
  --coral-deep: #C43D30;   /* 小字強調（白底 5.17:1，通過 AA） */
  --coral-lt:   #FFF0EE;
  --yellow:     #FFD23F;
  --yellow-lt:  #FFFBEE;
  --yellow-mid: #FFE680;
  --blue:       #2B59C3;
  --blue-dp:    #1E4193;
  --blue-lt:    #EEF3FB;
  --ink:        #1C1917;
  --ink-mid:    #4A4540;
  --ink-lt:     #6B6560;
  --warm:       #F8F5F0;
  --white:      #FFFFFF;
  --border:     rgba(28,25,23,0.10);

  /* ---- 字體 ---- */
  --zh: 'Noto Sans TC', sans-serif;
  --en: 'Jost', sans-serif;

  /* ---- 字級：九級，全站只用這些 ---- */
  --fs-display: clamp(36px, 5vw, 58px);   /* 首頁主標 */
  --fs-h1:      clamp(32px, 4.2vw, 52px); /* 子頁主標 */
  --fs-h2:      clamp(28px, 3.2vw, 40px); /* 區塊標題 */
  --fs-h3:      24px;                     /* 次級標題、引言金句 */
  --fs-h4:      20px;                     /* 卡片標題 */
  --fs-lead:    18px;                     /* 區塊引言 */
  --fs-body:    17px;                     /* 內文 */
  --fs-small:   15px;                     /* 註記、來源 */
  --fs-label:   12px;                     /* 小標籤、編號 */

  /* ---- 行高 ---- */
  --lh-tight: 1.24;
  --lh-mid:   1.6;
  --lh-body:  1.9;

  /* ---- 區塊間距 ---- */
  --sp-sec: 96px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--zh);
  background: var(--warm);
  color: var(--ink);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ==========================================================
   共用元件
   ========================================================== */

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 48px; }

/* 英文小標籤 */
.eyebrow {
  font-family: var(--en);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--coral);
  flex-shrink: 0;
}

/* 標題 */
h1 {
  font-family: var(--zh);
  font-weight: 900;
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
h1 em {
  font-style: normal;
  color: var(--coral-mid);
  border-bottom: 4px solid var(--yellow);
  padding-bottom: 6px;
}
h2 {
  font-family: var(--zh);
  font-weight: 900;
  font-size: var(--fs-h2);
  line-height: var(--lh-tight);
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
h2 .ac {
  color: var(--coral-mid);
  border-bottom: 5px solid var(--yellow);
  padding-bottom: 1px;
}
h3 {
  font-family: var(--zh);
  font-weight: 700;
  font-size: var(--fs-h4);
  line-height: 1.45;
  color: var(--ink);
}

/* 引言 */
.lead {
  font-size: var(--fs-lead);
  color: var(--ink-mid);
  line-height: var(--lh-body);
  max-width: 660px;
}

/* 按鈕 */
.btn-p {
  display: inline-block;
  font-family: var(--zh);
  font-size: var(--fs-small);
  font-weight: 700;
  background: var(--coral);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.btn-p:hover { background: var(--coral-dk); transform: translateY(-2px); }

.btn-o {
  display: inline-block;
  font-family: var(--zh);
  font-size: var(--fs-small);
  font-weight: 700;
  background: transparent;
  color: var(--coral-deep);
  padding: 13px 28px;
  border-radius: 30px;
  border: 2px solid var(--coral);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-o:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }

.btn-d {
  display: inline-block;
  font-family: var(--zh);
  font-size: var(--fs-small);
  font-weight: 700;
  background: var(--ink);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  transition: background 0.2s, transform 0.15s;
}
.btn-d:hover { background: var(--coral-dk); transform: translateY(-2px); }

.btn-g {
  font-family: var(--zh);
  font-size: var(--fs-small);
  color: var(--ink-mid);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(74,69,64,0.35);
  text-underline-offset: 4px;
}
.btn-g:hover { color: var(--coral-deep); }

/* ==========================================================
   BANNER
   ========================================================== */
.banner {
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--zh);
  font-size: var(--fs-small);
  font-weight: 500;
  line-height: 1.5;
}
.banner-link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

/* ==========================================================
   NAV
   ========================================================== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,245,240,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.nav-logo-txt { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-en {
  font-family: var(--en);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--coral-deep);
  letter-spacing: 0.01em;
}
.nav-logo-zh {
  font-family: var(--zh);
  font-size: var(--fs-label);
  font-weight: 500;
  color: var(--coral-deep);
  letter-spacing: 0.08em;
}
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-family: var(--zh);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--coral-deep); }
.nav-links a.active { color: var(--coral-deep); font-weight: 700; }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  border: none; background: none; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; padding: 0; -webkit-appearance: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================
   HERO — 首頁（置中）
   ========================================================== */
.hero {
  background: var(--warm);
  padding: 88px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
  contain: paint;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px; left: 50%;
  width: 900px; height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,210,63,0.16) 0%, rgba(255,210,63,0) 62%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.hero-mark { width: 28px; height: 28px; margin: 0 auto 12px; }
.hero-brand {
  font-family: var(--zh);
  font-weight: 700;
  font-size: var(--fs-small);
  color: var(--coral-deep);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.hero-brand b { font-family: var(--en); font-weight: 700; letter-spacing: 0.02em; }
.hero-brand span { margin-left: 6px; }
.hero h1 { margin-bottom: 22px; }
.hero-sub {
  font-size: var(--fs-lead);
  color: var(--ink-mid);
  line-height: var(--lh-body);
  max-width: 560px;
  margin: 0 auto 38px;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}

/* ==========================================================
   WHO（黃底）
   ========================================================== */
.who { background: var(--yellow); padding: var(--sp-sec) 0; }
.who-top { max-width: 760px; }
.who-top h2 { margin-bottom: 16px; }
.who-top p { font-size: var(--fs-body); color: var(--ink-mid); line-height: var(--lh-body); }
.who-acronym-intro {
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--ink);
  margin: 48px 0 24px;
}
.who-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.who-col { padding: 30px 28px; border-radius: 14px; border: 2px solid rgba(28,25,23,0.12); }
.who-col-s { background: var(--coral-lt); border-color: rgba(255,107,92,0.4); }
.who-col-c { background: var(--blue-lt); border-color: rgba(43,89,195,0.32); }
.who-col-u { background: var(--white); border-color: rgba(28,25,23,0.18); }
.who-tag {
  font-family: var(--en);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 10px;
}
.who-title { font-family: var(--zh); font-weight: 900; font-size: var(--fs-h4); color: var(--ink); margin-bottom: 8px; }
.who-desc { font-size: var(--fs-small); color: var(--ink-mid); line-height: 1.85; }
.who-en {
  font-size: var(--fs-label);
  color: var(--ink-lt);
  margin-top: 12px;
  line-height: 1.65;
  font-style: italic;
}

/* ==========================================================
   SCENE（白底 + 對話泡泡）
   ========================================================== */
.scene { background: var(--white); padding: var(--sp-sec) 0; overflow-x: clip; }
.scene-grid { display: grid; grid-template-columns: 1fr 380px; gap: 72px; align-items: start; }
.scene-text p {
  font-size: var(--fs-body);
  color: var(--ink-mid);
  line-height: var(--lh-body);
  margin-bottom: 16px;
}
.scene-text p:last-child { margin-bottom: 0; }
.bubbles { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.bubble {
  position: relative;
  padding: 18px 22px;
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--ink);
}
.bubble::after { content: ''; position: absolute; width: 0; height: 0; }
.b-s { background: var(--blue-lt); border: 2px solid var(--blue); border-radius: 18px 18px 18px 4px; max-width: 300px; }
.b-s::after { bottom: -10px; left: 20px; border: 8px solid transparent; border-top-color: var(--blue); border-bottom: none; }
.b-t { background: var(--coral-lt); border: 2px solid rgba(255,107,92,0.55); border-radius: 18px 18px 4px 18px; max-width: 300px; align-self: flex-end; margin-left: auto; }
.b-t::after { bottom: -10px; right: 20px; border: 8px solid transparent; border-top-color: rgba(255,107,92,0.55); border-bottom: none; }
.b-a { background: var(--yellow-lt); border: 2px solid rgba(255,210,63,0.85); border-radius: 18px 18px 18px 4px; max-width: 300px; }
.b-a::after { bottom: -10px; left: 20px; border: 8px solid transparent; border-top-color: rgba(255,210,63,0.85); border-bottom: none; }
.b-role {
  font-family: var(--zh);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.b-role.s { color: var(--blue-dp); }
.b-role.t { color: var(--coral-deep); }
.b-role.a { color: #8A6A00; }
.reveal-slide { opacity: 0; transform: translate(36px,36px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-slide.in-view { opacity: 1; transform: translate(0,0); }

/* ==========================================================
   NOTE（紙條堆疊動畫）
   ========================================================== */
.note { background: var(--warm); padding: var(--sp-sec) 0; overflow-x: clip; }
.note-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.note-stack {
  position: relative;
  height: 440px;
  perspective: 900px;
  --sp: 1;            /* 散開幅度，窄螢幕自動縮小 */
}
.mini-note {
  position: absolute;
  top: 50%; left: 50%;
  width: 132px;
  padding: 13px 14px;
  font-family: var(--zh);
  font-size: var(--fs-label);
  line-height: 1.55;
  color: var(--ink);
  background: var(--yellow-mid);
  border-radius: 3px;
  box-shadow: 2px 4px 12px rgba(28,25,23,0.13);
  opacity: 0;
  transform:
    translate(calc(-50% + var(--x) * var(--sp) + var(--fx)),
              calc(-50% + var(--y) * var(--sp) + var(--fy)))
    rotate(calc(var(--r) + 24deg)) scale(0.6);
  transition: opacity 0.42s ease-out, transform 0.62s cubic-bezier(.22,1.15,.4,1);
}
.note-stack.in-view .mini-note {
  opacity: 1;
  transform: translate(calc(-50% + var(--x) * var(--sp)), calc(-50% + var(--y) * var(--sp)))
             rotate(var(--r)) scale(1);
}
.mini-note.tone-b { background: var(--blue-lt); }
.mini-note.tone-c { background: var(--coral-lt); }
.mini-note.tone-w { background: #FFFDF6; }

.note-card {
  position: absolute;
  top: 50%; left: 50%;
  z-index: 40;
  width: 300px;
  background: var(--yellow);
  padding: 38px 34px;
  border-radius: 4px;
  box-shadow: 6px 12px 34px rgba(28,25,23,0.22);
  opacity: 0;
  transform: translate(calc(-50% + 0px), calc(-50% + 90px)) rotate(14deg) scale(0.7);
  transition: opacity 0.5s ease-out, transform 0.75s cubic-bezier(.22,1.15,.4,1);
}
.note-stack.in-view .note-card {
  opacity: 1;
  transform: translate(-50%,-50%) rotate(-1.8deg) scale(1);
}
.note-card::before {
  content: '';
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 21px;
  background: rgba(255,253,240,0.75);
  border: 1px solid rgba(200,185,150,0.3);
  border-radius: 2px;
}
.note-zh {
  font-family: var(--zh);
  font-weight: 900;
  font-style: italic;
  font-size: var(--fs-h3);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 12px;
  display: block;
}
.note-from { font-size: var(--fs-label); color: var(--ink-mid); opacity: 0.75; }
.note-body { font-size: var(--fs-body); color: var(--ink-mid); line-height: var(--lh-body); }
.note-body strong { color: var(--ink); font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  .mini-note, .note-card { transition: none; opacity: 1; }
  .mini-note { transform: translate(calc(-50% + var(--x) * var(--sp)), calc(-50% + var(--y) * var(--sp))) rotate(var(--r)); }
  .note-card { transform: translate(-50%,-50%) rotate(-1.8deg); }
  .reveal-slide { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================
   STUDENT FEEDBACK
   ========================================================== */
.student-fb { background: var(--white); padding: var(--sp-sec) 0; }
.student-fb h2 { margin-bottom: 12px; }
.student-fb .lead { margin-bottom: 44px; }
.fb-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
.fb-card {
  background: var(--blue-lt);
  border: 2px solid rgba(43,89,195,0.22);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex; flex-direction: column;
}
.fb-quote {
  font-size: var(--fs-small);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.85;
  margin-bottom: 12px;
  flex: 1;
}
.fb-from { font-size: var(--fs-label); color: var(--ink-mid); opacity: 0.75; }

/* ==========================================================
   PIVOT（珊瑚底）
   ========================================================== */
.pivot { background: var(--coral); padding: var(--sp-sec) 0; }
.pivot-q {
  font-family: var(--zh);
  font-weight: 900;
  font-size: var(--fs-h2);
  line-height: 1.55;
  color: #fff;
  max-width: 780px;
}
.pivot-hl {
  background: var(--yellow);
  color: var(--ink);
  padding: 2px 10px;
  border-radius: 3px;
  display: inline-block;
  white-space: nowrap;
}

/* ==========================================================
   SERVICES
   ========================================================== */
.svcs { background: var(--white); padding: var(--sp-sec) 0; }
.svcs-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 48px; }
.svcs-sub { font-size: var(--fs-small); color: var(--ink-mid); max-width: 320px; text-align: right; line-height: 1.8; }
.svcs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.svc { background: var(--white); padding: 34px 28px; transition: background 0.2s; }
.svc:hover { background: var(--coral-lt); }
.svc-n {
  font-family: var(--en);
  font-size: var(--fs-label);
  font-weight: 700;
  color: var(--coral-deep);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.svc-t { font-family: var(--zh); font-weight: 700; font-size: var(--fs-h4); color: var(--ink); margin-bottom: 10px; line-height: 1.45; }
.svc-d { font-size: var(--fs-small); color: var(--ink-mid); line-height: 1.85; }
.svc-link {
  display: inline-block;
  margin-top: 16px;
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--coral-deep);
  border-bottom: 2px solid rgba(255,107,92,0.45);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.svc-link:hover { border-color: var(--coral); }

/* ==========================================================
   PLANS
   ========================================================== */
.plans { background: var(--warm); padding: var(--sp-sec) 0; }
.plans-head { margin-bottom: 44px; }
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.plan {
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  background: var(--white);
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.plan:hover { border-color: var(--coral); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(28,25,23,0.07); }
.plan-tag {
  font-family: var(--en);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 12px;
}
.plan-name { font-family: var(--zh); font-weight: 900; font-size: var(--fs-h4); color: var(--ink); margin-bottom: 6px; }
.plan-meta { font-size: var(--fs-small); color: var(--ink-lt); margin-bottom: 18px; }
.plan-desc { font-size: var(--fs-small); color: var(--ink-mid); line-height: 1.85; flex: 1; }
.plan-fit {
  font-size: var(--fs-small);
  color: var(--ink-mid);
  line-height: 1.8;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.plan-fit strong { color: var(--ink); font-weight: 700; }
.plans-note {
  background: var(--white);
  font-size: var(--fs-small);
  color: var(--ink-mid);
  line-height: 1.85;
  margin-top: 28px;
  padding: 22px 26px;
  border-radius: 10px;
  border: 2px solid rgba(255,210,63,0.55);
}

/* ==========================================================
   PROCESS（合作時程）
   ========================================================== */
.process { background: var(--yellow-lt); padding: var(--sp-sec) 0; }
.proc-head { margin-bottom: 48px; }
.phases { display: grid; grid-template-columns: 1fr 1fr 0.62fr; gap: 36px; align-items: start; }
.phase-label {
  font-family: var(--zh);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--coral-deep);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--coral);
  display: inline-block;
}
.phase-steps { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.phase:last-child .phase-steps { grid-template-columns: 1fr; }
.step-dot {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(28,25,23,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-family: var(--en);
  font-size: var(--fs-label); font-weight: 700;
  color: var(--ink-lt);
}
.step-dot.on { background: var(--coral); border-color: var(--coral); color: #fff; }
.step-t { font-family: var(--zh); font-weight: 700; font-size: var(--fs-small); color: var(--ink); margin-bottom: 4px; }
.step-d { font-size: var(--fs-label); color: var(--ink-lt); line-height: 1.6; }

/* ==========================================================
   NEWS
   ========================================================== */
.news { background: var(--coral-lt); padding: var(--sp-sec) 0; }
.news h2 { margin-bottom: 12px; }
.news .lead { margin-bottom: 40px; }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
.news-card {
  display: block;
  background: var(--white);
  border: 2px solid rgba(28,25,23,0.09);
  border-radius: 14px;
  overflow: hidden;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
a.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(28,25,23,0.1); border-color: var(--coral); }
.news-img { aspect-ratio: 2.4 / 1; background: #E4DDD5; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 24px 24px 26px; }
.news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.news-date {
  font-family: var(--en);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-lt);
}
.news-pill {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--coral);
  padding: 3px 10px;
  border-radius: 20px;
}
.news-title { font-family: var(--zh); font-weight: 900; font-size: var(--fs-h4); color: var(--ink); margin-bottom: 10px; line-height: 1.4; }
.news-desc { font-size: var(--fs-small); color: var(--ink-mid); line-height: 1.8; }
.news-more {
  display: inline-block;
  margin-top: 16px;
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--coral-deep);
}
.news-soon {
  border: 2px dashed rgba(28,25,23,0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.5);
  padding: 44px 24px;
  text-align: center;
  color: var(--ink-lt);
  font-size: var(--fs-small);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 200px;
}
.news-soon-mark { font-size: var(--fs-h3); margin-bottom: 10px; opacity: 0.45; }

/* ==========================================================
   IG 追蹤區塊
   ========================================================== */
.ig-follow {
  background: linear-gradient(135deg, #FFF6F4 0%, #FFFBEE 100%);
  border: 2px solid rgba(255,107,92,0.3);
  border-radius: 18px;
  padding: 34px 32px;
  display: flex; align-items: center; gap: 26px;
  flex-wrap: wrap;
}
.ig-icon {
  width: 62px; height: 62px; border-radius: 18px; flex-shrink: 0;
  background: linear-gradient(45deg, #F9CE34 0%, #EE2A7B 50%, #6228D7 100%);
  display: flex; align-items: center; justify-content: center;
}
.ig-icon svg { width: 34px; height: 34px; fill: #fff; }
.ig-txt { flex: 1; min-width: 200px; }
.ig-h { font-family: var(--zh); font-weight: 900; font-size: var(--fs-h4); color: var(--ink); margin-bottom: 4px; }
.ig-handle { font-family: var(--en); font-size: var(--fs-body); font-weight: 600; color: var(--coral-deep); margin-bottom: 6px; }
.ig-d { font-size: var(--fs-small); color: var(--ink-mid); line-height: 1.75; }
.ig-btn {
  display: inline-block;
  font-family: var(--zh);
  font-size: var(--fs-small);
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  padding: 14px 30px;
  border-radius: 30px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.ig-btn:hover { background: var(--coral-dk); transform: translateY(-2px); }

/* 聯絡管道列 */
.contact-lines { display: flex; flex-direction: column; gap: 14px; }
.cline {
  display: flex; align-items: center; gap: 14px;
  font-size: var(--fs-body);
  color: var(--ink);
}
.cline-ico {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--coral-lt);
  border: 2px solid rgba(255,107,92,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cline-ico svg { width: 19px; height: 19px; fill: var(--coral-deep); }
.cline-k { display: block; font-size: var(--fs-label); color: var(--ink-lt); letter-spacing: 0.06em; line-height: 1.3; }
.cline-v { display: block; font-family: var(--en); font-size: var(--fs-body); font-weight: 600; color: var(--ink); line-height: 1.4; }
a.cline:hover .cline-v { color: var(--coral-deep); }

/* ==========================================================
   CTA（白底）
   ========================================================== */
.cta { background: var(--white); padding: var(--sp-sec) 0; border-top: 1px solid var(--border); }
.cta-grid { display: grid; grid-template-columns: 1fr 400px; gap: 72px; align-items: start; }
.cta-h2 { margin-bottom: 16px; }
.cta-sub { font-size: var(--fs-body); color: var(--ink-mid); line-height: var(--lh-body); margin-bottom: 32px; }

.form-card {
  background: var(--warm);
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 34px 32px;
}
.form-card h3 { margin-bottom: 10px; }
.form-card p { font-size: var(--fs-small); color: var(--ink-mid); line-height: 1.85; margin-bottom: 22px; }
.form-list { list-style: none; margin-bottom: 24px; }
.form-list li {
  font-size: var(--fs-small);
  color: var(--ink-mid);
  line-height: 1.75;
  padding-left: 22px;
  position: relative;
  margin-bottom: 9px;
}
.form-list li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
}

.cta .ig-follow { margin-top: 44px; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer { background: var(--warm); border-top: 1px solid var(--border); }
.footer-in {
  max-width: 1080px; margin: 0 auto; padding: 52px 48px 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
}
.ft-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ft-logo img { width: 38px; height: 38px; }
.ft-en { font-family: var(--en); font-size: var(--fs-h4); font-weight: 700; color: var(--coral-deep); line-height: 1.1; }
.ft-en span { display: block; font-family: var(--zh); font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.08em; }
.ft-zh { font-size: var(--fs-small); color: var(--ink-mid); line-height: 1.7; margin-bottom: 12px; }
.ft-tag { font-family: var(--zh); font-weight: 900; font-style: italic; font-size: var(--fs-h4); color: var(--coral-deep); }
.ft-h { font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.12em; color: var(--ink-lt); margin-bottom: 14px; text-transform: uppercase; font-family: var(--en); }
.ft-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-list a { font-size: var(--fs-small); color: var(--ink-mid); }
.ft-list a:hover { color: var(--coral-deep); }
.ft-bottom {
  max-width: 1080px; margin: 0 auto;
  padding: 20px 48px 40px;
  border-top: 1px solid var(--border);
  font-size: var(--fs-label);
  color: var(--ink-lt);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  line-height: 1.7;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* --- 平板 --- */
@media (max-width: 1024px) {
  :root { --sp-sec: 76px; }
  .wrap { padding: 0 32px; }
  nav { padding: 0 32px; }
  .banner { padding: 10px 32px; }
  .footer-in { padding: 44px 32px 34px; grid-template-columns: 1fr 1fr; }
  .ft-bottom { padding: 20px 32px 34px; }
  .scene-grid { grid-template-columns: 1fr 320px; gap: 40px; }
  .cta-grid { grid-template-columns: 1fr 340px; gap: 44px; }
  .note-grid { gap: 44px; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .fb-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
}

/* --- 手機 --- */
@media (max-width: 768px) {
  :root { --sp-sec: 60px; }
  html { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .banner { padding: 9px 20px; font-size: var(--fs-small); flex-wrap: wrap; gap: 8px; text-align: center; }

  /* NAV → 漢堡 */
  nav { padding: 0 20px; height: 60px; }
  .nav-logo-img { width: 32px; height: 32px; }
  .nav-logo-en { font-size: var(--fs-lead); }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 60px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--warm);
    border-bottom: 1px solid var(--border);
    padding: 8px 20px 20px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    box-shadow: 0 12px 24px rgba(28,25,23,0.07);
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 16px 2px; font-size: var(--fs-body); }

  /* 單欄化 */
  .note-grid, .cta-grid, .scene-grid { grid-template-columns: 1fr; gap: 40px; }
  .who-cols, .svcs-grid, .plans-grid, .news-grid, .fb-grid { grid-template-columns: 1fr; }
  .svcs-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .svcs-sub { text-align: left; max-width: none; }

  /* 合作時程：手機仍維持兩欄，不拉成一長條 */
  .phases { grid-template-columns: 1fr; gap: 30px; }
  .phase-steps { grid-template-columns: 1fr 1fr; gap: 18px; }
  .phase:last-child .phase-steps { grid-template-columns: 1fr 1fr; }
  .step-dot { width: 38px; height: 38px; margin-bottom: 10px; }

  .hero { padding: 56px 0 64px; }
  .hero-mark { width: 24px; height: 24px; }

  /* 紙條 */
  .note-stack { height: 380px; --sp: 0.70; }
  .note-card { width: 260px; padding: 30px 26px; }
  .note-zh { font-size: var(--fs-h4); }
  .mini-note { width: 112px; padding: 11px 12px; }

  .pivot-hl { white-space: normal; }
  .pivot-q br { display: none; }

  .ig-follow { padding: 26px 22px; gap: 18px; }
  .ig-btn { width: 100%; text-align: center; }

  .footer-in { grid-template-columns: 1fr; padding: 40px 20px 28px; gap: 30px; }
  .ft-bottom { padding: 20px 20px 32px; flex-direction: column; }
}

/* --- 小手機 --- */
@media (max-width: 400px) {
  .wrap { padding: 0 16px; }
  .note-stack { height: 340px; --sp: 0.58; }
  .note-card { width: 228px; padding: 24px 22px; }
  .note-zh { font-size: var(--fs-lead); }
  .mini-note { width: 98px; }
}
