:root {
  --ink: #221a3d;
  --ink-soft: #6c6390;
  --paper: #f4f2fb;
  --paper-card: #ffffff;
  --accent: #5b3fe0;
  --accent-dark: #4630b0;
  --accent2: #e8f14c;
  --accent3: #5ec8e8;
  --line: #e2ddf5;
  --block-a: #241c3f;
  --block-b: #3a2b70;
  --block-c: #5b3fe0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  background:
    repeating-linear-gradient(180deg, rgba(42,42,40,0.025) 0px, rgba(42,42,40,0.025) 1px, transparent 1px, transparent 96px),
    var(--paper);
  color: var(--ink);
  line-height: 1.7;
}

/* shelf-edge divider: a soft glass-shelf lip between sections */
.section { position: relative; }
.section:not(.section-cases)::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42,42,40,0.14) 20%, rgba(42,42,40,0.14) 80%, transparent);
  box-shadow: 0 6px 14px -4px rgba(42,42,40,0.18);
}
.section-services::before,
.section-contact::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14) 20%, rgba(255,255,255,0.14) 80%, transparent);
  box-shadow: 0 6px 14px -4px rgba(0,0,0,0.35);
}

/* vertical glass-cabinet frame seams down the page edges */
body:has(.hero)::before,
body:has(.hero)::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(42,42,40,0.1) 12%, rgba(42,42,40,0.1) 88%, transparent);
}
body:has(.hero)::before { left: 14px; }
body:has(.hero)::after { right: 14px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 242, 251, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 300;
  font-size: 1.35rem;
  letter-spacing: 0.28em;
  color: #555;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}
.nav-links a {
  color: #555;
  transition: color 0.15s;
}
.nav-links a:hover { color: #cc9a1e; }
.nav-inner-v2 { justify-content: space-between; gap: 24px; }
.nav-inner-v2 .nav-links { flex: 1; justify-content: center; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.55), rgba(255,255,255,0.16));
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 20px rgba(120,100,20,0.08);
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: #555;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }

/* Brand banner v2 — light glass hero */
.brand-banner-v2 {
  position: relative;
  overflow: hidden;
  padding-bottom: 90px;
}
.brand-fixed-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(180deg, #f9f8fb 0%, #efeef2 100%);
}
.edge-glow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22%;
}
.edge-glow-left {
  left: 0;
  background: radial-gradient(ellipse 100% 60% at 0% 30%, rgba(255,242,0,0.45), transparent 70%);
}
.edge-glow-right {
  right: 0;
  background: radial-gradient(ellipse 100% 65% at 100% 70%, rgba(255,242,0,0.4), transparent 70%);
}
.glass-orb {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.7) 10%, rgba(255,255,255,0.3) 26%, transparent 42%),
    radial-gradient(circle at 68% 70%, rgba(255,242,0,0.55) 0%, rgba(255,242,0,0.25) 22%, transparent 45%),
    radial-gradient(circle at 50% 50%, transparent 0%, transparent 70%, rgba(255,255,255,0.85) 80%, rgba(255,255,255,0.4) 91%, transparent 100%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.22) 45%, transparent 78%);
  filter: blur(2px);
  box-shadow: 0 18px 30px rgba(180,160,20,0.1);
  pointer-events: none;
  z-index: 1;
}
.orb-a { width: 340px; height: 340px; left: -140px; top: -60px; animation: orb-float-a 13s ease-in-out infinite; }
.orb-b { width: 120px; height: 120px; left: 10%; top: 58%; animation: orb-float-b 10s ease-in-out infinite 1s; }
.orb-c { width: 260px; height: 260px; right: -60px; top: -80px; animation: orb-float-a 15s ease-in-out infinite 0.5s; }
.orb-d { width: 90px; height: 90px; right: 20%; top: 74%; animation: orb-float-b 11s ease-in-out infinite 1.6s; }
.orb-e { width: 40px; height: 40px; left: 44%; top: 8%; animation: orb-float-b 8s ease-in-out infinite 0.8s; }
.orb-f { width: 170px; height: 170px; right: 28%; top: 82%; animation: orb-float-a 16s ease-in-out infinite 2.2s; }
.orb-g { width: 190px; height: 190px; left: 4%; top: 6%; animation: orb-float-a 17s ease-in-out infinite 1.3s; }
.orb-h { width: 24px; height: 24px; right: 12%; top: 30%; animation: orb-float-b 7s ease-in-out infinite 2.6s; }
.orb-i { width: 66px; height: 66px; left: 30%; top: 68%; animation: orb-float-b 9s ease-in-out infinite 3.4s; }
.orb-j { width: 110px; height: 110px; right: 4%; top: 46%; animation: orb-float-a 14s ease-in-out infinite 4.1s; }
.orb-k { width: 34px; height: 34px; left: 20%; top: 30%; animation: orb-float-b 6s ease-in-out infinite 1.9s; }
.orb-l { width: 150px; height: 150px; left: 46%; top: 60%; animation: orb-float-a 18s ease-in-out infinite 3.8s; }
@keyframes orb-float-a {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(16px, -34px) scale(1.04); }
  50%  { transform: translate(-10px, -54px) scale(1.07); }
  75%  { transform: translate(-22px, -22px) scale(1.03); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orb-float-b {
  0%   { transform: translate(0, 0) scale(1); }
  30%  { transform: translate(-14px, -26px) scale(1.06); }
  60%  { transform: translate(18px, -40px) scale(0.96); }
  100% { transform: translate(0, 0) scale(1); }
}
.orb-ring {
  position: absolute;
  left: 50%; top: 50%;
  width: 168%; height: 40%;
  border: 1px solid rgba(20,20,20,0.4);
  border-radius: 50%;
  transform-origin: center;
  animation: ring-spin 18s linear infinite;
}
@keyframes ring-spin {
  from { transform: translate(-50%, -50%) rotate(-18deg); }
  to { transform: translate(-50%, -50%) rotate(342deg); }
}
.glass-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff200;
  box-shadow: 0 0 8px 1px rgba(255,242,0,0.5);
  opacity: 0.85;
  z-index: 1;
}
.dot-1 { left: 30%; top: 22%; }
.dot-2 { left: 58%; top: 78%; }
.dot-3 { right: 14%; top: 55%; }

.brand-banner-inner-v2 {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 28px 30px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}
.brand-copy .brand-eyebrow {
  display: inline-block;
  color: #666;
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  margin-bottom: 18px;
  padding: 0;
  border: none;
  transform: none;
}
.brand-title-v2 {
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: none;
  -webkit-text-fill-color: currentColor;
  animation: none;
  filter: none;
  margin: 0 0 18px;
}
.brand-sub-v2 {
  color: #999;
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  padding-left: 0;
  margin: 0 0 28px;
  max-width: 460px;
}
.brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2));
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 10px 24px rgba(120,100,20,0.1);
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: #555;
  transition: all 0.2s;
}
.brand-cta:hover { background: var(--accent2); border-color: var(--accent2); color: var(--ink); transform: translateY(-3px); }
.brand-cta span { transition: transform 0.2s; }
.brand-cta:hover span { transform: translateX(4px); }

.brand-photo { position: relative; }
.brand-photo-arch {
  position: relative;
  width: 100%;
  aspect-ratio: 13 / 20;
  border-radius: 260px 260px 24px 24px;
  overflow: hidden;
  box-shadow: 0 0 0 2.5px rgba(255,255,255,0.95), 0 0 0 4px rgba(255,255,255,0.45), 0 30px 70px rgba(60,50,20,0.14);
}
.brand-photo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 6s ease;
}
.brand-photo-slide.active { opacity: 1; transform: scale(1); }
.brand-photo-dots {
  position: absolute;
  z-index: 3;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}
.brand-photo-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.brand-photo-dot.active { background: var(--accent2); transform: scale(1.3); }
.brand-photo-arch::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(200deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.05) 30%, rgba(255,255,255,0.05) 70%, rgba(255,255,255,0.35) 100%);
  pointer-events: none;
}
.brand-badge {
  position: absolute;
  right: -20px;
  bottom: 32px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(120,100,20,0.2);
  z-index: 3;
  animation: badge-pulse 3.4s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}
.brand-badge-num { font-family: "Arial-ItalicMT", Arial, sans-serif; font-style: italic; font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1; }
.brand-badge-label {
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 300;
  font-size: 0.66rem;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: 0.2em;
}

.brand-pillbar {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 22px 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 20px 50px rgba(120,100,20,0.1), inset 0 1px 0 rgba(255,255,255,0.7);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pill-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 400;
  justify-content: center;
  text-align: center;
}
.pill-item svg { width: 28px; height: 28px; color: var(--accent); flex-shrink: 0; }
@media (max-width: 900px) {
  .brand-banner-inner-v2 { grid-template-columns: 1fr; text-align: center; }
  .brand-copy .brand-eyebrow, .brand-sub-v2 { margin-left: auto; margin-right: auto; }
  .brand-photo { max-width: 320px; margin: 0 auto; }
  .brand-pillbar { grid-template-columns: repeat(2, 1fr); border-radius: 24px; }
  .nav-inner-v2 .nav-links { display: none; }
}
@media (max-width: 560px) {
  .brand-photo { display: flex; flex-direction: column; align-items: center; }
  .brand-badge {
    position: static;
    width: 68px;
    height: 68px;
    margin: -34px auto 0;
    transform: none;
  }
  .brand-badge-num { font-size: 1rem; }
  .brand-badge-label { font-size: 0.5rem; }
  .brand-pillbar {
    grid-template-columns: 1fr;
    border-radius: 20px;
    padding: 16px 18px;
    gap: 14px;
  }
  .pill-item { justify-content: flex-start; text-align: left; font-size: 0.8rem; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  padding: 120px 28px 90px;
  text-align: center;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.6s ease, transform 7s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(42,42,40,0.6) 0%, rgba(42,42,40,0.72) 55%, rgba(42,42,40,0.92) 100%);
}
.hero-glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}
.hero-glow-a {
  width: 420px; height: 420px;
  left: -80px; top: -60px;
  background: radial-gradient(circle, rgba(232,241,76,0.24), transparent 70%);
  animation: drift-a 14s ease-in-out infinite;
}
.hero-glow-b {
  width: 360px; height: 360px;
  right: -60px; bottom: -80px;
  background: radial-gradient(circle, rgba(94,200,232,0.26), transparent 70%);
  animation: drift-b 16s ease-in-out infinite;
}
@keyframes drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.15); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -30px) scale(1.1); }
}

.hero-sparkles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-sparkles span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #cdeef7;
  box-shadow: 0 0 6px 1px rgba(205,238,247,0.8);
  animation: twinkle 3.6s ease-in-out infinite;
}
.hero-sparkles span:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.hero-sparkles span:nth-child(2) { top: 30%; left: 82%; animation-delay: 0.4s; }
.hero-sparkles span:nth-child(3) { top: 62%; left: 22%; animation-delay: 0.8s; }
.hero-sparkles span:nth-child(4) { top: 74%; left: 68%; animation-delay: 1.2s; }
.hero-sparkles span:nth-child(5) { top: 22%; left: 48%; animation-delay: 1.6s; }
.hero-sparkles span:nth-child(6) { top: 84%; left: 40%; animation-delay: 2s; }
.hero-sparkles span:nth-child(7) { top: 46%; left: 88%; animation-delay: 2.4s; }
.hero-sparkles span:nth-child(8) { top: 12%; left: 66%; animation-delay: 2.8s; }
.hero-sparkles span:nth-child(9) { top: 54%; left: 8%; animation-delay: 3.2s; }
.hero-sparkles span:nth-child(10) { top: 68%; left: 92%; animation-delay: 1.0s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.6); }
}
@keyframes case-glow {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.hero-dot:hover { background: rgba(255,255,255,0.7); }
.hero-dot.active { background: var(--accent2); transform: scale(1.35); }

.eyebrow {
  display: inline-block;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: #cdeef7;
  margin-bottom: 20px;
  padding: 7px 18px;
  border: 1px solid rgba(94, 200, 232, 0.4);
  border-radius: 999px;
  transform: rotate(-1.5deg);
}
.hero h1 {
  font-size: 3rem;
  margin: 0 0 18px;
  letter-spacing: 0.03em;
}
.hero-tagline {
  color: #eae6df;
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.15s;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(112, 194, 169, 0.35);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 14px 28px rgba(112, 194, 169, 0.42); }
.btn-accent:active { transform: translateY(0) scale(0.97); }

/* Sections */
.section { padding: 90px 0; }
.section-label {
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 10px;
}
.section h2 {
  font-size: 1.9rem;
  margin: 0 0 20px;
}
.lead {
  color: var(--ink-soft);
  max-width: 640px;
  font-size: 1.02rem;
}

.section-about { background: var(--paper); position: relative; z-index: 1; overflow: hidden; }
.section-about::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent2), transparent 70%);
  opacity: 0.22;
  z-index: 0;
  animation: drift-a 15s ease-in-out infinite;
}
.section-about .section-inner { position: relative; z-index: 1; }

.value-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  padding: 32px 28px;
  border-radius: 16px;
  color: #f2efe9;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card.block-a { background: var(--block-a); }
.value-card.block-b { background: var(--block-b); }
.value-card.block-c { background: var(--block-c); }
.value-card:hover { transform: translateY(-6px) rotate(-1.2deg); box-shadow: 0 16px 30px rgba(42,42,40,0.2); }
.value-card.block-b:hover { transform: translateY(-6px) rotate(1.2deg); }
.value-index {
  display: inline-block;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.14);
  padding: 3px 10px;
  border-radius: 999px;
  transform: rotate(-4deg);
  animation: bob 4.5s ease-in-out infinite;
}
.value-card.block-b .value-index { animation-delay: 0.6s; }
.value-card.block-c .value-index { animation-delay: 1.2s; }
@keyframes bob {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-4px); }
}
.value-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.value-card p { margin: 0; font-size: 0.92rem; opacity: 0.88; }

/* Services */
.section-services { background: var(--ink); color: #f2efe9; position: relative; z-index: 1; overflow: hidden; }
.section-services::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 25%, rgba(232,241,76,0.14), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(94,200,232,0.18), transparent 44%),
    radial-gradient(2px 2px at 22% 30%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(2px 2px at 72% 58%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(2px 2px at 46% 82%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(2px 2px at 90% 22%, rgba(255,255,255,0.4), transparent 60%);
  animation: case-glow 8s ease-in-out infinite;
}
.section-services .section-inner { position: relative; z-index: 1; }
.section-services .section-label { color: var(--accent2); }
.service-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 1rem;
}
.service-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Cases */
.section-cases {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}
.section-cases::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 50% at 15% 20%, #fffbd6 0%, transparent 65%),
    radial-gradient(ellipse 50% 55% at 85% 15%, #fff200 0%, transparent 62%),
    radial-gradient(ellipse 60% 55% at 50% 95%, #fff200 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 75% 70%, #fffef0 0%, transparent 60%);
  background-size: 160% 160%;
  filter: blur(60px);
  animation: cases-bg-drift 24s ease-in-out infinite;
}
.section-cases::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(244, 242, 251, 0.35);
  backdrop-filter: blur(2px);
}
@keyframes cases-bg-drift {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 30% 20%; }
}
.section-cases .section-label { color: var(--accent-dark); }
.section-cases .lead { color: var(--ink-soft); }
.section-cases .section-inner { position: relative; z-index: 1; }
.filter-bar {
  margin-top: 34px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink-soft);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.18s;
}
.filter-btn:hover { background: rgba(255,255,255,0.7); color: var(--ink); transform: translateY(-2px); }
.filter-btn:active { transform: translateY(0) scale(0.95); }
.filter-btn.active {
  background: var(--accent2);
  border-color: var(--accent2);
  color: var(--ink);
  font-weight: 700;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.case-card {
  position: relative;
  background: linear-gradient(135deg, var(--accent2), var(--accent), var(--accent3));
  border-radius: 18px;
  padding: 4px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent2), var(--accent3), var(--accent));
  z-index: -2;
  transform: rotate(-4deg) scale(0.97);
  opacity: 0.55;
  transition: transform 0.25s ease;
}
.case-card:nth-child(odd) { transform: rotate(-0.6deg); }
.case-card:nth-child(even) { transform: rotate(0.6deg); }
.case-card:nth-child(odd)::before { transform: rotate(-3deg) scale(0.97); }
.case-card:nth-child(even)::before { transform: rotate(3deg) scale(0.97); }
.case-card::after {
  content: "";
  position: absolute;
  left: 10%; right: 10%; bottom: -10px;
  height: 16px;
  background: radial-gradient(ellipse at center, rgba(42,42,40,0.22), transparent 72%);
  opacity: 0;
  transition: opacity 0.22s ease;
  z-index: -1;
}
.case-card:hover::after { opacity: 1; }
.case-card:nth-child(odd):hover {
  transform: translateY(-6px) rotate(-1.4deg);
  box-shadow: 0 16px 30px rgba(34, 26, 61, 0.16);
}
.case-card:nth-child(even):hover {
  transform: translateY(-6px) rotate(1.4deg);
  box-shadow: 0 16px 30px rgba(34, 26, 61, 0.16);
}
.case-card:hover::before { transform: rotate(0deg) scale(1); opacity: 0.85; }
.case-card-inner {
  position: relative;
  background: var(--paper-card);
  border-radius: 15px;
  overflow: hidden;
}
.case-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #ddd8d0;
}
.case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.case-card:hover .case-thumb img { transform: scale(1.08); }
.case-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.45) 46%, transparent 62%);
  transform: translateX(-120%);
  pointer-events: none;
}
.case-card:hover .case-thumb::before {
  transform: translateX(120%);
  transition: transform 0.9s ease;
}
.case-date {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(34, 26, 61, 0.78);
  color: #fff;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.case-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(34, 26, 61, 0.78);
  color: #fff;
  font-size: 0.68rem;
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.case-body { padding: 16px 18px 20px; }
.case-category {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.case-body h3 { font-size: 1rem; margin: 0 0 4px; }
.case-body p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 19, 0.88);
}
.lightbox-stage {
  position: relative;
  z-index: 1;
  max-width: min(880px, 88vw);
  max-height: 84vh;
  text-align: center;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 72vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  margin: 0 auto;
}
.lightbox-caption { color: #f2efe9; margin: 14px 0 4px; font-size: 1rem; }
.lightbox-count { color: #a9a59f; margin: 0; font-size: 0.8rem; letter-spacing: 0.05em; }
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  z-index: 2;
  background: none;
  border: none;
  color: #f2efe9;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #f2efe9;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0 18px;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: var(--accent); }

/* Contact modal (glass) */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}
.contact-modal.open { opacity: 1; pointer-events: auto; }
.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(40, 35, 20, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.contact-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: 40px 34px;
  border-radius: 28px;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}
.contact-modal-panel h3 {
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin: 6px 0 8px;
  color: var(--ink);
}
.contact-modal-note {
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin: 0 0 20px;
}
.contact-modal-success {
  background: rgba(255,242,0,0.18);
  border: 1px solid rgba(255,242,0,0.5);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  margin: 0 0 16px;
}
.contact-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.contact-modal-panel form { display: flex; flex-direction: column; gap: 12px; }
.contact-modal-panel input,
.contact-modal-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.92rem;
  resize: vertical;
}
.contact-modal-panel input::placeholder,
.contact-modal-panel textarea::placeholder { color: var(--ink-soft); }
.contact-modal-panel input:focus,
.contact-modal-panel textarea:focus {
  outline: none;
  border-color: var(--accent2);
  background: rgba(255,255,255,0.6);
}
.contact-modal-panel button[type="submit"] { align-self: flex-start; margin-top: 4px; }

/* Contact */
.section-contact { background: var(--ink); color: #f2efe9; position: relative; z-index: 1; overflow: hidden; }
.section-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 20%, rgba(232,241,76,0.14), transparent 42%),
    radial-gradient(circle at 10% 80%, rgba(94,200,232,0.18), transparent 44%),
    radial-gradient(2px 2px at 30% 20%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(2px 2px at 65% 45%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(2px 2px at 85% 70%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(2px 2px at 15% 40%, rgba(255,255,255,0.4), transparent 60%);
  animation: case-glow 9s ease-in-out infinite;
}
.section-contact .section-inner { position: relative; z-index: 1; }
.section-contact .section-label { color: var(--accent2); }
.section-contact .lead { color: #cfcbc4; }
.contact-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}
.info-row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  font-size: 0.95rem;
}
.info-label {
  width: 64px;
  flex-shrink: 0;
  color: var(--accent2);
  font-weight: 600;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form input,
.contact-form textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent2);
  background: rgba(255,255,255,0.1);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #a49f97; }
.contact-form button { align-self: flex-start; margin-top: 4px; }
.form-success {
  background: rgba(112, 194, 169, 0.18);
  border: 1px solid var(--accent);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  background: #15140f;
  color: #9a958c;
  padding: 26px 0;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-link { color: #6f6b63; }
.admin-link:hover { color: var(--accent); }

@media (max-width: 860px) {
  .value-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: 480px; padding: 100px 24px 70px; }
  .hero h1 { font-size: 2.2rem; }
}
@media (max-width: 560px) {
  .case-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; font-size: 0.82rem; }
}

/* ---------- Admin ---------- */
.admin-body {
  background: #f2f1ee;
  min-height: 100vh;
}
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 220px;
  background: var(--ink);
  color: #f2efe9;
  padding: 26px 20px;
  flex-shrink: 0;
}
.admin-sidebar h1 { font-size: 1.05rem; margin: 0 0 30px; }
.admin-sidebar nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  color: #cfcbc4;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.admin-sidebar nav a:hover,
.admin-sidebar nav a.active { background: rgba(255,255,255,0.1); color: #fff; }
.admin-sidebar .logout { margin-top: 30px; display: block; font-size: 0.85rem; color: #9a958c; }

.admin-main { flex: 1; padding: 36px 44px; max-width: 980px; }
.admin-main h2 { margin-top: 0; }

.stat-row { display: flex; gap: 18px; margin: 24px 0 36px; }
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 26px;
  min-width: 160px;
}
.stat-card .num { font-size: 1.8rem; font-weight: 700; }
.stat-card .label { color: var(--ink-soft); font-size: 0.85rem; margin-top: 4px; }

.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 6px; overflow: hidden; }
.admin-table th, .admin-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.admin-table th { background: #efece7; font-weight: 600; }
.admin-table img { width: 70px; height: 40px; object-fit: cover; border-radius: 3px; }
.row-unread { background: #fbf1e9; }

.admin-form { background: #fff; padding: 28px; border-radius: 6px; border: 1px solid var(--line); max-width: 560px; }
.admin-form label { display: block; margin-bottom: 6px; font-size: 0.85rem; color: var(--ink-soft); }
.admin-form input, .admin-form select, .admin-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.92rem;
}
.admin-form img.preview { width: 160px; margin-bottom: 12px; border-radius: 4px; }
.gallery-preview { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.gallery-thumb { position: relative; width: 90px; text-align: center; font-size: 0.72rem; color: var(--ink-soft); cursor: pointer; }
.gallery-thumb img { width: 90px; height: 60px; object-fit: cover; border-radius: 4px; margin-bottom: 4px; }
.gallery-thumb input { margin-right: 3px; }

.btn-ghost {
  background: none;
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 4px;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--ink-soft);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-danger { color: #a3392a; border-color: #e3b7ab; }

.login-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
}
.login-box {
  background: #fff;
  padding: 44px 40px;
  border-radius: 8px;
  width: 340px;
}
.login-box h1 { font-size: 1.2rem; margin: 0 0 24px; }
.login-error { color: #a3392a; font-size: 0.85rem; margin-bottom: 14px; }

/* ================= /glass preview page (v2) ================= */
.v2-page {
  --ink: #2b2b2b;
  --ink-soft: #6f6a63;
  --paper: #f5f3ef;
  --paper-card: #ffffff;
  --accent: #b8860b;
  --accent-dark: #8a6508;
  --accent2: #fff200;
  --accent3: #fff200;
  --line: #e6e2da;
  background: var(--paper);
}
.v2-page .section-label {
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 400;
  letter-spacing: 0.3em;
}
.v2-page .section h2,
.v2-page .v2-works-row h2,
.v2-page .v2-process-head h2,
.v2-page .v2-footer-logo,
.v2-page .v2-step h4 {
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 400;
  color: var(--ink);
}
.v2-page .lead {
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 400;
}
.v2-page .section h2,
.v2-page .v2-works-row h2 { font-size: 1.3rem; margin: 0 0 8px; }
.v2-page .v2-works-head { margin-bottom: 0; }
.v2-page .filter-bar { margin-top: 20px; gap: 8px; }
.v2-page .filter-btn { padding: 6px 14px; font-size: 0.78rem; }
.v2-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--accent);
}
.v2-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 20px rgba(120,100,20,0.08);
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #555;
  transition: all 0.2s;
}
.v2-btn-ghost span { transition: transform 0.2s; }
.v2-btn-ghost:hover { background: var(--accent2); border-color: var(--accent2); color: var(--ink); transform: translateY(-2px); }
.v2-btn-ghost:hover span { transform: translateX(4px); }
.v2-link span { transition: transform 0.2s; }
.v2-link:hover span { transform: translateX(4px); }

.v2-about {
  position: relative;
  padding: 90px 0;
}
.v2-about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.65fr;
  gap: 44px;
  align-items: center;
}
.v2-about-media { position: relative; }
.v2-about-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 160px 20px 20px 20px;
  box-shadow: 0 40px 80px rgba(60,50,20,0.26), 0 14px 28px rgba(60,50,20,0.16);
}
.v2-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
}
.v2-glow-about {
  width: 160px; height: 160px;
  right: -40px; bottom: -30px;
  background: radial-gradient(circle, rgba(255,242,0,0.4), transparent 70%);
}
.v2-about-copy h2 {
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 400;
  font-size: 1.7rem;
  margin: 8px 0 16px;
}
.v2-about-copy .lead { margin-bottom: 22px; }

.v2-stats-wrap { position: relative; }
.v2-stats {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.9);
  color: var(--ink);
  border-radius: 40px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  box-shadow: 0 20px 50px rgba(120,100,20,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
}
.v2-stat { display: flex; flex-direction: column; }
.v2-stat-num {
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.v2-stat-label {
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 6px;
  line-height: 1.6;
}
.v2-stat-label em { font-style: normal; letter-spacing: 0.1em; opacity: 0.6; font-size: 0.68rem; }

.v2-works { position: relative; padding: 30px 0 100px; }
.v2-works-head { margin-bottom: 8px; }
.v2-works-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.v2-works-row h2 { margin: 0; white-space: nowrap; }
.v2-works-dots {
  flex: 0 0 40px;
  height: 1px;
  background-image: linear-gradient(90deg, var(--accent2) 40%, transparent 0%);
  background-size: 6px 1px;
  background-repeat: repeat-x;
}
.v2-works-row .filter-bar { margin: 0; }
.v2-works-link { margin-left: auto; white-space: nowrap; }
.v2-work-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.v2-work-card {
  position: relative;
  display: block;
  color: inherit;
  padding: 10px 10px 26px;
  border-radius: 22px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 20px 40px rgba(120,100,20,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.v2-work-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px rgba(120,100,20,0.14); }
.v2-work-card { cursor: pointer; }
.v2-work-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper-card);
}
.v2-work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  -webkit-mask-image: linear-gradient(180deg, #000 62%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 62%, transparent 100%);
}
.v2-work-card:hover .v2-work-thumb img { transform: scale(1.08); }
.v2-work-plus {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.9);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(120,100,20,0.12);
  transition: all 0.22s ease;
  z-index: 1;
}
.v2-work-plus svg { width: 16px; height: 16px; }
.v2-work-card:hover .v2-work-plus { background: var(--accent2); transform: scale(1.08); }
.v2-work-meta { padding: 16px 8px 0; }
.v2-work-meta h3 {
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-weight: 400;
  font-size: 1rem;
  margin: 0 0 4px;
}
.v2-work-cat { font-size: 0.72rem; letter-spacing: 0.12em; color: var(--ink-soft); }

.v2-process { position: relative; padding: 20px 0 100px; }
.v2-process-panel {
  position: relative;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 28px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 0.7fr 1.4fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(120,100,20,0.08);
}
.v2-process-head h2 { font-size: 1.2rem; }
.v2-process-head .lead { font-size: 0.85rem; margin: 6px 0 18px; }
.v2-process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.v2-step { text-align: center; display: flex; align-items: center; }
.v2-step-connector {
  flex: 1;
  height: 0;
  border-top: 1px dashed rgba(184,134,11,0.4);
  margin: 0 4px;
  align-self: 22px;
  margin-top: 22px;
}
.v2-step-body { display: flex; flex-direction: column; align-items: center; }
.v2-step-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 0 0 6px rgba(255,242,0,0.07), 0 0 12px rgba(255,242,0,0.16), 0 8px 18px rgba(120,100,20,0.1);
  color: var(--accent);
}
.v2-step-icon svg { width: 20px; height: 20px; }
.v2-step:nth-of-type(1) .v2-step-icon { box-shadow: 0 0 0 8px rgba(255,242,0,0.1), 0 0 16px rgba(255,242,0,0.22), 0 8px 18px rgba(120,100,20,0.1); }
.v2-step:nth-of-type(3) .v2-step-icon { box-shadow: 0 0 0 4px rgba(255,242,0,0.05), 0 0 8px rgba(255,242,0,0.1), 0 8px 18px rgba(120,100,20,0.1); }
.v2-step:nth-of-type(5) .v2-step-icon { box-shadow: 0 0 0 7px rgba(255,242,0,0.09), 0 0 14px rgba(255,242,0,0.2), 0 8px 18px rgba(120,100,20,0.1); }
.v2-step-num { display: block; font-size: 0.7rem; color: var(--accent-dark); font-weight: 700; }
.v2-step h4 { font-size: 0.88rem; margin: 4px 0 2px; }
.v2-step-en { font-size: 0.66rem; letter-spacing: 0.08em; color: var(--ink-soft); }

.v2-footer {
  position: relative;
  z-index: 1;
  color: var(--ink-soft);
  padding: 70px 0 0;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-top: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 -10px 40px rgba(120,100,20,0.06);
}
.v2-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.v2-footer-logo {
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #555;
}
.v2-footer-brand p {
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.7;
}
.v2-footer-col h5, .v2-footer-contact h5 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #cc9a1e;
  margin: 0 0 16px;
}
.v2-footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 0.88rem; }
.v2-footer-col a, .v2-footer-col span {
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  color: var(--ink-soft);
}
.v2-footer-col a:hover { color: var(--accent); }
.v2-footer-contact p {
  font-family: "AdobeMingStd-Light-B5pc-H", "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-size: 0.85rem;
  margin: 0 0 16px;
}
.v2-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.v2-footer-bottom a { color: var(--ink-soft); }

@media (max-width: 900px) {
  .v2-about-grid { grid-template-columns: 1fr; }
  .v2-work-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-process-panel { grid-template-columns: 1fr; }
  .v2-process-steps { grid-template-columns: repeat(3, 1fr); }
  .v2-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .v2-work-grid { grid-template-columns: 1fr; }
  .v2-process-steps { grid-template-columns: repeat(2, 1fr); }
  .v2-footer-grid { grid-template-columns: 1fr; }
}
