/* ============================================================
 * ASAX Atelier · Main Stylesheet
 * 從 index.html (DirectionCraft) 抽取的設計系統
 * ============================================================ */

/* --- 1. 設計 Token --- */
:root {
  /* 色票 */
  --c-bg:       #F5F5F5;
  --c-bg-alt:   #ECECEC;
  --c-surface:  #FAFAFA;
  --c-ink:      #233540;
  --c-ink-2:    #1a2530;
  --c-mute:     #7a8595;
  --c-mute-2:   #C8D0D8;
  --c-blue:     #5667A3;
  --c-blue-d:   #2D3F60;
  --c-gold:     #B89456;
  --c-gold-2:   #E7C883;
  --c-gold-3:   #FBEEC8;
  --c-gold-4:   #D8C898;
  --c-moss:     #77A38F;
  --c-moss-2:   #9DC4B0;
  --c-purple:   #8A7395;
  --c-paper:    #DCE3EC;

  /* 字體 */
  --f-serif:    "Fraunces", "Huninn", "Noto Serif TC", serif;
  --f-sans:     "Inter", "Zen Maru Gothic", "Noto Sans TC", system-ui, sans-serif;
  --f-mono:     "JetBrains Mono", ui-monospace, monospace;
  --f-hand:     "Caveat", "Huninn", cursive;

  /* 容器 */
  --w-max:      1280px;
  --w-nav:      1960px;
  --pad-x:      56px;

  /* 邊距 / 圓角 */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;
  --r-pill: 999px;

  /* 陰影 */
  --sh-1: 0 4px 8px rgba(0,0,0,0.10);
  --sh-2: 0 8px 18px rgba(31,26,20,0.18);
  --sh-3: 0 12px 28px rgba(31,26,20,0.22);
}

/* --- 2. Reset --- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body {
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }

/* --- 3. 容器 --- */
.root-shell { width: 100%; min-height: 100vh; position: relative; overflow-x: clip; }
.full-bleed { width: 100%; position: relative; }
.section-inner { max-width: var(--w-max); margin: 0 auto; padding: 0 var(--pad-x); position: relative; }
.nav-inner    { max-width: var(--w-nav); margin: 0 auto; padding: 20px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; }

/* --- 4. 字級 / Eyebrow / 引用 --- */
.eyebrow {
  font-size: 12px; font-weight: 600; color: var(--c-mute);
  letter-spacing: 0.18em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--c-mute); }
.eyebrow.no-bar::before { display: none; }

.mono { font-family: var(--f-mono); letter-spacing: 0.1em; }
.hand { font-family: var(--f-hand); }

h1, h2, h3, h4 { font-family: var(--f-serif); font-weight: 500;
  letter-spacing: -0.025em; line-height: 1.1; color: var(--c-ink); margin: 0; }
h1 { font-size: clamp(40px, 5.2vw, 64px); line-height: 1.0; }
h2 { font-size: clamp(32px, 3.4vw, 44px); }
h3 { font-size: clamp(26px, 2.8vw, 36px); }
h4 { font-size: clamp(20px, 1.8vw, 26px); }
.italic-accent {font-style: italic;color: var(--c-blue);margin-right: 10px;}
.italic-gold   { font-style: italic; color: var(--c-gold-2); }
.italic-moss   { font-style: italic; color: var(--c-moss-2); }

p { margin: 0 0 16px; line-height: 1.7; color: var(--c-ink-2); }

/* --- 5. 按鈕 --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500; font-family: inherit;
  text-decoration: none; cursor: pointer; border: none;
  position: relative; overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}
.btn::before {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transform: skewX(-20deg); transition: left 0.6s ease; pointer-events: none;
}
.btn:hover::before { left: 130%; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: 0.1s; }

.btn .arrow { display: inline-block; transition: transform 0.25s; font-size: 16px; }
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary { background: var(--c-blue); color: var(--c-bg);
  box-shadow: 0 2px 0 rgba(31,26,20,0.08); }
.btn-primary:hover { background: var(--c-ink) !important;
  box-shadow: 0 10px 22px rgba(86,103,163,0.35); }

.btn-dark { background: var(--c-ink); color: var(--c-bg);
  box-shadow: 0 2px 0 rgba(31,26,20,0.08); }
.btn-dark:hover { background: var(--c-blue) !important;
  box-shadow: 0 10px 22px rgba(35,53,64,0.35); }

.btn-ghost { background: transparent; color: var(--c-ink);
  border: 1px solid rgba(31,26,20,0.2); }
.btn-ghost:hover { background: var(--c-ink) !important; color: var(--c-bg) !important;
  border-color: var(--c-ink) !important; }
/* 暗底版（inline style 帶 rgba(245,245,245,...) 標記）— hover 改為反色亮底，避免按鈕融進暗背景 */
.btn-ghost[style*="245,245,245"]:hover {
  background: var(--c-bg) !important; color: var(--c-ink) !important;
  border-color: var(--c-bg) !important;
}

.btn-on-dark { background: var(--c-blue); color: var(--c-bg); }
.btn-on-dark:hover { background: var(--c-gold-2) !important; color: var(--c-ink) !important;
  box-shadow: 0 10px 24px rgba(231,200,131,0.35); }

/* --- 6. Navbar --- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
/* 模糊背景拆到 ::before，避免 .site-nav 因 backdrop-filter 變成 fixed 子元素的 containing block，
   導致行動版 .nav-links 全螢幕選單在頁面捲動後無法對齊視窗 */
.site-nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: transparent;
  transition: background 0.3s ease;
}
.site-nav.scrolled::before {
  background: rgba(245, 245, 245, 0.92);
}
.site-nav.scrolled {
  border-bottom-color: rgba(31,26,20,0.08);
}
.site-nav .logo { display: flex; align-items: center; gap: 10px;
  color: var(--c-ink); text-decoration: none; }
.site-nav .logo img { height: 36px; width: auto; }
.site-nav .logo .dot { width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-blue); display: inline-block;
  animation: craftPulse 2s ease-in-out infinite; }
.site-nav .logo small { font-size: 11px; color: var(--c-mute);
  font-weight: 400; margin-left: 4px; font-family: var(--f-sans); }

.nav-links { display: flex; gap: 36px; font-size: 14px; font-weight: 500;
  list-style: none; padding: 0; margin: 0; }
.nav-links a {
  color: var(--c-ink-2); text-decoration: none; position: relative;
  padding: 6px 0; transition: color 0.25s;
  white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--c-blue); border-radius: 1px;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1);
}
.nav-links a:hover { color: var(--c-blue); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--c-blue); }

.nav-toggle {
  display: none; background: var(--c-ink); border: none;
  border-radius: 50%; width: 42px; height: 42px;
  cursor: pointer; position: relative; flex: none;
  z-index: 70; /* 高於 backdrop(55) 與 panel(60)，確保開啟後仍可點選關閉 */
  transition: background 0.25s, transform 0.25s;
}
.nav-toggle:hover { background: var(--c-blue); transform: scale(1.05); }
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--c-bg);
  border-radius: 2px;
}
.nav-toggle span {
  position: absolute; top: 50%; left: 50%; margin: -1px 0 0 -9px;
  transition: background 0.2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1), top 0.3s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* --- 7. Hero --- */
.hero {
  max-width: var(--w-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px;
  padding: 36px var(--pad-x) 24px;
  position: relative; z-index: 2;
  animation: craftFadeUp 0.7s ease both;
}
.hero-text { display: flex; flex-direction: column; gap: 18px; }
.hero p { font-size: 15px; line-height: 1.6; color: var(--c-ink-2); max-width: 480px;
  font-family: "Zen Maru Gothic", var(--f-sans); margin: 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; gap: 28px; padding-top: 14px;
  border-top: 1px solid rgba(31,26,20,0.1); flex-wrap: wrap; }
.hero-stat .num { font-family: var(--f-serif); font-size: 28px; font-weight: 500;
  color: var(--c-ink); line-height: 1; }
.hero-stat .lbl { font-size: 11px; color: var(--c-mute); margin-top: 4px; }

/* Hero 圖區（裝飾元素） */
.hero-art { position: relative; height: 380px; }
.hero-art .frame {
  position: absolute; inset: 0 30px 30px 0; border-radius: var(--r-lg);
  overflow: hidden; background: var(--c-paper);
  box-shadow: var(--sh-3); transform: rotate(-1deg);
  animation: craftFloatA 8s ease-in-out infinite;
}
.hero-art .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .live-tag {
  position: absolute; top: 16px; right: 16px; padding: 6px 12px;
  background: var(--c-ink); color: var(--c-bg); border-radius: var(--r-pill);
  font-size: 10px; font-family: var(--f-mono); letter-spacing: 0.1em; z-index: 5;
  animation: craftFloatB 4s ease-in-out infinite;
}
.hero-art .ticket {
  position: absolute; top: 16px; right: -8px; width: 96px; height: 120px;
  background: var(--c-blue); border-radius: 5px; padding: 10px;
  color: var(--c-bg); box-shadow: var(--sh-3); transform: rotate(6deg);
  animation: craftFloatA 6s ease-in-out infinite reverse;
  display: flex; flex-direction: column; justify-content: space-between; z-index: 3;
}
.hero-art .ticket .lbl { font-size: 8px; letter-spacing: 0.2em;
  opacity: 0.8; font-family: var(--f-mono); }
.hero-art .ticket .title { font-family: var(--f-serif); font-size: 11px;
  font-weight: 500; line-height: 1.1; }
.hero-art .ticket .yr { font-size: 8px; opacity: 0.8; }

.hero-art .stamp {
  position: absolute; bottom: 30px; right: 18px; width: 72px; height: 72px;
  border-radius: 50%; background: var(--c-gold-3);
  border: 2px dashed var(--c-blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(31,26,20,0.18);
  animation: craftSpin 24s linear infinite; z-index: 4;
}
.hero-art .sticky {
  position: absolute; bottom: -10px; left: 10px; width: 120px; height: 80px;
  background: var(--c-gold-2); padding: 10px; border-radius: 2px;
  transform: rotate(-4deg); box-shadow: 0 8px 18px rgba(31,26,20,0.2);
  animation: craftFloatB 5s ease-in-out infinite;
  color: var(--c-ink); z-index: 4;
}
.hero-art .sticky .tag { font-size: 9px; letter-spacing: 0.15em;
  text-transform: uppercase; opacity: 0.65; margin-bottom: 4px; font-family: var(--f-mono); }
.hero-art .sticky .body { font-family: var(--f-serif); font-size: 13px;
  font-weight: 500; line-height: 1.2; }

/* 浮光散景 (背景模糊圓) */
.bg-orb { position: absolute; border-radius: 50%; filter: blur(40px);
  pointer-events: none; z-index: 0; animation: craftDrift 14s ease-in-out infinite; }
.bg-orb.blue { background: var(--c-blue); opacity: 0.06; }
.bg-orb.moss { background: var(--c-moss); opacity: 0.08; }

/* --- 8. SectionDivider --- */
.section-divider { position: relative; z-index: 2; }
.section-divider .row {
  max-width: var(--w-max); margin: 0 auto; padding: 36px var(--pad-x);
  display: flex; align-items: center; gap: 20px;
}
.section-divider .line { flex: 1; height: 1px; background: rgba(31,26,20,0.15); }
.section-divider .dot { width: 3px; height: 3px; border-radius: 50%;
  background: rgba(31,26,20,0.15); }
.section-divider .label { display: flex; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.25em;
  color: var(--c-mute); font-weight: 500; }
.section-divider .glyph { color: var(--c-blue); font-size: 16px;
  animation: craftPulse 3s ease-in-out infinite; }
.section-divider .glyph.delay { animation-delay: 1.5s; }

.section-divider.dark { background: var(--c-ink); }
.section-divider.dark .line { background: rgba(245,241,234,0.18); }
.section-divider.dark .dot  { background: rgba(245,241,234,0.18); }
.section-divider.dark .label { color: var(--c-gold-2); }

/* --- 9. Specimen Box (產品展示) --- */
.specimen-wrap { max-width: var(--w-max); margin: 0 auto;
  padding: 56px var(--pad-x) 40px; position: relative; z-index: 2; }
.specimen-head { display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px; gap: 20px; flex-wrap: wrap; }
.specimen-head .note { font-family: var(--f-hand); font-size: 18px;
  color: var(--c-mute); max-width: 280px; text-align: right;
  line-height: 1.4; transform: rotate(-2deg); }

.specimen-board {
  background: linear-gradient(135deg, var(--c-gold-4) 0%, #B89F6E 100%);
  padding: 22px; border-radius: var(--r-md);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.4),
              inset 0 -2px 4px rgba(0,0,0,0.15),
              0 8px 24px rgba(31,26,20,0.18);
  position: relative;
}
.specimen-board::after {
  content: ""; position: absolute; inset: 22px; border-radius: 3px;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  pointer-events: none; animation: specGlare 4s ease-in-out infinite; z-index: 5;
}
.specimen-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  background: var(--c-ink); padding: 14px; border-radius: 3px; position: relative;
}
.spec-card {
  background: var(--c-surface); padding: 12px; cursor: pointer; position: relative;
  text-decoration: none; color: inherit;
  box-shadow: var(--sh-1);
  transform: rotate(var(--r, 0));
  animation: specSlideIn 0.9s cubic-bezier(0.2,0.8,0.2,1) both,
             specBreath 6s ease-in-out infinite 0.9s;
  animation-delay: var(--delay, 0s), calc(0.9s + var(--delay, 0s));
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.35s, background 0.3s;
  display: block;
  /* 按鈕重置 */
  border: none; font: inherit; text-align: center; width: 100%;
}
/* 強制內部 span 垂直堆疊（button 內不能用 div，只能用 span） */
.spec-card > .num,
.spec-card > .corner-glyph,
.spec-card > .frame,
.spec-card > .sub,
.spec-card > .name,
.spec-card > .hand,
.spec-card > .arrow-down,
.spec-card .frame > .pin,
.spec-card .frame > img { display: block; }
.spec-card:hover {
  z-index: 10; transform: translateY(-6px) rotate(0deg) scale(1.03);
  box-shadow: 0 12px 22px rgba(31,26,20,0.28), 0 0 0 1px var(--accent);
}
.spec-card.is-open {
  z-index: 20;
  transform: translateY(-10px) rotate(0deg) scale(1.04);
  box-shadow: 0 8px 18px rgb(from var(--accent) r g b / 0.4);
  outline: 2px solid var(--accent); outline-offset: 4px;
}
.spec-card .arrow-down {
  display: none;
  position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
  font-size: 18px; color: var(--accent); font-family: serif;
}
.spec-card.is-open .arrow-down { display: block; }
.spec-card:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 4px; }
.spec-card .num {
  position: absolute; top: 6px; left: 6px; font-family: var(--f-mono);
  font-size: 8px; color: var(--c-mute); letter-spacing: 0.1em;
  background: rgba(255,255,255,0.7); padding: 2px 4px; z-index: 3;
}
.spec-card .corner-glyph {
  position: absolute; top: 6px; right: 6px; width: 22px; height: 22px;
  border-radius: 50%; background: rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  font-family: serif; font-size: 12px; color: var(--accent);
  border: 1px solid var(--accent); z-index: 3;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), color 0.3s, background 0.3s;
}
.spec-card:hover .corner-glyph {
  transform: rotate(180deg) scale(1.2); background: var(--accent); color: var(--c-surface);
}
.spec-card .frame {
  aspect-ratio: 1/1; margin: 12px 0 8px; position: relative;
  border: 1px solid rgba(31,26,20,0.1); overflow: hidden;
  background: var(--c-paper);
}
.spec-card .frame img { width: 100%; height: 100%; object-fit: cover; }
.spec-card .pin {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--c-ink); z-index: 4;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), background 0.3s;
}
.spec-card .pin.tr { top: 6px; right: 6px; }
.spec-card .pin.bl { bottom: 6px; left: 6px; }
.spec-card .pin.br { bottom: 6px; right: 6px; }
.spec-card:hover .pin { background: var(--accent); transform: scale(1.4);
  animation: pinShine 1.4s ease-in-out infinite; }

.spec-card .sub {
  font-family: var(--f-serif); font-style: italic; font-size: 11px;
  color: var(--c-mute); text-align: center; margin-bottom: 4px;
}
.spec-card .name {
  font-family: var(--f-serif); font-size: 16px; font-weight: 500;
  color: var(--c-ink); text-align: center; line-height: 1.1;
  margin-bottom: 6px; position: relative; transition: color 0.3s, letter-spacing 0.3s;
}
.spec-card .name::after {
  content: ""; position: absolute; left: 12%; right: 12%; bottom: -2px;
  height: 1px; background: var(--accent); transform: scaleX(0);
  transform-origin: center; transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
}
.spec-card:hover .name { color: var(--accent); letter-spacing: 0.02em; }
.spec-card:hover .name::after { transform: scaleX(1); }
.spec-card .hand {
  font-family: var(--f-hand); font-size: 14px; color: var(--accent);
  text-align: center; border-top: 1px dashed var(--c-mute);
  padding-top: 6px; transform: rotate(var(--h-r, 1deg));
}

/* 對話框面板 */
.specimen-dialogue { margin-top: 56px; position: relative; }
.specimen-dialogue .label-row {
  font-size: 11px; color: var(--c-mute); letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 18px; text-align: center;
  font-family: var(--f-mono);
}
.dialogue-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  align-items: flex-start; max-width: 980px; margin: 0 auto;
}
.dialogue-panel[hidden] { display: none; }
.dialogue-panel .q-wrap { display: flex; justify-content: flex-end; }
.dialogue-panel .a-wrap { display: flex; justify-content: flex-start; }
.dialogue-panel .bubble-q {
  background: var(--c-ink); color: var(--c-bg);
  padding: 18px 24px; border-radius: 20px 20px 4px 20px;
  max-width: 380px; font-size: 16px; line-height: 1.55;
  font-family: "Zen Maru Gothic", var(--f-sans);
  box-shadow: 0 4px 14px rgba(31,26,20,0.12);
  animation: bubbleQ 0.5s cubic-bezier(0.2,0.8,0.2,1) both;
}
.dialogue-panel .bubble-a {
  background: var(--accent, var(--c-blue)); color: var(--c-bg);
  padding: 18px 24px; border-radius: 20px 20px 20px 4px;
  max-width: 380px; font-size: 17px; line-height: 1.5;
  font-family: var(--f-serif); font-weight: 500;
  box-shadow: 0 6px 18px rgb(from var(--accent, var(--c-blue)) r g b / 0.4);
  text-decoration: none; display: block; cursor: pointer;
  animation: bubbleA 0.5s cubic-bezier(0.2,0.8,0.2,1) 0.2s both;
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.3s, filter 0.3s;
}
.dialogue-panel .bubble-a:hover {
  transform: translateY(-3px) scale(1.01); filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(35,53,64,0.28);
}
.dialogue-panel .meta {
  font-size: 10px; opacity: 0.85; margin-bottom: 6px;
  font-family: var(--f-mono); letter-spacing: 0.12em;
  display: flex; align-items: center; gap: 6px;
}
.dialogue-panel .bubble-q .meta { color: var(--c-mute); letter-spacing: 0.1em; }
.dialogue-panel .more {
  margin-top: 10px; font-size: 12px; opacity: 0.9;
  font-family: var(--f-sans); font-weight: 500;
}
.dialogue-panel .more .arrow { display: inline-block; transition: transform 0.25s; }
.dialogue-panel .bubble-a:hover .more .arrow { transform: translateX(6px); }

@keyframes bubbleQ { from { opacity: 0; transform: translateX(-30px) }
                     to { opacity: 1; transform: translateX(0) } }
@keyframes bubbleA { from { opacity: 0; transform: translateX(30px) }
                     to { opacity: 1; transform: translateX(0) } }

@media (max-width: 720px) {
  .dialogue-panel { grid-template-columns: 1fr; gap: 16px; }
  .dialogue-panel .q-wrap, .dialogue-panel .a-wrap { justify-content: center; }
}

.specimen-meta {
  margin-top: 16px; display: flex; justify-content: space-between;
  align-items: center; font-family: var(--f-mono);
  font-size: 10px; color: var(--c-ink-2); opacity: 0.65; letter-spacing: 0.1em;
}

/* --- 10. Manifesto (深色區塊) --- */
.manifesto {
  background: var(--c-ink); color: var(--c-bg); position: relative;
  overflow: hidden; z-index: 2;
}
.manifesto .section-inner { padding: 64px var(--pad-x); }
.manifesto .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.manifesto .eyebrow { color: var(--c-gold-2); }
.manifesto .eyebrow::before { background: var(--c-gold-2); }
.manifesto h2 { color: var(--c-bg); font-size: clamp(36px, 4.4vw, 56px); line-height: 1.1; }
.manifesto p { color: var(--c-mute-2); max-width: 460px; margin-top: 24px; font-size: 15px; }
.manifesto .img-wrap {
  aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; background: var(--c-ink-2);
}
.manifesto .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.manifesto .deco-circle {
  position: absolute; border-radius: 50%; opacity: 0.3;
  animation: craftSpin 60s linear infinite;
}
.manifesto .deco-circle.a {
  top: -60px; right: -60px; width: 240px; height: 240px;
  border: 1px solid var(--c-gold-2);
}
.manifesto .deco-circle.b {
  top: -40px; right: -40px; width: 200px; height: 200px;
  border: 1px dashed var(--c-blue);
  animation-duration: 80s; animation-direction: reverse; opacity: 0.4;
}

/* --- 11. Cases (案例) --- */
.cases { background: var(--c-bg-alt); position: relative; z-index: 2; }
.cases .section-inner { padding: 36px var(--pad-x) 56px; }
.cases-head {
  display: flex; align-items: center; gap: 20px; margin-bottom: 28px;
}
.cases-head .line { flex: 1; height: 1px; background: rgba(31,26,20,0.15); }
.cases-head .label {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.25em;
  color: var(--c-mute); font-weight: 500;
}
.cases-head .glyph { color: var(--c-blue); font-size: 16px;
  animation: craftPulse 3s ease-in-out infinite; }

.case-row {
  --case-rot: -0.5deg;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px;
  padding: 40px 0; border-bottom: 1px solid rgba(31,26,20,0.18);
  align-items: center;
  animation: craftFadeUp 0.7s ease both;
}
.case-row:first-child { border-top: 1px solid rgba(31,26,20,0.18); }
.case-row.reverse { --case-rot: 0.5deg; grid-template-columns: 1fr 1.6fr; }
.case-row.reverse .case-img { order: 2; }
.case-row.reverse .case-text { order: 1; }
.case-img {
  position: relative; aspect-ratio: 16/10; overflow: hidden; border-radius: 4px;
  transform: rotate(var(--case-rot)); transition: transform 0.4s; display: block;
}
.case-img:hover { transform: rotate(0deg) scale(1.01); }
.case-img img { width: 100%; height: 100%; object-fit: cover; }
.case-stat {
  position: absolute; bottom: 20px; right: 20px;
  padding: 14px 20px; border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25); transform: rotate(2deg);
  background: var(--case-bg, var(--c-ink)); color: var(--case-fg, var(--c-bg));
}
.case-stat .num { font-family: var(--f-serif); font-size: 40px;
  font-weight: 500; line-height: 1; letter-spacing: -0.02em; }
.case-stat .lbl { font-size: 10px; opacity: 0.7; letter-spacing: 0.1em;
  margin-top: 2px; font-family: var(--f-mono); }

.case-text { padding: 0 8px; }
.case-text .head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; }
.case-text .nbr { font-family: var(--f-serif); font-size: 56px; font-weight: 500;
  color: var(--case-bg, var(--c-ink)); line-height: 0.9;
  letter-spacing: -0.04em; font-style: italic; }
.case-text .meta { font-size: 11px; color: var(--c-mute);
  letter-spacing: 0.15em; text-transform: uppercase; font-family: var(--f-mono); }
.case-text .client {
  font-size: 12px; color: var(--case-bg, var(--c-ink)); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 10px; padding-bottom: 10px;
  border-bottom: 1px solid var(--case-bg, var(--c-ink)); display: inline-block;
}
.case-text h3 { font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 500; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--c-ink); margin: 0 0 16px; }
.case-text h3 .ital { font-style: italic; color: var(--case-bg, var(--c-ink)); }
.case-text p { font-size: 14px; line-height: 1.7; color: var(--c-ink-2);
  margin: 0 0 22px; max-width: 420px; }
.case-text .foot { display: flex; align-items: center; gap: 24px;
  font-size: 12px; color: var(--c-mute); }
.case-text .more {
  color: var(--case-bg, var(--c-ink)); font-size: 13px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  border-bottom: 1px solid var(--case-bg, var(--c-ink)); padding-bottom: 2px;
}
.case-text .more .arrow { display: inline-block; transition: transform 0.25s; }
.case-text .more:hover .arrow { transform: translateX(6px); }

.cases-tags {
  margin-top: 32px; padding-top: 22px;
  border-top: 1px solid rgba(31,26,20,0.1);
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.cases-tags .lbl { font-size: 11px; color: var(--c-mute);
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }
.cases-tags .tag { font-family: var(--f-serif); font-size: 17px;
  color: var(--c-ink-2); opacity: 0.65; }
.cases-tags .more { margin-left: auto; font-size: 13px; color: var(--c-blue);
  font-weight: 500; text-decoration: none; }
.cases-tags .more .arrow { display: inline-block; transition: transform 0.25s; }
.cases-tags .more:hover .arrow { transform: translateX(6px); }

/* --- 12. Footer --- */
.site-footer {
  background: var(--c-ink); color: var(--c-bg);
  position: relative; z-index: 2;
}
.site-footer .section-inner { padding: 56px var(--pad-x) 28px; }
.site-footer .top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(245,241,234,0.1);
}
.site-footer h3 { color: var(--c-bg); font-size: 36px; line-height: 1.1;
  font-weight: 500; letter-spacing: -0.02em; margin: 0 0 20px; }
.site-footer .muted { font-size: 12px; color: var(--c-mute); line-height: 1.6;
  margin-top: 24px; }
.site-footer .col-title {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-mute); margin-bottom: 14px; font-weight: 600;
}
.site-footer .row-info { font-size: 13px; color: var(--c-bg);
  margin-bottom: 9px; display: flex; gap: 8px; }
.site-footer .row-info .ico { color: var(--c-blue); }
.site-footer .row-info a { color: var(--c-bg); text-decoration: none; }
.site-footer .row-info a:hover { color: var(--c-gold-2); }
.site-footer .row-info.dim { color: var(--c-mute); }
.site-footer .col a, .site-footer .col span { display: flex; font-size: 13px;
  color: var(--c-mute-2); margin-bottom: 9px; text-decoration: none; cursor: pointer; }
.site-footer .col a:hover { color: var(--c-bg); }

.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  border: 1px solid rgba(245,245,245,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-bg); text-decoration: none; transition: all 0.25s;
}
.socials a:hover { background: var(--c-blue); border-color: var(--c-blue); }
.socials a.line:hover  { background: var(--c-moss); border-color: var(--c-moss); }
.socials a.dc:hover    { background: var(--c-purple); border-color: var(--c-purple); }
.socials a.ig:hover    { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743; }
.socials a.x:hover     { background: var(--c-gold-2); border-color: var(--c-gold-2); color: var(--c-ink); }
.socials a > svg {
  width: 14px !important; height: 14px !important;
  min-width: 14px; max-width: 14px;
  flex: 0 0 auto; fill: currentColor; display: block;
}

.site-footer .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; font-size: 11px; color: var(--c-mute-2); flex-wrap: wrap; gap: 16px;
}
.site-footer .bottom .brand { display: flex; align-items: center; gap: 12px; }
.site-footer .bottom .brand img { height: 28px; filter: brightness(0) invert(1); }
.site-footer .bottom a { color: var(--c-mute-2); text-decoration: underline; text-underline-offset: 3px; }
.site-footer .bottom a:hover { color: var(--c-bg); }

/* --- 13. Page Header (子頁通用) --- */
.page-hero {
  position: relative; z-index: 2;
  padding: 56px var(--pad-x) 24px;
  max-width: var(--w-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end;
  animation: craftFadeUp 0.7s ease both;
}
.page-hero h1 { font-size: clamp(36px, 4.5vw, 56px); }
.page-hero .lead { font-size: 15px; line-height: 1.75; color: var(--c-ink-2);
  font-family: "Zen Maru Gothic", var(--f-sans); }
.page-hero .badge {
  display: inline-block; font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em; color: var(--c-mute);
  text-transform: uppercase; margin-bottom: 18px;
}

/* 跑馬燈標題 */
.marquee {
  overflow: hidden; padding: 32px 0;
  border-top: 1px solid rgba(31,26,20,0.1);
  border-bottom: 1px solid rgba(31,26,20,0.1);
  margin-top: 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee .track {
  display: flex; gap: 56px; width: max-content;
  animation: marqueeMove 28s linear infinite;
}
.marquee .item {
  font-family: var(--f-serif); font-style: italic; font-size: clamp(40px, 6vw, 88px);
  color: var(--c-ink); opacity: 0.18; white-space: nowrap; line-height: 1;
}
.marquee .item .dot { color: var(--c-blue); opacity: 1; }

/* --- 14. About 區塊 --- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding: 56px var(--pad-x);
  max-width: var(--w-max); margin: 0 auto;
  align-items: stretch;
}
.about-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg); }
.about-grid .img-tall,
.about-grid .img-wide {
  aspect-ratio: 4/5; overflow: hidden;
  border-radius: var(--r-lg); background: var(--c-paper);
}

.philosophy {
  background: var(--c-bg-alt);
  padding: 64px var(--pad-x); position: relative; z-index: 2;
}
.philosophy .section-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; padding: 0;}
.philosophy .quote {
  background: var(--c-surface); padding: 28px; border-radius: var(--r-md);
  border-left: 4px solid var(--c-blue);
  box-shadow: var(--sh-1); margin-bottom: 24px;
  position: relative; transition: transform 0.3s, box-shadow 0.3s;
}
.philosophy .quote:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.philosophy .quote::before {
  content: "“"; position: absolute; top: -8px; left: 16px;
  font-family: var(--f-serif); font-size: 64px; color: var(--c-blue); line-height: 1; opacity: 0.4;
}
.philosophy .quote h4 { font-style: italic; font-size: 20px; margin-bottom: 12px;
  padding-top: 12px; }
.philosophy .quote p { font-size: 14px; line-height: 1.8; color: var(--c-ink-2); margin: 0; }

/* --- 15. Accordion (FAQ / 特色) --- */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion .item {
  background: var(--c-surface); border-radius: var(--r-md); overflow: hidden;
  border: 1px solid rgba(31,26,20,0.08);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.accordion .item:hover { border-color: var(--c-blue); box-shadow: var(--sh-1); }
.accordion summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--f-serif); font-size: 17px; font-weight: 500; color: var(--c-ink);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; font-family: var(--f-mono); font-size: 22px;
  color: var(--c-blue); transition: transform 0.3s;
}
.accordion details[open] summary::after { content: "−"; }
.accordion .body { padding: 0 22px 20px; font-size: 14px; line-height: 1.8;
  color: var(--c-ink-2); }
.accordion .body p { margin: 0; }

/* --- 16. Section helper --- */
.section { padding: 64px var(--pad-x); }
.section .section-inner { padding: 0; }
.section.tight { padding: 32px var(--pad-x); }

.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* --- Services 頁面右側固定導覽（標本卡 / Specimen Tag 風格） --- */
.svc-rail {
  position: fixed; right: 28px; top: 50%; transform: translateY(-50%);
  z-index: 40; display: flex; flex-direction: column; gap: 14px;
  padding: 16px 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.svc-rail.is-visible { opacity: 1; pointer-events: auto; }

/* 中央垂直線 — 像穿過標本卡的細繩 */
.svc-rail::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(180deg,
    transparent 0%, rgba(31,26,20,0.22) 8%, rgba(31,26,20,0.22) 92%, transparent 100%);
  transform: translateX(-50%); z-index: 0; pointer-events: none;
}

.svc-rail a {
  --accent: var(--c-blue);
  position: relative; display: block;
  text-decoration: none; color: var(--c-ink);
  z-index: 1;
}

/* 黃銅釘 — 在卡片上方中央 */
.svc-rail a .pin {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #E7C883, #B89456 60%, #8B6A33);
  box-shadow: 0 1px 2px rgba(0,0,0,0.35), inset -1px -1px 1px rgba(0,0,0,0.2);
  z-index: 3;
  transition: box-shadow 0.3s, transform 0.3s;
}

/* 標本卡本體 */
.svc-rail .card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 46px; height: 50px; padding: 6px 4px;
  background: linear-gradient(180deg, #FAFAFA 0%, #F0EDE5 100%);
  border: 1px solid rgba(31,26,20,0.12);
  border-radius: 2px;
  position: relative;
  transform: rotate(var(--rot, 0deg));
  box-shadow: 0 2px 4px rgba(31,26,20,0.12);
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.3s, border-color 0.3s;
}
.svc-rail a:nth-child(odd)  .card { --rot: -1.5deg; }
.svc-rail a:nth-child(even) .card { --rot: 1.5deg; }

/* 卡片內部 */
.svc-rail .num {
  font-family: var(--f-serif); font-style: italic;
  font-size: 18px; font-weight: 500; color: var(--c-ink);
  line-height: 1; letter-spacing: -0.02em;
  transition: color 0.25s;
}
.svc-rail .glyph {
  font-family: serif; font-size: 11px; color: var(--accent);
  margin-top: 3px; line-height: 1;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

/* 吊牌（手寫風格 label） — 預設就顯示，整塊都可點 */
.svc-rail .label {
  position: absolute; right: calc(100% + 14px); top: 50%;
  transform: translateY(-50%);
  white-space: nowrap; cursor: pointer;
  font-family: var(--f-hand); font-size: 17px; line-height: 1;
  color: var(--c-ink);
  background: var(--c-gold-2);
  padding: 6px 14px 6px 18px;
  box-shadow: 0 3px 8px rgba(31,26,20,0.18);
  transition: background 0.3s, color 0.3s, transform 0.35s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.3s;
}
/* 吊牌左尖端（凹三角） */
.svc-rail .label::before {
  content: ""; position: absolute; right: -8px; top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: var(--c-gold-2);
  border-right-width: 0;
  transition: border-left-color 0.3s;
}
/* 吊牌左側「打孔」 */
.svc-rail .label::after {
  content: ""; position: absolute; left: 6px; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(31,26,20,0.22);
}

/* hover / active 狀態 */
.svc-rail a:hover .card,
.svc-rail a.is-active .card {
  transform: rotate(0deg) scale(1.12) translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 6px 14px rgba(31,26,20,0.22), 0 0 0 1px var(--accent);
}
.svc-rail a:hover .num,
.svc-rail a.is-active .num { color: var(--accent); }
.svc-rail a:hover .glyph,
.svc-rail a.is-active .glyph { transform: rotate(180deg) scale(1.15); }
.svc-rail a:hover .pin,
.svc-rail a.is-active .pin {
  box-shadow: 0 0 0 3px rgb(from var(--accent) r g b / 0.18),
              0 1px 2px rgba(0,0,0,0.35);
  transform: translateX(-50%) scale(1.15);
}
.svc-rail a:hover .label,
.svc-rail a.is-active .label {
  background: var(--accent); color: var(--c-bg);
  transform: translateY(-50%) translateX(-4px);
  box-shadow: 0 6px 14px rgb(from var(--accent) r g b / 0.4);
}
.svc-rail a:hover .label::before,
.svc-rail a.is-active .label::before { border-left-color: var(--accent); }

/* 在 dark 服務區塊下：卡片改深色，吊牌也改色 */
.svc-rail.on-dark::before {
  background: linear-gradient(180deg,
    transparent 0%, rgba(245,241,234,0.25) 8%, rgba(245,241,234,0.25) 92%, transparent 100%);
}
.svc-rail.on-dark .card {
  background: linear-gradient(180deg, #2C3E4A 0%, #1F2D38 100%);
  border-color: rgba(245,241,234,0.18);
}
.svc-rail.on-dark .num { color: var(--c-bg); }
.svc-rail.on-dark .label { background: var(--c-gold-2); color: var(--c-ink); }
.svc-rail.on-dark .label::before { border-left-color: var(--c-gold-2); }

@media (max-width: 1180px) {
  .svc-rail { right: 16px; gap: 12px; }
  .svc-rail .card { width: 42px; height: 46px; }
  .svc-rail .num { font-size: 16px; }
}
/* 行動版：精簡版（隱藏吊牌，只保留標本卡可點） */
@media (max-width: 800px) {
  .svc-rail { right: 8px; gap: 10px; padding: 12px 0; }
  .svc-rail::before { left: 50%; }
  .svc-rail .card { width: 36px; height: 40px; padding: 4px 2px; }
  .svc-rail .num { font-size: 14px; }
  .svc-rail .glyph { font-size: 9px; margin-top: 2px; }
  .svc-rail .pin { width: 6px; height: 6px; top: -5px; }
  .svc-rail .label { display: none; }

  /* 行動版 active：用簡單的右側小三角指示當前所在區塊 */
  .svc-rail a.is-active .card::after {
    content: ""; position: absolute; right: -10px; top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--accent);
    border-left-width: 0;
  }
  .svc-rail a:hover .card,
  .svc-rail a.is-active .card {
    transform: rotate(0deg) scale(1.08);
  }
}
@media (max-width: 380px) {
  .svc-rail .card { width: 32px; height: 36px; }
  .svc-rail .num { font-size: 13px; }
}

/* --- Services 頁面 --- */
.svc-toc {
  max-width: var(--w-max); margin: 0 auto;
  padding: 24px var(--pad-x) 8px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.svc-toc a {
  --accent: var(--c-blue);
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px 18px; border-radius: var(--r-md);
  background: var(--c-surface); border: 1px solid rgba(31,26,20,0.08);
  text-decoration: none; color: var(--c-ink);
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.svc-toc a::before {
  content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 100%;
  background: var(--accent); transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
}
.svc-toc a:hover { transform: translateY(-3px); box-shadow: var(--sh-1); border-color: var(--accent); }
.svc-toc a:hover::before { transform: scaleY(1); }
.svc-toc .num { font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--c-mute); }
.svc-toc .name { font-family: var(--f-serif); font-size: 18px;
  font-weight: 500; color: var(--c-ink); }
.svc-toc .sub { font-family: var(--f-serif); font-style: italic;
  font-size: 11px; color: var(--accent); }

/* 服務區塊主體 */
.svc-block {
  --accent: var(--c-blue); --bg: var(--c-bg);
  background: var(--bg); position: relative;
  padding: 80px 0; scroll-margin-top: 80px;
}
.svc-block.alt { --bg: var(--c-bg-alt); }
.svc-block.dark { --bg: var(--c-ink); color: var(--c-bg); }
.svc-block.dark p,
.svc-block.dark .deliverables li,
.svc-block.dark .svc-step .body { color: var(--c-mute-2); }
.svc-block.dark h2,
.svc-block.dark h3,
.svc-block.dark h4 { color: var(--c-bg); }
.svc-block.dark .eyebrow { color: var(--c-gold-2); }
.svc-block.dark .eyebrow::before { background: var(--c-gold-2); }
.svc-block.dark .svc-num,
.svc-block.dark .svc-step .num { color: var(--c-gold-2); }
.svc-block.dark .deliverables li::before { background: var(--c-gold-2); }
.svc-block.dark .svc-divider { background: rgba(245,241,234,0.18); }

.svc-inner {
  max-width: var(--w-max); margin: 0 auto;
  padding: 0 var(--pad-x);
}
.svc-block .head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-bottom: 48px; align-items: end;
}
.svc-num {
  font-family: var(--f-serif); font-style: italic;
  font-size: 96px; font-weight: 500; color: var(--accent);
  line-height: 0.85; letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.svc-block h2 { font-size: clamp(36px, 4vw, 56px); margin-bottom: 18px; }
.svc-block .lead { font-size: 16px; line-height: 1.8;
  font-family: "Zen Maru Gothic", var(--f-sans); max-width: 520px; }

/* 服務內容主視覺 */
.svc-figure {
  position: relative; aspect-ratio: 4/3; border-radius: var(--r-lg);
  overflow: hidden; background: var(--c-paper);
  box-shadow: var(--sh-2); transform: rotate(-0.5deg);
}
.svc-figure img { width: 100%; height: 100%; object-fit: cover; }
.svc-figure .stamp {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: var(--c-bg);
  padding: 6px 12px; border-radius: var(--r-pill);
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.18em; transform: rotate(2deg);
}

/* 提供內容清單 */
.svc-deliv {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.deliverables { list-style: none; padding: 0; margin: 0; }
.deliverables li {
  display: flex; align-items: baseline; gap: 12px;
  padding: 10px 0; font-size: 14px; line-height: 1.7;
  border-bottom: 1px dashed rgba(31,26,20,0.12);
  color: var(--c-ink-2);
}
.deliverables li::before {
  content: ""; width: 14px; height: 1px; background: var(--accent);
  flex: none; margin-top: 10px;
}
.deliverables li strong {
  display: block; font-family: var(--f-serif); font-weight: 500;
  font-size: 16px; color: var(--c-ink); margin-bottom: 4px;
}
.svc-block.dark .deliverables li strong { color: var(--c-bg); }
.svc-block.dark .deliverables li { border-color: rgba(245,241,234,0.15); }

/* 流程步驟 */
.svc-process {
  margin-top: 56px; padding-top: 48px;
  border-top: 1px solid rgba(31,26,20,0.12);
}
.svc-block.dark .svc-process { border-top-color: rgba(245,241,234,0.15); }
.svc-process .head-row {
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 28px;
}
.svc-process .label {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--c-mute); text-transform: uppercase;
}
.svc-process .label-cn { font-family: var(--f-serif); font-size: 22px;
  font-weight: 500; color: var(--c-ink); }
.svc-block.dark .svc-process .label-cn { color: var(--c-bg); }
.svc-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.svc-step {
  padding: 18px 0; position: relative;
}
.svc-step .num {
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; color: var(--accent); margin-bottom: 8px;
}
.svc-step h4 { font-size: 18px; margin-bottom: 8px;
  font-family: var(--f-serif); font-weight: 500; }
.svc-step .body { font-size: 13px; line-height: 1.7;
  color: var(--c-ink-2); }
.svc-step + .svc-step::before {
  content: "→"; position: absolute; left: -24px; top: 18px;
  font-family: serif; font-size: 18px; color: var(--c-mute);
  pointer-events: none;
}

/* CTA bar 在每塊尾巴 */
.svc-cta {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px dashed var(--accent);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.svc-cta .text {
  font-family: var(--f-serif); font-style: italic; font-size: 22px;
}

/* 服務 RWD */
@media (max-width: 1024px) {
  .svc-toc { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .svc-toc a { padding: 14px; }
  .svc-toc .name { font-size: 15px; }
  .svc-num { font-size: 80px; }
  .svc-steps { grid-template-columns: repeat(2, 1fr); }
  .svc-step + .svc-step::before { display: none; }
}
@media (max-width: 720px) {
  .svc-toc { grid-template-columns: repeat(2, 1fr); padding: 16px var(--pad-x); }
  .svc-toc .name { font-size: 14px; }
  .svc-toc a { padding: 12px 14px; }
  .svc-block { padding: 56px 0; }
  .svc-block .head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .svc-num { font-size: 64px; margin-bottom: 8px; }
  .svc-deliv { grid-template-columns: 1fr; gap: 32px; }
  .svc-figure { aspect-ratio: 4/3; }
  .svc-process { margin-top: 36px; padding-top: 32px; }
  .svc-steps { grid-template-columns: 1fr; gap: 16px; }
  .svc-step + .svc-step { padding-top: 14px;
    border-top: 1px dashed rgba(31,26,20,0.12); }
  .svc-block.dark .svc-step + .svc-step { border-top-color: rgba(245,241,234,0.15); }
  .svc-cta { flex-direction: column; align-items: flex-start; gap: 14px; }
  .svc-cta .text { font-size: 18px; }
}

/* --- Strengths Grid（4 件卡片排版） --- */
.strengths {
  max-width: var(--w-max); margin: 0 auto;
  padding: 56px var(--pad-x) 64px;
}
.strengths-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: end; margin-bottom: 48px;
}
.strengths-head h2 { font-size: clamp(32px, 3.6vw, 48px); }
.strengths-head .feature-img {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; border-radius: var(--r-lg);
  box-shadow: var(--sh-2); transform: rotate(-0.6deg);
}
.strengths-head .feature-img img { width: 100%; height: 100%; object-fit: cover; }

.strengths-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  position: relative;
}
.strength-card {
  --accent: var(--c-blue);
  background: var(--c-surface);
  padding: 32px 28px; border-radius: var(--r-md);
  border: 1px solid rgba(31,26,20,0.08);
  position: relative; overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 0.3s, border-color 0.3s;
}
.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
  border-color: var(--accent);
}
/* 上方裝飾：數字 + 大色塊 */
.strength-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 4px; height: 0; background: var(--accent);
  transition: height 0.4s cubic-bezier(0.2,0.8,0.2,1);
}
.strength-card:hover::before { height: 100%; }
.strength-card .head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 18px;
  border-bottom: 1px dashed rgba(31,26,20,0.15); padding-bottom: 14px;
}
.strength-card .num {
  font-family: var(--f-serif); font-style: italic;
  font-size: 40px; font-weight: 500; color: var(--accent);
  line-height: 0.9; letter-spacing: -0.04em;
}
.strength-card .glyph {
  font-family: serif; font-size: 18px; color: var(--accent);
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.strength-card:hover .glyph { transform: rotate(180deg); }
.strength-card h4 {
  font-size: 20px; font-weight: 500; color: var(--c-ink);
  line-height: 1.3; margin-bottom: 12px;
}
.strength-card p {
  font-size: 14px; line-height: 1.7; color: var(--c-ink-2);
  margin: 0; font-family: "Zen Maru Gothic", var(--f-sans);
}
.strength-card .meta {
  margin-top: 16px; font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--c-mute); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.strength-card .meta::before {
  content: ""; width: 18px; height: 1px; background: var(--accent);
}

@media (max-width: 800px) {
  .strengths-head { grid-template-columns: 1fr; gap: 24px; align-items: stretch; }
  .strengths-head .feature-img { max-height: 280px; }
  .strengths-grid { grid-template-columns: 1fr; gap: 16px; }
  .strength-card { padding: 24px 22px; }
  .strength-card .num { font-size: 32px; }
  .strength-card h4 { font-size: 18px; }
}

/* --- Contact 頁面 --- */
/* Hero：左右等高、整體縮短 */
.contact-hero {
  grid-template-columns: 1.4fr 1fr;
  align-items: center; gap: 48px;
  padding-top: 56px; padding-bottom: 28px;
}
.contact-hero h1 {
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.15; letter-spacing: -0.025em;
  margin-top: 18px;
}
.contact-hero-aside {
  border-left: 1px solid rgba(31,26,20,0.08);
  padding: 4px 0 4px 32px;
}
.contact-hero-lead {
  font-family: "Zen Maru Gothic", var(--f-sans);
  font-size: 14px; line-height: 1.85; color: var(--c-ink-2);
  margin-bottom: 18px;
}
.hero-pills {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hero-pills li {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 8px 14px;
  background: var(--c-bg-alt); border: 1px solid rgba(31,26,20,0.08);
  border-radius: var(--r-pill);
}
.hero-pills strong {
  font-family: var(--f-mono); font-size: 14px; font-weight: 600;
  color: var(--c-blue); letter-spacing: 0.04em;
}
.hero-pills strong small { font-size: 0.7em; opacity: 0.8; }
.hero-pills span {
  font-size: 12px; color: var(--c-ink-2);
}

.contact-main {
  padding: 56px var(--pad-x);
  position: relative; z-index: 2;
}
.contact-inner {
  max-width: var(--w-max); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px; align-items: stretch;
}
.contact-inner > .postcard,
.contact-inner > .inquiry-form-wrap { display: flex; flex-direction: column; }
.contact-inner .inquiry-form-wrap .inquiry-form { flex: 1; display: flex; flex-direction: column; }
.contact-inner .inquiry-form-wrap .inquiry-form .form-actions { margin-top: auto; }

/* --- 明信片 --- */
.postcard {
  position: relative; padding: 36px 32px 28px;
  background:
    linear-gradient(180deg, var(--c-surface) 0%, var(--c-bg) 100%);
  border: 1px solid rgba(31,26,20,0.1);
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  overflow: hidden;
}
.postcard::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px dashed rgba(31,26,20,0.16);
  border-radius: var(--r-md);
  pointer-events: none;
}
.postcard-stamp {
  position: absolute; top: 18px; right: 22px;
  width: 78px; height: 92px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; transform: rotate(6deg);
}
.postcard-stamp .stamp-frame {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 50% 50%, var(--c-gold-3) 0%, var(--c-gold-2) 100%);
  padding: 6px;
  /* 郵票邊：用 mask + radial 點點切出鋸齒 */
  --d: 6px;
  -webkit-mask:
    radial-gradient(circle var(--d) at var(--d) var(--d), #0000 98%, #000) -1px -1px / calc(2 * var(--d)) calc(2 * var(--d));
          mask:
    radial-gradient(circle var(--d) at var(--d) var(--d), #0000 98%, #000) -1px -1px / calc(2 * var(--d)) calc(2 * var(--d));
}
.postcard-stamp .stamp-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; width: 100%;
  border: 1px solid rgba(31,26,20,0.4);
  background: var(--c-gold-3);
  font-family: var(--f-mono);
  color: var(--c-ink);
}
.postcard-stamp .mark { font-size: 14px; font-weight: 700; letter-spacing: 0.1em; }
.postcard-stamp .sub  { font-size: 8px; letter-spacing: 0.18em; margin-top: 4px; opacity: 0.72; }

.postcard-marks {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--c-mute); text-transform: uppercase;
  padding-bottom: 16px; border-bottom: 1px solid rgba(31,26,20,0.1);
  position: relative; z-index: 1;
}
.postcard-title {
  font-size: clamp(28px, 3vw, 36px);
  margin: 22px 0 12px; line-height: 1.1;
  position: relative; z-index: 1;
}
.postcard-lead {
  font-size: 14px; color: var(--c-ink-2); margin-bottom: 22px;
  position: relative; z-index: 1;
}
.postcard-info {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; z-index: 1;
}
.postcard-info li {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 14px; border-bottom: 1px dotted rgba(31,26,20,0.12);
}
.postcard-info li:last-child { border-bottom: none; padding-bottom: 0; }
.postcard-info .ico {
  flex: none; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-ink); color: var(--c-bg);
  border-radius: 50%; font-size: 13px;
}
.postcard-info .lbl {
  display: block; font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.18em; color: var(--c-mute);
  text-transform: uppercase; margin-bottom: 2px;
}
.postcard-info a {
  color: var(--c-ink); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.postcard-info a:hover { color: var(--c-blue); border-bottom-color: var(--c-blue); }
.postcard-foot {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid rgba(31,26,20,0.08);
  position: relative; z-index: 1;
}
.postcard-foot .hand-note {
  font-family: var(--f-hand); font-size: 22px;
  color: var(--c-blue);
}

/* Postcard 內的社群管道區塊（卡片型 + footer 樣式圓 icon） */
.postcard-channels {
  margin-top: 22px; padding-top: 16px;
  border-top: 1px dashed rgba(31,26,20,0.16);
  position: relative; z-index: 1;
}
.postcard-channels .lbl {
  display: block; margin-bottom: 12px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--c-mute); text-transform: uppercase;
}
.postcard-channels-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.postcard-channels-list .ch-link {
  position: relative; display: flex; align-items: center; gap: 12px;
  padding: 10px 36px 10px 10px;
  background: var(--c-bg);
  border: 1px solid rgba(31,26,20,0.1);
  border-radius: var(--r-md);
  text-decoration: none; color: var(--c-ink);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.postcard-channels-list .ch-link:hover {
  border-color: rgba(31,26,20,0.25);
  background: var(--c-surface);
  transform: translateY(-2px);
}

/* footer 樣式的圓形 icon — 邊框＋hover 變色 */
.postcard-channels-list .ch-ico {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(31,26,20,0.18);
  color: var(--c-ink); background: transparent;
  transition: all 0.25s;
}
.postcard-channels-list .ch-ico svg {
  width: 14px; height: 14px; fill: currentColor; display: block;
}
.postcard-channels-list .ch-link:hover .ch-ico {
  background: var(--c-blue); border-color: var(--c-blue); color: var(--c-bg);
}
.postcard-channels-list .ch-link.line:hover .ch-ico {
  background: var(--c-moss); border-color: var(--c-moss); color: var(--c-bg);
}
.postcard-channels-list .ch-link.dc:hover .ch-ico {
  background: var(--c-purple); border-color: var(--c-purple); color: var(--c-bg);
}
.postcard-channels-list .ch-link.ig:hover .ch-ico {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743; color: var(--c-bg);
}
.postcard-channels-list .ch-link.x:hover .ch-ico {
  background: var(--c-gold-2); border-color: var(--c-gold-2); color: var(--c-ink);
}

.postcard-channels-list .ch-text {
  display: flex; flex-direction: column; gap: 1px; min-width: 0;
}
.postcard-channels-list .ch-name {
  font-size: 13px; font-weight: 500; color: var(--c-ink);
  letter-spacing: -0.01em;
}
.postcard-channels-list .ch-sub {
  font-size: 10px; color: var(--c-mute);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.postcard-channels-list .ch-arrow {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-size: 12px; color: var(--c-mute);
  transition: color 0.2s, transform 0.2s;
}
.postcard-channels-list .ch-link:hover .ch-arrow {
  color: var(--c-ink); transform: translateY(-50%) translateX(2px);
}

/* --- 諮詢表單 --- */
.inquiry-head { margin-bottom: 28px; }
.inquiry-form {
  background: var(--c-surface);
  border: 1px solid rgba(31,26,20,0.08);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--sh-1);
}
.inquiry-form .form-row {
  display: grid; gap: 16px; margin-bottom: 16px;
}
.inquiry-form .form-row.two { grid-template-columns: 1fr 1fr; }
.inquiry-form .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.inquiry-form .form-row .field { margin-bottom: 0; }
.inquiry-form label {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--c-mute); text-transform: uppercase;
}
.inquiry-form .req { color: var(--c-blue); }
.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  background: var(--c-bg);
  border: 1px solid rgba(31,26,20,0.12);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-family: var(--f-sans); font-size: 15px; color: var(--c-ink);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none; -webkit-appearance: none;
}
.inquiry-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--c-mute) 50%),
    linear-gradient(-45deg, transparent 50%, var(--c-mute) 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.inquiry-form textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none; border-color: var(--c-blue); background: var(--c-surface);
  box-shadow: 0 0 0 3px rgba(86,103,163,0.12);
}
.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder { color: var(--c-mute-2); }

/* 驗證碼欄位（input + 隨機碼按鈕並排） */
.inquiry-form .captcha-row {
  display: flex; align-items: end; gap: 14px;
  margin-bottom: 16px;
}
.inquiry-form .captcha-row .field {
  flex: 1; margin-bottom: 0;
}
.inquiry-form .captcha-code {
  flex: none;
  height: 46px; min-width: 130px; padding: 0 18px;
  background: var(--c-ink); color: var(--c-bg);
  border: none; border-radius: var(--r-sm);
  font-family: "Fraunces", var(--f-serif);
  font-style: italic; font-weight: 700;
  font-size: 22px; letter-spacing: 0.15em;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  user-select: none;
  transition: background 0.2s, transform 0.15s;
}
.inquiry-form .captcha-code:hover { background: var(--c-blue); }
.inquiry-form .captcha-code:active { transform: scale(0.96); }

.inquiry-form .form-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 8px;
}
.inquiry-form .form-actions .hint {
  font-size: 12px; color: var(--c-mute);
}
.inquiry-form .form-actions .hint a {
  color: var(--c-ink); border-bottom: 1px solid currentColor;
}
.inquiry-form .form-status {
  display: block; margin-top: 16px; padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
}
.inquiry-form .form-status.is-success {
  background: rgba(119,163,143,0.12); border: 1px solid var(--c-moss);
  color: var(--c-ink);
}
.inquiry-form .form-status.is-error {
  background: rgba(184,148,86,0.12); border: 1px solid var(--c-gold);
  color: var(--c-ink);
}

/* --- Studio location（工作室＋地圖） --- */
.studio-loc {
  padding: 56px var(--pad-x);
  position: relative; z-index: 2;
}
.studio-inner {
  max-width: var(--w-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px;
  align-items: stretch;
}
.studio-meta {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 0;
}
.studio-meta li {
  display: grid; grid-template-columns: 88px 1fr; gap: 16px;
  padding: 14px 0; border-bottom: 1px dashed rgba(31,26,20,0.12);
  align-items: start;
}
.studio-meta li:last-child { border-bottom: none; }
.studio-meta .key {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--c-mute); text-transform: uppercase; padding-top: 2px;
}
.studio-meta .val { font-size: 14px; line-height: 1.7; color: var(--c-ink-2); }

.studio-map {
  position: relative; margin: 0;
  border: 1px solid rgba(31,26,20,0.1);
  border-radius: var(--r-md); overflow: hidden;
  background: var(--c-paper);
  min-height: 380px;
}
.studio-map iframe {
  width: 100%; height: 100%; min-height: 380px; border: 0; display: block;
  filter: grayscale(0.2) contrast(1.02);
}
.studio-map .stamp {
  position: absolute; top: 14px; right: 14px;
  background: var(--c-ink); color: var(--c-bg);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  padding: 6px 10px; border-radius: var(--r-sm);
  pointer-events: none;
}

/* --- FAQ section --- */
.faq-section {
  padding: 56px var(--pad-x);
  position: relative; z-index: 2;
}
.faq-inner {
  max-width: var(--w-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px;
  align-items: start;
}
.faq-head { position: sticky; top: 100px; }

/* --- Contact RWD --- */
@media (max-width: 960px) {
  .contact-hero {
    grid-template-columns: 1fr; gap: 24px; align-items: start;
    padding-top: 40px;
  }
  .contact-hero-aside { border-left: none; padding: 20px 0 0;
    border-top: 1px solid rgba(31,26,20,0.08); }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .inquiry-form .form-row.two { grid-template-columns: 1fr; }
  .studio-inner { grid-template-columns: 1fr; gap: 24px; }
  .studio-map { min-height: 320px; }
  .studio-map iframe { min-height: 320px; }
  .faq-inner { grid-template-columns: 1fr; gap: 24px; }
  .faq-head { position: static; }
}
@media (max-width: 600px) {
  .postcard { padding: 28px 22px 22px; }
  .postcard-stamp { width: 64px; height: 76px; top: 14px; right: 16px; }
  .postcard-channels-list { grid-template-columns: 1fr; }
  .inquiry-form { padding: 22px; }
  .studio-meta li { grid-template-columns: 1fr; gap: 4px; }
}

/* --- Works 列表頁 --- */
.works-hero { padding-bottom: 48px; }

.works-filter {
  max-width: var(--w-max); margin: 0 auto;
  padding: 24px var(--pad-x) 8px;
  display: flex; flex-wrap: wrap; gap: 8px;
  border-bottom: 1px solid rgba(31,26,20,0.08);
  position: relative; z-index: 2;
}
.works-tab {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 12px 18px; border: none; background: transparent;
  cursor: pointer; color: var(--c-mute); border-radius: var(--r-pill);
  transition: background 0.2s, color 0.2s;
}
.works-tab .num {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: 0.7;
}
.works-tab .name {
  font-family: var(--f-serif); font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em;
}
.works-tab:hover { color: var(--c-ink); background: var(--c-bg-alt); }
.works-tab.is-active {
  background: var(--c-ink); color: var(--c-bg);
}
.works-tab.is-active .num { opacity: 0.6; }

.works-section {
  padding: 32px var(--pad-x) 80px;
  max-width: var(--w-max); margin: 0 auto;
  position: relative; z-index: 2;
}
.works-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.work-card { transition: opacity 0.3s, transform 0.3s; }
.work-card.is-hidden { display: none; }
.work-link {
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: var(--c-ink);
}
.work-img {
  margin: 0; aspect-ratio: 4 / 3;
  background: var(--c-paper);
  border-radius: var(--r-md); overflow: hidden;
  position: relative;
  border: 1px solid rgba(31,26,20,0.08);
}
.work-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.45s cubic-bezier(0.2,0.8,0.2,1);
}
.work-link:hover .work-img img { transform: scale(1.05); }
.work-img .work-stamp {
  --stamp: var(--c-blue);
  position: absolute; top: 14px; left: 14px;
  background: var(--stamp); color: var(--c-bg);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  padding: 5px 9px; border-radius: var(--r-sm);
}

.work-meta {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--c-mute);
}
.work-meta .year { color: var(--c-ink); font-weight: 600; }
.work-meta .cat::before {
  content: "·"; margin-right: 8px; color: var(--c-mute-2);
}
.work-title {
  font-size: 22px; font-weight: 500; margin: 0;
  letter-spacing: -0.01em; line-height: 1.25;
}
.work-link:hover .work-title { color: var(--c-blue); }
.work-sub {
  font-size: 13px; color: var(--c-ink-2); margin: 0; line-height: 1.5;
}

.works-empty {
  text-align: center; padding: 48px 0;
  color: var(--c-mute); font-size: 14px;
}
.works-empty a { color: var(--c-ink); border-bottom: 1px solid currentColor; }

.works-more {
  background: var(--c-bg-alt);
  padding: 80px var(--pad-x); margin-top: 32px;
}
.works-more .row {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
}
.works-clients {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
}
.works-clients li {
  padding: 14px 0; border-bottom: 1px dashed rgba(31,26,20,0.18);
  font-family: var(--f-serif); font-size: 18px; font-weight: 500;
  color: var(--c-ink);
}
.works-clients li:nth-last-child(-n+2) { border-bottom: none; }

/* --- Project 內頁 --- */
.proj-breadcrumb {
  padding: 24px var(--pad-x) 0;
  max-width: var(--w-max); margin: 0 auto;
  position: relative; z-index: 2;
}
.proj-breadcrumb a {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--c-mute); text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.proj-breadcrumb a:hover { color: var(--c-ink); }

.proj-hero {
  max-width: var(--w-max); margin: 0 auto;
  padding: 28px var(--pad-x) 40px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px;
  align-items: stretch;
  position: relative; z-index: 2;
  animation: craftFadeUp 0.7s ease both;
}
.proj-hero-inner {
  display: flex; flex-direction: column; gap: 32px;
}
.proj-hero-head h1 {
  font-size: clamp(40px, 5vw, 64px); margin-top: 22px;
  line-height: 1.05;
}
.proj-hero-sub {
  margin-top: 16px; font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 0.16em; color: var(--c-mute);
  text-transform: uppercase;
}
.proj-meta {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: auto;
  border-top: 1px solid rgba(31,26,20,0.1);
}
.proj-meta li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(31,26,20,0.1);
}
.proj-meta li:nth-child(odd) { padding-right: 16px; border-right: 1px dashed rgba(31,26,20,0.1); }
.proj-meta li:nth-child(even) { padding-left: 16px; }
.proj-meta li:nth-last-child(-n+2) { border-bottom: none; }
.proj-meta .key {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--c-mute); text-transform: uppercase;
}
.proj-meta .val { font-size: 14px; color: var(--c-ink); line-height: 1.5; }
.proj-meta .val a { color: var(--c-blue); text-decoration: none;
  border-bottom: 1px solid currentColor; }

.proj-hero-cover {
  margin: 0; position: relative;
  border-radius: var(--r-md); overflow: hidden;
  background: var(--c-paper); border: 1px solid rgba(31,26,20,0.08);
  aspect-ratio: 4 / 3;
}
.proj-hero-cover img { width: 100%; height: 100%; object-fit: cover; }
.proj-hero-cover .stamp {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--c-ink); color: var(--c-bg);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  padding: 6px 10px; border-radius: var(--r-sm);
}

/* 內容區段 */
.proj-block { padding: 56px var(--pad-x); position: relative; z-index: 2; }
.proj-block.alt { background: var(--c-bg-alt); }
.proj-block-inner {
  max-width: var(--w-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 56px;
  align-items: start;
}
.proj-block-head {
  position: sticky; top: 100px;
}
.proj-block-head h2 + p,
.proj-features-head h2 + p,
.proj-video-head h2 + p { margin-top: 24px; }
.proj-block-body p { font-size: 15px; line-height: 1.85; color: var(--c-ink-2); }
.proj-block-body .lead {
  font-size: 17px; line-height: 1.75; color: var(--c-ink); font-weight: 500;
}

.proj-bullets {
  list-style: none; margin: 24px 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.proj-bullets li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 18px;
  background: var(--c-surface);
  border: 1px solid rgba(31,26,20,0.08);
  border-radius: var(--r-md);
}
.proj-bullets .ico {
  flex: none; font-size: 18px; line-height: 1.2;
}
.proj-bullets div { flex: 1; }
.proj-bullets strong {
  display: block; font-family: var(--f-serif); font-weight: 600;
  font-size: 17px; color: var(--c-ink); margin-bottom: 4px;
}
.proj-bullets div:not(strong) { font-size: 14px; color: var(--c-ink-2); }

.proj-warn {
  margin-top: 18px; padding: 12px 16px;
  background: rgba(184,148,86,0.10);
  border: 1px solid rgba(184,148,86,0.4);
  border-radius: var(--r-sm);
  font-size: 13px; color: var(--c-ink); font-weight: 500;
}

/* 4 卡片特色 */
.proj-features-section { padding: 64px var(--pad-x); position: relative; z-index: 2; }
.proj-features-inner { max-width: var(--w-max); margin: 0 auto; }
.proj-features-head {max-width: 800px;margin-bottom: 36px;}
.proj-features-head p { margin-top: 14px; color: var(--c-ink-2); font-size: 15px; }
.proj-features {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
}
.proj-feature {
  --accent: var(--c-blue);
  background: var(--c-surface); border: 1px solid rgba(31,26,20,0.08);
  border-radius: var(--r-md); overflow: hidden; margin: 0;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.proj-feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--sh-2);
}
.proj-feature figure {
  margin: 0; aspect-ratio: 1 / 1;
  background: var(--c-paper); overflow: hidden;
}
.proj-feature figure img { width: 100%; height: 100%; object-fit: cover; }
.proj-features.is-natural .proj-feature figure { aspect-ratio: auto; }
.proj-features.is-natural .proj-feature figure img { height: auto; object-fit: initial; display: block; }

/* 非自有 IP 案例的特色卡：2 欄、原圖比例 */
.proj-features.is-cases { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.proj-features.is-cases .proj-feature figure { aspect-ratio: auto; }
.proj-features.is-cases .proj-feature figure img { height: auto; object-fit: initial; display: block; }
.proj-feature .body { padding: 20px 18px 22px; }
.proj-feature .num {
  display: inline-block;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--accent); margin-bottom: 8px;
}
.proj-feature h4 { font-size: 18px; margin: 0 0 6px; }
.proj-feature p { font-size: 13px; line-height: 1.7; color: var(--c-ink-2); margin: 0; }

/* 影片區 */
.proj-video-section {
  padding: 64px var(--pad-x);
  background: var(--c-ink); color: var(--c-bg);
  position: relative; z-index: 2;
}
.proj-video-inner { max-width: var(--w-max); margin: 0 auto; }
.proj-video-head { text-align: center; margin-bottom: 32px; }
.proj-video-head h2 { color: var(--c-bg); }
.proj-video-head .eyebrow { color: var(--c-gold-2); }
.proj-video-head .eyebrow::before { background: var(--c-gold-2); }
.proj-video-frame {
  max-width: 880px; margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid rgba(245,241,234,0.18);
  box-shadow: var(--sh-3);
}
.proj-video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* 關卡場景 grid */
.proj-stages {
  list-style: none; margin: 24px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px;
}
.proj-stages figure { margin: 0; }
.proj-stages figure img {
  aspect-ratio: 4 / 5;
  width: 100%; object-fit: cover; border-radius: var(--r-md);
  border: 1px solid rgba(31,26,20,0.08);
  transition: transform 0.4s;
}

/* 案例圖片區塊（非自有 IP）— 顯示原圖比例，較寬鬆排版 */
.proj-cases {
  list-style: none; margin: 24px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px;
}
.proj-cases figure { margin: 0; overflow: hidden; border-radius: var(--r-md); }
.proj-cases figure img {
  width: 100%; height: auto; display: block;
  border: 1px solid rgba(31,26,20,0.08);
  border-radius: var(--r-md);
  transition: transform 0.4s;
}
.proj-cases figure:hover img { transform: scale(1.02); }
.proj-cases figcaption {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 4px 0;
}
.proj-cases .num {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--c-mute);
}
.proj-cases .name { font-size: 14px; font-weight: 500; color: var(--c-ink); }
.proj-cases .sub { font-size: 11px; color: var(--c-mute); }
.proj-stages figure:hover img { transform: scale(1.03); }
.proj-stages figcaption {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 4px 0;
}
.proj-stages .num {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--c-mute);
}
.proj-stages .name {
  font-family: var(--f-serif); font-size: 17px; font-weight: 500;
  color: var(--c-ink);
}
.proj-stages .sub { font-size: 11px; color: var(--c-mute); }

/* CTA 區段（深色） */
.proj-cta {
  background: var(--c-ink); color: var(--c-bg);
  padding: 80px 0; position: relative;
}
.proj-cta-row {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px;
  align-items: end;
}
.proj-cta h2 { color: var(--c-bg); }
.proj-cta .eyebrow { color: var(--c-gold-2); }
.proj-cta .eyebrow::before { background: var(--c-gold-2); }
.proj-cta p { color: var(--c-mute-2); }
.proj-cta-side { text-align: right; }
.proj-cta-side .hand {
  font-family: var(--f-hand); font-size: 28px;
  color: var(--c-gold-2);
}

/* 上下篇導覽 */
.proj-next {
  max-width: var(--w-max); margin: 0 auto;
  padding: 48px var(--pad-x);
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  position: relative; z-index: 2;
}
.proj-next a {
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 26px;
  background: var(--c-surface);
  border: 1px solid rgba(31,26,20,0.08);
  border-radius: var(--r-md);
  text-decoration: none; color: var(--c-ink);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.proj-next a:hover {
  border-color: var(--c-blue); background: var(--c-bg);
  transform: translateY(-2px);
}
.proj-next-forward { text-align: right; }
.proj-next .lbl {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--c-mute); text-transform: uppercase;
}
.proj-next .title {
  font-family: var(--f-serif); font-size: 19px; font-weight: 500;
}

/* --- Nav 搜尋按鈕 --- */
/* 讓 nav-links 兩側 margin:auto 自動置中，吃掉 space-between 的可用空間，
   就讓 search + CTA 黏在右側不留縫，logo 黏在左側不被擠 */
.site-nav .nav-links { margin-left: auto; margin-right: auto; }
.nav-search {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: var(--c-ink); background: transparent;
  border: 1px solid rgba(31,26,20,0.12);
  margin-right: 12px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-search:hover {
  background: var(--c-ink); color: var(--c-bg); border-color: var(--c-ink);
}
.nav-search svg { display: block; width: 16px; height: 16px; }

@media (max-width: 960px) {
  .nav-search {
    position: fixed; top: 14px; right: calc(var(--pad-x) + 56px);
    z-index: 70; background: var(--c-bg);
  }
  body.nav-open .nav-search { display: none; }
}

/* --- 404 NOT FOUND --- */
.not-found-section {
  padding: 96px var(--pad-x) 120px;
  max-width: var(--w-max); margin: 0 auto;
  position: relative; z-index: 2;
}
.not-found-inner {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px;
  align-items: center;
}
.not-found-mark { position: relative; }
.not-found-mark .badge {
  display: inline-block;
  background: rgba(184,148,86,0.12); color: var(--c-gold-2);
  padding: 8px 14px; border-radius: var(--r-pill);
  font-size: 11px; letter-spacing: 0.18em;
}
.not-found-mark .huge {
  font-family: var(--f-serif); font-weight: 700; font-style: italic;
  font-size: clamp(160px, 22vw, 260px); line-height: 0.9;
  letter-spacing: -0.04em; color: var(--c-ink);
  margin-top: 20px;
  background: linear-gradient(135deg, var(--c-ink) 0%, var(--c-blue) 60%, var(--c-gold-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.not-found-mark .hand-note {
  font-family: var(--f-hand, 'Caveat', cursive); font-size: 22px;
  color: var(--c-mute); transform: rotate(-2deg);
  margin-top: 8px;
}
.not-found-body h1 {
  font-family: var(--f-serif); font-size: clamp(36px, 4vw, 56px);
  font-weight: 500; letter-spacing: -0.02em; margin: 0 0 18px;
}
.not-found-body .lead {
  font-size: 17px; line-height: 1.75; color: var(--c-ink); font-weight: 500;
  margin: 0 0 8px;
}
.not-found-body p { font-size: 15px; line-height: 1.85; color: var(--c-ink-2); margin: 0 0 8px; }
.not-found-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin: 28px 0 36px;
}
.not-found-suggest {
  padding-top: 24px; border-top: 1px solid rgba(31,26,20,0.08);
}
.not-found-suggest ul {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.not-found-suggest li a {
  display: inline-block;
  padding: 8px 14px; border: 1px solid rgba(31,26,20,0.16);
  border-radius: var(--r-pill);
  font-size: 13px; color: var(--c-ink); text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.not-found-suggest li a:hover {
  background: var(--c-ink); color: var(--c-bg); border-color: var(--c-ink);
}

/* --- SEARCH --- */
.search-hero {
  padding: 80px var(--pad-x) 32px;
  max-width: var(--w-max); margin: 0 auto;
  position: relative; z-index: 2;
}
.search-hero-inner { width: 100%; }
.search-hero h1 {
  font-family: var(--f-serif); font-size: clamp(40px, 5vw, 64px);
  font-weight: 500; letter-spacing: -0.02em;
  margin: 14px 0 14px;
}
.search-hero .search-sub {
  font-size: 16px; color: var(--c-ink-2); margin: 0 0 28px; max-width: 720px;
}
.search-box {
  padding: 4px 8px;
  background: var(--c-surface);
  border: 1px solid rgba(31,26,20,0.12);
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  width: 100%;
}
.search-results-section {
  padding: 24px var(--pad-x) 96px;
  max-width: var(--w-max); margin: 0 auto;
  position: relative; z-index: 2;
}
.search-results-inner { min-height: 320px; width: 100%; }

/* 讓 GCSE 注入的根容器與內部元素全部撐滿 100% */
.search-box .gsc-control-cse,
.search-results-section .gsc-control-cse {
  font-family: var(--f-sans); padding: 0; border: 0; background: transparent;
  width: 100% !important;
}
.search-results-section .gsc-control-wrapper-cse,
.search-results-section .gsc-results-wrapper-nooverlay,
.search-results-section .gsc-results-wrapper-visible,
.search-results-section .gsc-wrapper,
.search-results-section .gsc-resultsbox-visible,
.search-results-section .gsc-resultsRoot,
.search-results-section .gsc-results,
.search-results-section .gsc-expansionArea,
.search-results-section .gsc-webResult,
.search-results-section .gsc-imageResult-classic,
.search-results-section .gsc-imageResult-column,
.search-results-section .gsc-thumbnail-inside,
.search-results-section .gs-result,
.search-results-section .gsc-table-result,
.search-results-section .gsc-table-cell-snippet-close {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

/* === 搜尋框 === */
.search-box .gsc-control-searchbox-only,
.search-box .gsc-search-box,
.search-box .gsc-search-box-tools {
  margin: 0 !important; padding: 0 !important;
  width: 100% !important; max-width: none !important;
}
.search-box table.gsc-search-box,
.search-box form.gsc-search-box {
  width: 100% !important;
  max-width: none !important;
  border-collapse: separate;
}
.search-box table.gsc-search-box,
.search-box table.gsc-search-box > tbody,
.search-box table.gsc-search-box > tbody > tr {
  width: 100% !important;
  max-width: none !important;
}
.search-box table.gsc-search-box tbody { width: 100% !important; }
.search-box table.gsc-search-box td { border: 0 !important; padding: 0 !important; }
/* 讓 input td 撐到 100%、搜尋鈕 td 縮到內容寬即可 */
.search-box td.gsc-input { width: 100% !important; vertical-align: middle; }
.search-box td.gsc-search-button { width: 1% !important; white-space: nowrap; vertical-align: middle; }
.search-box .gsc-input-box {
  border: 0 !important; background: transparent !important;
  box-shadow: none !important; padding: 0 !important;
  height: auto !important;
  width: 100% !important;
}
.search-box .gsib_a {
  padding: 0 !important;
  background-image: none !important;
  width: 100% !important;
}
.search-box .gsib_b { padding: 0 8px 0 0 !important; vertical-align: middle; }
.search-box input.gsc-input,
.search-box .gsc-input-box input[type="text"] {
  font-family: var(--f-sans) !important; font-size: 16px !important;
  background: transparent !important;
  background-image: none !important;
  padding: 12px 10px !important;
  color: var(--c-ink) !important;
  text-indent: 0 !important;
  border: 0 !important;
  outline: none !important;
  width: 100% !important;
  box-sizing: border-box;
}
.search-box input.gsc-input::placeholder { color: var(--c-mute); }
.search-box .gsc-search-button { padding-left: 8px; }
.search-box .gsc-search-button-v2 {
  background: var(--c-ink) !important;
  border-color: var(--c-ink) !important;
  border-radius: var(--r-pill) !important;
  padding: 12px 18px !important;
  min-width: 56px;
}
.search-box .gsc-search-button-v2 svg { fill: var(--c-bg); }
.search-box .gsc-clear-button {
  color: var(--c-mute) !important;
  background: transparent !important;
  width: auto !important;
}

/* === 結果項排版：縮圖絕對定位，文字統一靠右排 === */
.search-results-section .gs-webResult.gs-result,
.search-results-section .gs-result {
  width: 100% !important; max-width: 100% !important;
  position: relative;
}
/* 所有結果預設左邊保留呼吸空間 */
.search-results-section .gs-webResult.gs-result {
  padding-left: 24px;
}
/* 有縮圖時整個結果區留左側 140px 給縮圖 */
.search-results-section .gs-webResult.gs-result:has(.gs-image-box) {
  padding-left: 140px;
  min-height: 105px;
}
.search-results-section .gsc-table-cell-thumbnail,
.search-results-section .gsc-thumbnail {
  position: absolute !important;
  left: 0; top: 4px;
  width: 120px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  float: none !important;
}
.search-results-section .gsc-thumbnail-inside,
.search-results-section .gsc-url-top,
.search-results-section .gsc-table-result {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
}
/* 隱藏 .gsc-table-result 內部的重複 title（thumbnail-left 樣板留下的 legacy 副本）*/
.search-results-section .gsc-table-result .gs-title.gsc-thumbnail-left,
.search-results-section .gsc-table-result .gs-title.gsc-table-cell-thumbnail {
  display: none !important;
}

/* === 分頁 tab（網頁 / 圖片）=== */
.search-results-section .gsc-tabsArea {
  border-bottom: 1px solid rgba(31,26,20,0.12);
  margin-bottom: 12px;
}
.search-results-section .gsc-tabHeader {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em;
  padding: 12px 18px; border: 0; background: transparent;
  color: var(--c-mute); cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.search-results-section .gsc-tabHeader.gsc-tabhActive {
  color: var(--c-ink); border-bottom: 2px solid var(--c-ink);
  background: transparent;
}
.search-results-section .gsc-tabHeader.gsc-tabhInactive:hover { color: var(--c-ink); }
.search-results-section .gsc-refinementsArea { display: none; }

/* === 結果統計與排序列 === */
.search-results-section .gsc-resultsHeader { border: 0; }
/* 統計 + 排序的外層 table 要撐 100%，排序才會被推到右側 */
.search-results-section table.gsc-above-wrapper-area-container,
.search-results-section .gsc-above-wrapper-area,
.search-results-section table.gsc-above-wrapper-area-container > tbody,
.search-results-section table.gsc-above-wrapper-area-container > tbody > tr {
  width: 100% !important;
  max-width: none !important;
}
.search-results-section .gsc-result-info-container {
  width: 100%;
  text-align: left;
}
.search-results-section .gsc-result-info {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.05em;
  color: var(--c-mute); padding: 12px 0;
}
.search-results-section .gsc-orderby-container {
  text-align: right !important;
  white-space: nowrap;
  vertical-align: middle !important;
  width: auto !important;
}
.search-results-section .gsc-orderby-label,
.search-results-section .gsc-selected-option-container {
  font-family: var(--f-sans); font-size: 13px;
  display: inline-block;
  vertical-align: middle;
}
.search-results-section .gsc-orderby-label { margin-right: 8px; color: var(--c-mute); }
.search-results-section .gsc-selected-option-container {
  border: 1px solid rgba(31,26,20,0.16);
  border-radius: var(--r-pill);
  padding: 6px 12px; background: transparent;
  min-width: auto !important;
  line-height: 1.4;
}

/* === 單筆結果卡 === */
.search-results-section .gsc-webResult.gsc-result,
.search-results-section .gsc-imageResult-classic,
.search-results-section .gsc-imageResult-column {
  padding: 22px 0;
  border-bottom: 1px solid rgba(31,26,20,0.08);
  background: transparent;
}
.search-results-section .gsc-webResult.gsc-result:hover {
  background: transparent;
  border-color: rgba(31,26,20,0.16);
}
.search-results-section .gs-result a.gs-title,
.search-results-section .gs-result a.gs-title:link,
.search-results-section .gs-title,
.search-results-section .gs-title * {
  font-family: var(--f-serif) !important;
  font-size: 19px !important;
  font-weight: 500 !important;
  color: var(--c-ink) !important;
  text-decoration: none !important;
  letter-spacing: -0.01em;
  line-height: 1.4 !important;
}
.search-results-section .gs-result a.gs-title:hover,
.search-results-section .gs-result a.gs-title:hover * {
  color: var(--c-blue) !important;
  text-decoration: underline !important;
}
.search-results-section .gs-title b,
.search-results-section .gs-title b * { color: var(--c-blue) !important; }
.search-results-section .gsc-url-top,
.search-results-section .gs-visibleUrl,
.search-results-section .gs-visibleUrl-short,
.search-results-section .gs-visibleUrl-long {
  color: var(--c-mute) !important;
  font-family: var(--f-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.search-results-section .gs-snippet,
.search-results-section .gs-snippet * {
  font-family: var(--f-sans) !important;
  font-size: 14px !important;
  line-height: 1.75 !important;
  color: var(--c-ink-2) !important;
  margin-top: 6px;
}
.search-results-section .gs-snippet b,
.search-results-section .gs-snippet b * { color: var(--c-ink) !important; font-weight: 600 !important; }
.search-results-section .gs-image-box {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(31,26,20,0.08);
}
.search-results-section .gs-image-box img.gs-image,
.search-results-section img.gs-image {
  max-width: 120px !important;
  max-height: 90px !important;
  border-radius: var(--r-md);
}

/* === 分頁列（1 2 3 4 5）=== */
.search-results-section .gsc-results .gsc-cursor-box,
.search-results-section .gsc-cursor-box {
  margin: 32px 0 16px !important;
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.search-results-section .gsc-cursor {
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.search-results-section .gsc-cursor-box .gsc-cursor-page,
.search-results-section .gsc-cursor-page {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px;
  padding: 0 !important;
  margin: 0 !important;
  color: var(--c-ink) !important;
  background: var(--c-bg) !important;
  font-family: var(--f-mono) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  border-radius: 50% !important;
  border: 1px solid rgba(31,26,20,0.2) !important;
  text-decoration: none !important;
  cursor: pointer;
  box-sizing: border-box;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.search-results-section .gsc-cursor-page:hover {
  color: var(--c-bg) !important;
  background: var(--c-ink) !important;
  border-color: var(--c-ink) !important;
}
.search-results-section .gsc-cursor-current-page,
.search-results-section .gsc-cursor-box .gsc-cursor-current-page {
  color: var(--c-bg) !important;
  background: var(--c-ink) !important;
  border-color: var(--c-ink) !important;
  font-weight: 700 !important;
}

/* === 在 Google 上搜尋 link === */
.search-results-section .gcsc-find-more-on-google,
.search-results-section .gcsc-find-more-on-google-magnifier,
.search-results-section .gcsc-find-more-on-google-query {
  font-family: var(--f-mono) !important; font-size: 12px !important;
  color: var(--c-mute) !important;
  letter-spacing: 0.05em;
  background: transparent !important;
}
.search-results-section .gcsc-find-more-on-google-root {
  display: flex; justify-content: center; align-items: center;
  margin: 12px auto 0;
  padding-top: 12px;
}
.search-results-section .gcsc-find-more-on-google-root .gcsc-find-more-on-google {
  display: inline-flex !important; align-items: center; gap: 8px;
  padding: 0 !important;
}
.search-results-section .gcsc-find-more-on-google-magnifier {
  position: static !important;
  width: 16px !important; height: 16px !important;
  margin: 0 12px 0 0 !important;
  display: inline-block !important;
  vertical-align: middle;
  flex-shrink: 0;
}
.search-results-section .gcsc-find-more-on-google-query { padding-left: 0 !important; }
.search-results-section .gcsc-find-more-on-google:hover,
.search-results-section .gcsc-find-more-on-google:hover .gcsc-find-more-on-google-query { color: var(--c-blue) !important; }

/* === 無結果訊息 === */
.search-results-section .gs-no-results-result .gs-snippet {
  background: var(--c-surface) !important;
  border: 1px dashed rgba(31,26,20,0.16) !important;
  border-radius: var(--r-md);
  padding: 24px !important;
  color: var(--c-ink-2) !important;
}

@media (max-width: 800px) {
  .not-found-inner { grid-template-columns: 1fr; gap: 36px; }
  .not-found-section { padding: 64px var(--pad-x) 80px; }
  .search-hero { padding: 64px var(--pad-x) 28px; }
}

/* RWD */
@media (max-width: 960px) {
  .works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .works-more .row { grid-template-columns: 1fr; gap: 24px; }
  .proj-hero { grid-template-columns: 1fr; gap: 28px; }
  .proj-block-inner { grid-template-columns: 1fr; gap: 24px; }
  .proj-block-head { position: static; }
  .proj-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proj-stages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proj-cases { grid-template-columns: 1fr; gap: 24px; }
  .proj-cta-row { grid-template-columns: 1fr; align-items: start; }
  .proj-cta-side { text-align: left; }
  .proj-next { grid-template-columns: 1fr; }
  .proj-next-forward { text-align: left; }
}
@media (max-width: 600px) {
  .works-grid { grid-template-columns: 1fr; }
  .works-clients { grid-template-columns: 1fr; }
  .works-clients li:nth-last-child(-n+2) { border-bottom: 1px dashed rgba(31,26,20,0.18); }
  .works-clients li:last-child { border-bottom: none; }
  .proj-features { grid-template-columns: 1fr; }
  .proj-stages { grid-template-columns: 1fr; }
  .proj-cases { grid-template-columns: 1fr; }
  .proj-meta { grid-template-columns: 1fr; }
  .proj-meta li:nth-child(odd) { border-right: none; padding-right: 0; }
  .proj-meta li:nth-child(even) { padding-left: 0; }
  .proj-meta li:nth-last-child(-n+2) { border-bottom: 1px dashed rgba(31,26,20,0.1); }
  .proj-meta li:last-child { border-bottom: none; }
}

/* --- 17. 動畫 --- */
@keyframes craftPulse  { 0%,100% { transform: scale(1); opacity: 1 }
                         50% { transform: scale(1.4); opacity: 0.6 } }
@keyframes craftFadeUp { from { opacity: 0; transform: translateY(20px) }
                         to { opacity: 1; transform: none } }
@keyframes craftDrift  { 0%,100% { transform: translate(0,0) }
                         50% { transform: translate(20px,-15px) } }
@keyframes craftSpin   { from { transform: rotate(0) } to { transform: rotate(360deg) } }
@keyframes craftFloatA { 0%,100% { transform: rotate(-1deg) translate(0,0) }
                         50% { transform: rotate(0deg) translate(0,-12px) } }
@keyframes craftFloatB { 0%,100% { transform: rotate(-4deg) translate(0,0) }
                         50% { transform: rotate(-2deg) translate(0,-8px) } }
@keyframes craftWiggle { 0%,100% { transform: rotate(-4deg) }
                         50% { transform: rotate(6deg) } }
@keyframes specBreath  { 0%,100% { transform: rotate(var(--r, 0deg)) translateY(0) }
                         50% { transform: rotate(var(--r, 0deg)) translateY(-3px) } }
@keyframes specSlideIn { from { opacity: 0; transform: translateY(40px) rotate(var(--r-from, 0deg)) scale(0.9) }
                         to { opacity: 1; transform: translateY(0) rotate(var(--r, 0deg)) scale(1) } }
@keyframes specGlare   { 0%,100% { opacity: 0 } 50% { opacity: 0.15 } }
@keyframes pinShine    { 0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,0) }
                         50% { box-shadow: 0 0 0 3px rgba(255,255,255,0.4) } }
@keyframes marqueeMove { from { transform: translateX(0) }
                         to { transform: translateX(-50%) } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- 18. RWD --- */
/* 中等寬度：藏 logo 副標 + 縮 nav 間距，避免擠到斷行 */
@media (max-width: 1180px) {
  .site-nav .logo small { display: none; }
  .nav-links { gap: 24px; }
  .nav-inner { padding: 16px 32px; }
}
/* 平板/小筆電：直接切到漢堡選單，避免擠 */
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav .nav-inner > .btn { display: none; }

  /* 選單開啟時，body overflow:hidden 會讓 .site-nav 的 sticky 失效，
     toggle 會跟著被推離視窗。改成 fixed 釘在右上角，確保關閉鈕（X）始終可見可點。 */
  body.nav-open .nav-toggle {
    position: fixed; top: 14px; right: var(--pad-x);
  }

  /* 全螢幕 overlay 選單（Atelier 風格） */
  .nav-links {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    background: var(--c-bg);
    padding: 92px var(--pad-x) 32px;
    gap: 0;
    z-index: 60;
    overflow-y: auto;
    overscroll-behavior: contain;
    counter-reset: navi;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }

  /* 背景裝飾紋理 */
  .nav-links::before {
    content: ""; position: absolute; top: 0; right: 0;
    width: 360px; height: 360px; pointer-events: none;
    background:
      radial-gradient(circle at 80% 20%, rgba(86,103,163,0.08), transparent 60%),
      radial-gradient(circle at 20% 80%, rgba(184,148,86,0.06), transparent 60%);
    z-index: 0;
  }

  .nav-links li {
    list-style: none; position: relative; z-index: 1;
    border-bottom: 1px solid rgba(31,26,20,0.08);
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
  }
  .nav-links li.nav-menu-foot { border-bottom: none; }
  .nav-links.open li { opacity: 1; transform: none; }
  .nav-links.open li:nth-child(1) { transition-delay: 0.10s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.16s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.22s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.28s; }
  .nav-links.open li:nth-child(5) { transition-delay: 0.34s; }
  .nav-links.open li.nav-menu-foot { transition-delay: 0.42s; }

  .nav-links a {
    display: flex; align-items: baseline; gap: 16px;
    font-family: var(--f-serif); font-size: clamp(28px, 7vw, 44px);
    font-weight: 500; letter-spacing: -0.02em; color: var(--c-ink);
    padding: 16px 0; line-height: 1;
    transition: color 0.25s, transform 0.25s;
  }
  .nav-links a::after { display: none; }
  .nav-links a::before {
    content: ""; counter-increment: navi;
    font-family: var(--f-mono); font-size: 11px; font-weight: 400;
    color: var(--c-mute); letter-spacing: 0.15em;
    min-width: 32px; align-self: center;
  }
  .nav-links li:nth-child(1) a::before { content: "01"; }
  .nav-links li:nth-child(2) a::before { content: "02"; }
  .nav-links li:nth-child(3) a::before { content: "03"; }
  .nav-links li:nth-child(4) a::before { content: "04"; }
  .nav-links li:nth-child(5) a::before { content: "05"; }
  .nav-links a:hover {
    color: var(--c-blue); transform: translateX(8px);
    font-style: italic;
  }
  .nav-links a.is-active { color: var(--c-blue); }
  .nav-links a.is-active::before { color: var(--c-blue); }

  /* 底部 CTA + 聯絡資訊 — margin-top:auto 推到容器最下 */
  .nav-menu-foot {
    margin-top: auto; padding-top: 28px;
    border-top: 1px solid rgba(31,26,20,0.1);
    font-size: 12px; color: var(--c-mute); line-height: 1.7;
    font-family: var(--f-mono); letter-spacing: 0.05em;
  }
  .nav-menu-foot a {
    display: inline; padding: 0; font-size: 12px;
    font-family: var(--f-mono); font-weight: 400;
    color: var(--c-mute); text-decoration: none;
  }
  /* 移除 .nav-links a::before 編號偽元素（CTA 與聯絡資訊不需要編號）*/
  .nav-menu-foot a::before { content: none; display: none; }
  .nav-menu-foot a:hover { color: var(--c-blue); transform: none; font-style: normal; }
  .nav-menu-foot .cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--c-ink); color: var(--c-bg);
    padding: 14px 24px; border-radius: var(--r-pill);
    text-decoration: none; font-size: 14px; font-weight: 500;
    font-family: var(--f-sans); margin-bottom: 20px;
    transition: background 0.25s, transform 0.25s;
  }
  .nav-menu-foot .cta:hover { background: var(--c-blue); color: var(--c-bg);
    transform: translateY(-2px); font-style: normal; }

  /* 不再需要 backdrop（overlay 自己就是滿版） */
  .nav-backdrop { display: none; }
  body.nav-open { overflow: hidden; }
}
@media (min-width: 961px) {
  .nav-menu-foot { display: none; }
  .nav-backdrop { display: none; }
}

/* 中等寬度：縮緊間距，但保持兩欄佈局 */
@media (max-width: 1024px) {
  :root { --pad-x: 32px; }
  .hero { gap: 24px; }
  .hero h1 { font-size: 52px; }
  .specimen-grid { gap: 12px; }
  .manifesto .row { gap: 32px; }
  .manifesto h2 { font-size: 44px; }
  .case-row { gap: 32px; }
  .case-text h3 { font-size: 30px; }
  .site-footer .top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
}
/* 800px：主要 2-col → 1-col 崩塌 */
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { max-width: 480px; margin-left: auto; margin-right: auto; width: 100%; }
  .specimen-grid { grid-template-columns: repeat(3, 1fr); }
  .manifesto .row,
  .philosophy .section-inner,
  .split-2,
  .page-hero { grid-template-columns: 1fr; }
  .case-row, .case-row.reverse { grid-template-columns: 1fr; }
  .case-row.reverse .case-img { order: 1; }
  .case-row.reverse .case-text { order: 2; }
  .site-footer .top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer h3 { font-size: 28px; }

  /* 圖片在單欄佈局下限制大小，避免全寬把圖撐到超大 */
  .manifesto .img-wrap {
    aspect-ratio: 16/10; max-width: 520px; max-height: 380px;
    margin-left: auto; margin-right: auto; width: 100%;
  }
  /* about-grid 保持並排，aspect-ratio 由基礎規則決定 */
}
@media (max-width: 720px) {
  :root { --pad-x: 20px; }

  /* Nav - 行動版選單細節 (主結構在 ≤960px 已定義) */
  .nav-inner { padding: 14px var(--pad-x); }
  .site-nav .logo small { display: none; }

  /* Hero */
  .hero { padding: 24px var(--pad-x) 8px; gap: 24px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 14px; }
  .hero-actions .btn { font-size: 12px; padding: 9px 18px; }
  .hero-stats { gap: 18px; padding-top: 12px; }
  .hero-stat .num { font-size: 22px; }
  .hero-stat .lbl { font-size: 10px; }

  /* Hero 裝飾圖區 — 縮放並調整裝飾位置避免擋字 */
  .hero-art { height: 300px; max-width: 380px; margin: 0 auto; width: 100%; }
  .hero-art .frame { inset: 0 24px 24px 0; }
  .hero-art .ticket { width: 76px; height: 96px; top: 12px; right: -4px; }
  .hero-art .ticket .title { font-size: 10px; }
  .hero-art .stamp { width: 56px; height: 56px; bottom: 24px; right: 14px; }
  .hero-art .stamp svg { width: 52px; height: 52px; }
  .hero-art .sticky { width: 100px; height: 68px; bottom: -8px; left: 6px; }
  .hero-art .sticky .body { font-size: 11px; }

  /* Section divider */
  .section-divider .row { padding: 24px var(--pad-x); gap: 12px; }
  .section-divider .label { font-size: 10px; letter-spacing: 0.18em; gap: 8px; }

  /* Specimen — 改為水平滑動，保留「樣本盒」感 */
  .specimen-wrap { padding: 32px var(--pad-x) 24px; }
  .specimen-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
  .specimen-head .note { text-align: left; transform: rotate(-1.5deg);
    max-width: none; font-size: 16px; }
  .specimen-board { padding: 14px; }
  .specimen-grid {
    grid-template-columns: repeat(5, 44vw);
    gap: 10px; padding: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .specimen-grid::-webkit-scrollbar { display: none; }
  .spec-card { scroll-snap-align: center; padding: 8px; }
  .spec-card .name { font-size: 13px; }
  .spec-card .num { font-size: 7px; }
  .spec-card .corner-glyph { width: 18px; height: 18px; font-size: 10px; }
  .spec-card .sub { font-size: 10px; }
  .spec-card .hand { font-size: 12px; padding-top: 4px; }
  .specimen-meta { font-size: 9px; gap: 8px; flex-wrap: wrap; }

  /* Dialogue panel */
  .specimen-dialogue { margin-top: 40px; }
  .dialogue-panel { gap: 14px; }
  .dialogue-panel .bubble-q,
  .dialogue-panel .bubble-a { padding: 14px 18px; font-size: 14px; max-width: 100%; }

  /* Manifesto */
  .manifesto .section-inner { padding: 48px var(--pad-x); }
  .manifesto .row { gap: 28px; }
  .manifesto h2 { font-size: 32px; }
  .manifesto p { font-size: 14px; margin-top: 18px; }
  .manifesto .img-wrap { aspect-ratio: 4/3; max-height: 320px; }
  .manifesto .deco-circle.a { width: 160px; height: 160px; top: -40px; right: -40px; }
  .manifesto .deco-circle.b { width: 130px; height: 130px; }

  /* Cases */
  .cases .section-inner { padding: 24px var(--pad-x) 40px; }
  .cases-head { gap: 12px; margin-bottom: 18px; }
  .cases-head .label { font-size: 10px; letter-spacing: 0.18em; gap: 8px; }
  .case-row { padding: 28px 0; gap: 20px; }
  .case-text { padding: 0; }
  .case-text h3 { font-size: 24px; }
  .case-text p { font-size: 13px; }
  .case-text .nbr { font-size: 40px; }
  .case-stat { padding: 10px 14px; bottom: 12px; right: 12px; transform: rotate(2deg); }
  .case-stat .num { font-size: 26px; }
  .case-stat .lbl { font-size: 9px; }
  .cases-tags { gap: 16px; margin-top: 24px; }
  .cases-tags .tag { font-size: 14px; }
  .cases-tags .more { margin-left: 0; }

  /* Footer */
  .site-footer .section-inner { padding: 40px var(--pad-x) 24px; }
  .site-footer .top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .site-footer h3 { font-size: 26px; }
  .site-footer .row-info { font-size: 13px; }
  .site-footer .bottom { font-size: 10px; flex-direction: column;
    align-items: flex-start; gap: 12px; padding-top: 20px; }

  /* === 子頁通用 === */
  .page-hero { padding: 28px var(--pad-x) 16px; gap: 20px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero .lead { font-size: 14px; }

  .about-grid { padding: 32px var(--pad-x); gap: 10px; }

  .philosophy { padding: 48px var(--pad-x); }
  .philosophy h2 { font-size: 32px; }
  .philosophy .quote { padding: 22px; margin-bottom: 16px; }
  .philosophy .quote h4 { font-size: 17px; padding-top: 10px; }
  .philosophy .quote p { font-size: 13px; }
  .philosophy .quote::before { font-size: 48px; top: -4px; }

  .section { padding: 48px var(--pad-x); }
  .section.tight { padding: 24px var(--pad-x); }
  .split-2 { gap: 28px; }

  .accordion summary { padding: 14px 18px; font-size: 16px; }
  .accordion .body { padding: 0 18px 16px; font-size: 13px; }
}

/* 更小螢幕（< 380px，例：iPhone SE 直立） */
@media (max-width: 380px) {
  .hero h1 { font-size: 30px; }
  .hero-stats { gap: 14px; }
  .hero-stat .num { font-size: 20px; }
  .hero-art { height: 260px; }
  .hero-art .ticket { width: 64px; height: 84px; }
  .hero-art .sticky { width: 88px; }
  .case-text h3 { font-size: 22px; }
  .specimen-grid { grid-template-columns: repeat(5, 56vw); }
}
