@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&family=Inter:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700;900&display=swap');

/* ============================================================
   Page transitions
   ------------------------------------------------------------
   Two-tier strategy:
   1. Modern browsers (Chrome / Edge / Safari) honor the
      @view-transition rule and cross-fade between documents
      automatically — zero JS, runs even on hard navigations.
   2. Older browsers fall back to a body fade-in keyframe so the
      arriving page still eases in instead of slamming.
   When View Transitions are supported the keyframe is suppressed
   so the two effects don't stack.
   ============================================================ */
@view-transition { navigation: auto; }

/* Leaving page: fade out */
::view-transition-old(root) {
  animation: vtFadeOut 0.25s ease-in both;
}
/* Arriving page: fade + subtle slide up */
::view-transition-new(root) {
  animation: vtFadeSlideIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes vtFadeOut {
  to { opacity: 0; }
}
@keyframes vtFadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Body-level fade-in runs on every page load.
   On Chrome/Edge/Safari, @view-transition above also runs a cross-
   fade between document snapshots — both effects coexist cleanly
   since VT operates on pseudo-element snapshots, not the real body.
   On Firefox (no cross-doc VT yet) this becomes the only animation,
   so arrivals still ease in instead of slamming. */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body {
  animation: pageFadeIn 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
}

:root {
  --black: #f0f0f0;
  --dark: #2D2D2D;
  --dark-2: #e6e6e4;
  --dark-3: #dcdcda;
  --gray: #777777;
  --gray-light: #999999;
  --white: #2D2D2D;
  --accent: #2E5BFF;
  --border: #DCDCD9;

  /* Blog theme tokens (used for blog index + article pages) */
  --blog-bg: #f0f0f0;
  --blog-surface: #e6e6e4;
  --blog-text: #2D2D2D;
  --blog-text-muted: #999999;
  --blog-border: #DCDCD9;
  --blog-strong: #000000;
  --blog-line: #c8c8c6;
  --blog-link: #2E5BFF;
}

[data-theme="dark"] {
  --blog-bg: #2a2a2a;
  --blog-surface: #313131;
  --blog-text: #d4d4d2;
  --blog-text-muted: #8a8a88;
  --blog-border: #3d3d3d;
  --blog-strong: #ededeb;
  --blog-line: #4a4a4a;
  --blog-link: #8aa9ff;
}

/* Dark-mode page chrome on blog pages */
[data-theme="dark"] body.inner-page { background: var(--blog-bg); }
[data-theme="dark"] body.inner-page .nav {
  background: var(--blog-surface);
  border-bottom-color: var(--blog-border);
}
[data-theme="dark"] body.inner-page .nav a,
[data-theme="dark"] body.inner-page .nav-cta,
[data-theme="dark"] body.inner-page .nav-row a,
[data-theme="dark"] body.inner-page .nav-row span,
[data-theme="dark"] body.inner-page .nav-logo { color: var(--blog-text); }
[data-theme="dark"] body.inner-page .nav .active,
[data-theme="dark"] body.inner-page .nav a:hover { color: var(--blog-strong); }
[data-theme="dark"] body.inner-page .findme-dropdown {
  background: var(--blog-surface);
  border-color: var(--blog-border);
}

body.inner-page,
.nav,
.article-back,
.article-back a,
.blog-article-body,
.blog-article-header,
.blog-list,
.blog-row,
.blog-toc a,
.blog-toc a::before {
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* Theme toggle button */
.theme-toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--dark);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.4s cubic-bezier(.4,0,.2,1);
}
.theme-toggle:hover {
  background: var(--blog-surface);
  transform: translate(-50%, -50%) rotate(45deg);
}
[data-theme="dark"] .theme-toggle {
  border-color: var(--blog-border);
  color: var(--blog-text);
}
[data-theme="dark"] .theme-toggle:hover { background: #222; }
.theme-toggle svg { display: block; width: 18px; height: 18px; transition: opacity 0.3s ease, transform 0.4s ease; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

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

html { background: #f0f0f0; }

body {
  font-family: 'Inter', 'Noto Sans TC', -apple-system, "Helvetica Neue", sans-serif;
  font-synthesis: none;
  background: #f0f0f0;
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Tighten tracking on large display headings */
.hero-brand,
.svc-nav-title,
.svc-panel-title,
.about-intro h1,
.awards-section h2,
.blog-list h1,
.blog-article-header h1,
.contact-email {
  letter-spacing: -0.05cap;
}

/* ===== Grain overlay ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  mix-blend-mode: multiply;
}

/* ===== Nav ===== */
.nav {
  min-height: 56px;
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.nav.visible { transform: translateY(0); }
body.inner-page .nav {
  transform: none;
}
body.inner-page main {
  padding-top: 56px;
  max-width: 960px;
  margin: 0 auto;
}
.nav-logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo .arrow-line {
  position: absolute;
  left: 100%;
  top: 50%;
  height: 1.5px;
  background: var(--white);
  transform-origin: left center;
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-logo .arrow-line::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 7px solid var(--white);
}
.nav-logo:hover .arrow-line,
.nav-logo.arrow-in .arrow-line { clip-path: inset(0 0 0 0); }
.nav-logo.arrow-out .arrow-line {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-logo .reg { font-size: 9px; vertical-align: super; }

.nav-items {
  display: flex;
  gap: 32px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  align-items: center;
  position: relative;
}
.nav-items > a {
  transition: opacity 0.2s, visibility 0.2s;
}
.nav-items a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-items a:hover { color: var(--white); }
.nav-items .active { color: var(--white); font-weight: 700; }

.nav-slide-wrap {
  overflow: hidden;
  height: 48px;
  position: relative;
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 48px;
  position: relative;
  top: 0;
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-slide-wrap.open .nav-row {
  top: -48px;
}
.nav-row a, .nav-row span {
  font-size: 12px;
  color: var(--gray-light);
  text-decoration: none;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-row a:hover { color: var(--white); }
.has-dropdown {
  cursor: pointer;
}
.has-dropdown::after { content: ' \25BE'; font-size: 10px; }

.nav-cta-wrap {
  position: relative;
  margin-left: 16px;
}
.nav-cta {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--dark);
  color: var(--dark);
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
  user-select: none;
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.findme-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  min-width: 220px;
  background: var(--black);
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0.6);
  transform-origin: top right;
  transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1),
              transform 0.3s cubic-bezier(0.4,0,0.2,1),
              visibility 0s 0.3s;
  z-index: 100;
}
.nav-cta-wrap:hover .findme-dropdown {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1),
              transform 0.3s cubic-bezier(0.4,0,0.2,1),
              visibility 0s 0s;
}
.findme-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  text-transform: none;
}
.findme-dropdown a:last-child { border-bottom: none; }
.findme-dropdown a:hover { background: var(--dark-2); }
.fm-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ===== Hero (P1 only) ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(46,91,255,0) 0%, var(--accent) 40%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding: 0 48px;
  color: #fff;
  overflow: hidden;
}
.hero-brand {
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 900;
  letter-spacing: -0.05cap;
  color: #fff;
  line-height: 0.85;
  position: absolute;
  bottom: 80px;
  left: 48px;
  display: flex;
  align-items: flex-end;
}
.hero-star {
  display: inline-block;
  opacity: 0;
  animation: starIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  will-change: transform, opacity;
}
.hero-text {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  animation: textReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
  will-change: clip-path;
}
@keyframes starIn {
  from { opacity: 0; transform: scale(0.7) rotate(-30deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes textReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}
.hero-tagline {
  position: absolute;
  top: 40%;
  right: 48px;
  text-align: right;
}
.hero-micro {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.6);
}
.hero-micro-zh {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}
.hero-ticker {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-family: "Doto", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "ROND" 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-scroll {
  position: absolute;
  bottom: 48px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-scroll-arrow {
  font-size: 36px;
  line-height: 1;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ===== Parallax (P1) ===== */
.parallax-wrap {
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 1;
  --overlay-opacity: 1;
}
.parallax-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}
/* Blue overlay for dissolve transition */
.parallax-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(46,91,255,0.6) 100%);
  opacity: var(--overlay-opacity);
  pointer-events: none;
  z-index: 2;
}

/* Showreel video progress bar (display-only) */
.showreel-progress {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.12);
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}
.showreel-progress-fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  will-change: width;
}

/* ===== Services (P1) ===== */
.services-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 2;
  background: var(--black);
  color: var(--dark);
  min-height: 100vh;
  /* full-bleed background, inner content capped at 1200px */
  padding-inline: max(0px, calc((100% - 1200px) / 2));
}
.services-nav {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 48px;
}
.services-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.svc-nav-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.4s ease;
  cursor: pointer;
}
.svc-nav-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(46,91,255,0.25);
  transition: color 0.4s ease;
}
.svc-nav-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(46,91,255,0.15);
  transition: color 0.4s ease;
  line-height: 1.2;
}
.svc-nav-en {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: transparent;
  transition: color 0.4s ease;
}
.svc-nav-item.active .svc-nav-num { color: var(--accent); }
.svc-nav-item.active .svc-nav-title { color: var(--accent); }
.svc-nav-item.active .svc-nav-en { color: rgba(46,91,255,0.5); }
.svc-nav-item:hover .svc-nav-title { color: rgba(46,91,255,0.4); }
.svc-nav-item.active:hover .svc-nav-title { color: var(--accent); }

.services-panels {
  padding: 0 48px;
  display: flex;
  flex-direction: column;
}
.svc-panel {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}
.svc-panel-en {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.svc-panel-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 40px;
}
.svc-panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.svc-panel-list li {
  font-size: 15px;
  color: var(--gray);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.svc-panel-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent);
  transition: opacity 0.3s;
}
.svc-panel-link:hover { opacity: 0.6; }

/* ===== Stats Row ===== */
.stats-row {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 48px;
  background: var(--black);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 3;
}
.stat {
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.stat:nth-child(2) { transition-delay: 0.1s; }
.stat:nth-child(3) { transition-delay: 0.2s; }
.stats-row.in .stat { opacity: 1; transform: translateY(0); }
.stat-n {
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--accent);
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
}
.stat-l {
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--gray);
  margin-top: 20px;
}

/* ===== Page Title Block ===== */
.page-title-block {
  padding: 64px 48px 32px;
  background: var(--black);
  color: var(--white);
}
.page-title-block .en {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-title-block h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

/* ===== Brand Grid (P2) ===== */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 64px 48px;
  background: var(--black);
}
.brand-card {
  aspect-ratio: 4/3;
  background: var(--dark-2);
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}
.brand-card:hover { border-color: var(--accent); }
.brand-card { isolation: isolate; }
.brand-card .img-label { font-size: 11px; color: var(--gray); }
.brand-card .hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 91, 255, 0.75);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 40px;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.brand-card:hover .hover-overlay {
  opacity: 1;
  transition: opacity 0.3s ease-in;
}
.brand-card .hover-title { font-size: 28px; font-weight: 900; margin-bottom: 8px; }
.brand-card .hover-meta { font-size: 11px; opacity: 0.8; letter-spacing: 0.15em; text-transform: uppercase; }
.brand-card .bc-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
  z-index: 1;
  transition: opacity 0.3s;
}
.brand-card:hover .bc-tag { opacity: 0; }
.brand-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease-out, filter 0.5s ease-out;
  transform-origin: center center;
  transform: scale(1);
  filter: blur(0);
  will-change: transform, filter;
}
.brand-card.has-img:hover .brand-card-img {
  transform: scale(1.25);
  filter: blur(5px);
  transition: transform 0.3s ease-in, filter 0.3s ease-in;
}

/* DESIGN page: 3-col grid + tighter cards for 15-item layout */
.brand-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.brand-grid.cols-3 .brand-card { aspect-ratio: 1/1; }
@media (max-width: 720px) {
  .brand-grid.cols-3 { grid-template-columns: 1fr; }
}

/* ===== Article Layout (P3) ===== */
.article-layout {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  min-height: 400px;
  position: relative;
}
.article-sidebar {
  position: fixed;
  top: 160px;
  left: calc(50% - 730px);
  width: 160px;
  z-index: 5;
  background: transparent;
  padding: 0;
  border: 0;
}
.article-sidebar h4 {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 20px;
}
.article-sidebar a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-light);
  text-decoration: none;
  border: 0;
  transition: color 0.25s ease;
}
.article-sidebar a:hover { color: var(--accent); }
.article-sidebar a.current { color: var(--white); font-weight: 600; }
.article-main { width: 100%; }
@media (max-width: 1500px) {
  .article-sidebar { display: none; }
}
.article-back {
  padding: 16px 48px;
  font-size: 12px;
  color: var(--blog-text-muted);
  border-bottom: 1px solid var(--blog-border);
  background: var(--blog-bg);
  letter-spacing: 0.1em;
}
.article-back a { color: var(--blog-text-muted); text-decoration: none; }
.article-back a:hover { color: var(--accent); }
.article-carousel-top {
  background: var(--dark-2);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  margin: 16px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray);
  font-size: 12px;
  position: relative;
}
.article-carousel-top .drag-hint {
  position: absolute;
  bottom: 16px;
  right: 24px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.article-body-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding: 64px 48px 64px 0;
  background: var(--black);
  color: var(--white);
}
.article-meta-col {
  padding-right: 32px;
  border-right: 1px solid var(--border);
}
.article-meta-col h1 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 40px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.meta-row { margin-bottom: 24px; }
.meta-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.meta-value { font-size: 14px; color: var(--white); font-weight: 600; }
.article-text-col p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(0,0,0,0.5);
  margin-bottom: 24px;
}
.article-next {
  padding: 32px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--gray-light);
  background: var(--black);
  transition: color 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.article-next:hover { color: var(--accent); }

/* ===== Filter Bar + Work Grid (P4, P5) ===== */
.filter-bar {
  position: sticky;
  top: 56px;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 48px;
  display: flex;
  gap: 28px;
  z-index: 5;
}
.filter-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 4px 0;
  cursor: pointer;
  transition: color 0.3s;
  border: none;
  background: none;
  font-family: inherit;
}
.filter-tag:hover { color: var(--white); }
.filter-tag.active { color: var(--white); font-weight: 700; border-bottom: 2px solid var(--accent); }
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  padding: 64px 48px;
  background: var(--black);
}
.work-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s;
  color: var(--white);
  text-decoration: none;
}
.work-card:hover { border-color: var(--accent); }
.work-card.video { aspect-ratio: 16/9; }
.work-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
}
.work-card-title { font-size: 13px; font-weight: 700; }

/* ===== About (P6) ===== */
.about-hero {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--black);
  color: var(--white);
}
.about-photo {
  aspect-ratio: 3/4;
  background: var(--dark-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray);
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-intro { display: flex; flex-direction: column; gap: 16px; }
.about-intro .about-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}
.about-intro h1 {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.about-intro p { font-size: 15px; line-height: 1.85; color: var(--gray-light); }
.about-intro p + p { margin-top: 6px; }
.awards-section {
  padding: 64px 48px;
  border-top: 1px solid var(--border);
  background: var(--black);
  color: var(--white);
}
.awards-section h2 { font-size: 28px; font-weight: 900; margin-bottom: 32px; }
.award-row {
  display: grid;
  grid-template-columns: 80px 1fr 160px;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  align-items: baseline;
  transition: background 0.2s;
}
.award-row:hover { background: var(--dark-2); }
.award-year { color: var(--gray); font-family: 'Inter', 'Noto Sans TC', sans-serif; font-feature-settings: 'tnum' 1; letter-spacing: 0.05em; }
.award-rank { color: var(--accent); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-align: right; }

/* ===== Blog List (P7) ===== */
.blog-list {
  padding: 64px 48px;
  background: var(--blog-bg);
  color: var(--blog-text);
}
.blog-list .blog-en {
  font-size: 11px;
  color: var(--blog-text-muted);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.blog-list h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  color: var(--blog-strong);
}
.blog-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--blog-border);
  align-items: baseline;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-row:hover { background: var(--blog-surface); }
.blog-row:hover .blog-title { color: var(--accent); }
.blog-date { font-size: 12px; color: var(--blog-text-muted); font-family: 'Inter', 'Noto Sans TC', sans-serif; font-feature-settings: 'tnum' 1; letter-spacing: 0.08em; }
.blog-title { font-size: 20px; font-weight: 700; transition: color 0.3s; color: var(--blog-strong); }

/* ===== Blog Article (P8) ===== */
.blog-article-header {
  padding: 96px 48px 48px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  background: var(--blog-bg);
  color: var(--blog-strong);
  border-bottom: 1px solid var(--blog-border);
}
.blog-article-header h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--blog-strong);
}
.blog-article-meta {
  font-size: 11px;
  color: var(--blog-text-muted);
  letter-spacing: 0.15em;
}
.blog-article-body {
  padding: 32px 48px 96px;
  max-width: 760px;
  margin: 0 auto;
  background: var(--blog-bg);
  color: var(--blog-text);
}
.blog-toc {
  position: fixed;
  top: 160px;
  left: max(24px, calc(50% - 632px));
  width: 220px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  overflow-x: hidden;
  font-family: 'Noto Sans TC', 'Inter', sans-serif;
  z-index: 5;
}
.blog-toc ul { list-style: none; padding: 0; margin: 0; }
.blog-toc li { margin: 0; }
.blog-toc a {
  display: block;
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--blog-text-muted);
  text-decoration: none;
  word-break: break-word;
  transition: padding-left 0.45s cubic-bezier(.4,0,.2,1), color 0.35s ease;
}
.blog-toc:hover a { padding-left: 32px; }
.blog-toc a.active { padding-left: 36px; }
.blog-toc:hover a.active { padding-left: 40px; }
.blog-toc a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 12px;
  height: 2px;
  background: var(--blog-line);
  transition: width 0.45s cubic-bezier(.4,0,.2,1), background 0.35s ease;
}
.blog-toc a > span {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.45s cubic-bezier(.4,0,.2,1);
  transition-delay: 0s;
}
.blog-toc:hover a > span {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.05s;
}
.blog-toc:hover a::before { width: 20px; }
.blog-toc a:hover { color: var(--blog-strong); }
.blog-toc a:hover::before { background: var(--blog-strong); }
.blog-toc a.active { color: var(--blog-strong); font-weight: 700; }
.blog-toc a.active::before { background: var(--blog-strong); width: 24px; }
.blog-toc:hover a.active::before { width: 28px; }
@media (max-width: 1264px) {
  .blog-toc { display: none; }
}
.blog-article-body p,
.blog-article-body ul,
.blog-article-body ol {
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--blog-text);
  text-align: left;
  margin: 8px 0;
  padding: 8px 0;
}
.blog-article-body ul,
.blog-article-body ol { padding-left: 1.5em; }
.blog-article-body ul { list-style: disc; }
.blog-article-body ol { list-style: decimal; }
.blog-article-body li { margin-bottom: 8px; }
.blog-article-body li > p { padding: 0; margin: 0; }
.blog-article-body h2 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  margin: 40px 0 16px;
  color: var(--blog-strong);
}
.blog-article-body h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  margin: 28px 0 12px;
  color: var(--blog-strong);
}
.blog-article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 24px auto;
  border-radius: 4px;
}
.photo-zoom {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.blog-article-body .photo-zoom { margin: 24px auto; }
.photo-zoom img {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 0;
  transform-origin: center center;
  transition: transform 0.15s ease-out;
  will-change: transform;
}
.photo-zoom.leaving img {
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

/* About-page easter egg */
.about-photo img.shake {
  animation: aboutShake 0.5s ease-in-out;
}
@keyframes aboutShake {
  0%, 100% { transform: translate(0) rotate(0); }
  15%  { transform: translate(-8px, 0) rotate(-2.5deg); }
  30%  { transform: translate(8px, 0)  rotate(2.5deg); }
  45%  { transform: translate(-6px, 0) rotate(-1.8deg); }
  60%  { transform: translate(6px, 0)  rotate(1.8deg); }
  80%  { transform: translate(-3px, 0) rotate(-0.6deg); }
}
.falling-photo {
  position: fixed;
  z-index: 1000;
  pointer-events: none;
  will-change: transform;
  border-radius: 4px;
}
.about-photo.has-cat {
  background: transparent;
  border: 0;
}
.about-photo.has-cat .photo-zoom { width: 60%; }
.easter-cat {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  animation: catWiggle 0.1s linear infinite;
  will-change: transform;
}
@keyframes catWiggle {
  0%   { transform: translate(-2px, -1px) rotate(-1.2deg); }
  20%  { transform: translate(2px,  1px) rotate(1.2deg);  }
  40%  { transform: translate(-2px, 2px) rotate(-0.8deg); }
  60%  { transform: translate(2px, -2px) rotate(1deg);   }
  80%  { transform: translate(-1px, 1px) rotate(-0.6deg); }
  100% { transform: translate(-2px, -1px) rotate(-1.2deg); }
}
.about-photo .photo-zoom.has-cat { overflow: visible; }
.blog-article-body a { color: var(--blog-link); text-decoration: underline; text-underline-offset: 3px; transition: color 0.4s ease; }
.blog-article-body b, .blog-article-body strong { color: var(--blog-strong); font-weight: 700; }

/* ===== Footer / Contact ===== */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--accent);
  color: #fff;
  padding: 96px 64px;
}
.contact-label {
  font-family: "Doto", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "ROND" 0;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
.contact-email {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.contact-email a { color: #fff; text-decoration: none; transition: opacity 0.3s; }
.contact-email a:hover { opacity: 0.7; }
.contact-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 56px;
  border: 1px solid #fff;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.contact-cta:hover { background: #fff; color: var(--accent); }
/* Landing-only: full-viewport contact + FIND ME dropdown */
body.landing .contact {
  min-height: 100vh;
  padding: 96px 64px;
  justify-content: center;
}
.contact-findme {
  position: relative;
  margin-top: 40px;
  display: inline-block;
}
.contact-findme .contact-cta {
  margin-top: 0;
  cursor: pointer;
}
.contact-findme-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 12px;
  min-width: 240px;
  background: #fff;
  color: var(--accent);
  border: 1px solid #fff;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) scaleY(0.6);
  transform-origin: top center;
  transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1),
              transform 0.3s cubic-bezier(0.4,0,0.2,1),
              visibility 0s 0.3s;
  z-index: 10;
}
.contact-findme:hover .contact-findme-dropdown,
.contact-findme:focus-within .contact-findme-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scaleY(1);
  transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1),
              transform 0.3s cubic-bezier(0.4,0,0.2,1),
              visibility 0s 0s;
}
.contact-findme-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(46,91,255,0.12);
  transition: background 0.2s;
}
.contact-findme-dropdown a:last-child { border-bottom: none; }
.contact-findme-dropdown a:hover { background: rgba(46,91,255,0.08); }
.contact-findme-dropdown .fm-icon { font-size: 15px; line-height: 1; }
.contact-copyright {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-top: 64px;
  letter-spacing: 0.15em;
}

/* ===== Carousel Dots ===== */
.dots { display: flex; gap: 6px; justify-content: center; margin-top: 16px; }
.dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--gray); display: block; }
.dots span.on { background: var(--dark); }

/* ===== Hamburger button (mobile only — hidden on desktop) ===== */
.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: -4px -8px -4px 0;
  cursor: pointer;
  position: relative;
  z-index: 102;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -webkit-appearance: none;
  appearance: none;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  margin: 5px auto;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
body.nav-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =====================================================================
   Mobile RWD — clean rewrite (2026-05)
   Strategy: each section is full-bleed with a deliberate background color,
   so iOS 26 Liquid Glass toolbar sampling produces an intentional tint
   instead of fighting it with overlays. Nav auto-hides on scroll-down.
   ===================================================================== */
@media (max-width: 768px) {

  /* ---------- Nav: 56px fixed top, default shown, auto-hide on scroll-down ---------- */
  .nav {
    padding: 14px 20px;
    height: 56px;
    min-height: 0;
    z-index: 101;
    background: var(--black);
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  body.nav-hide .nav { transform: translateY(-100%); }
  body.nav-open .nav { transform: translateY(0); }
  .nav-logo { font-size: 13px; }
  .nav-logo .arrow-line { display: none; }
  .nav-burger { display: block; }
  body.inner-page main { padding-top: 56px; }

  /* Hamburger fullscreen overlay */
  .nav-items { display: none; }
  .nav-items.open {
    display: flex;
    position: fixed;
    inset: 0;
    height: 100vh; height: 100dvh;
    background: var(--black);
    flex-direction: column; justify-content: center; align-items: stretch;
    padding: 88px 32px 40px;
    z-index: 100;
    overflow-y: auto;
  }
  body.nav-open { overflow: hidden; }
  .nav-slide-wrap, .nav-slide-inner { all: unset; display: contents; }
  .nav-row {
    display: flex; flex-direction: column;
    align-items: flex-start; gap: 0;
    width: 100%; height: auto;
  }
  .nav-row:first-child { order: 2; margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); }
  .nav-row:last-child { order: 1; }
  .nav-cta-wrap { order: 3; }
  .nav-row .has-dropdown { display: none !important; }
  .has-dropdown::after { display: none; }
  .nav-row::before {
    display: block;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.25em; color: var(--gray);
    text-transform: uppercase;
    padding: 0 0 16px; margin-bottom: 4px;
  }
  .nav-row:last-child::before { content: "WORK"; }
  .nav-row:first-child::before { content: "MORE"; }
  .nav-row a {
    color: var(--white);
    padding: 10px 0;
    text-transform: uppercase;
    width: 100%; text-align: left;
  }
  .nav-row:last-child a { font-size: 28px; font-weight: 800; letter-spacing: -0.01em; }
  .nav-row:first-child a { font-size: 22px; font-weight: 700; }
  .nav-cta-wrap { margin: 32px 0 0; width: 100%; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); }
  .nav-cta-wrap::before {
    content: "CONTACT";
    display: block;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.25em; color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .nav-cta {
    display: block; padding: 16px 0;
    font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
    border: 1px solid var(--white); text-align: center;
    width: 100%; color: var(--white);
  }
  .nav-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }
  .findme-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: 0; margin-top: 16px;
    min-width: 0; box-shadow: none;
    display: flex; flex-direction: column;
  }
  .findme-dropdown a {
    border-bottom: 0; justify-content: flex-start;
    font-size: 14px; padding: 10px 0; color: var(--gray-light);
  }

  /* ---------- Hero (landing) ---------- */
  .hero {
    padding: 0 20px;
    min-height: 100vh; min-height: 100dvh;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    position: relative;
  }
  .hero-brand {
    font-size: clamp(72px, 22vw, 140px);
    bottom: 96px; left: 20px;
  }
  .hero-tagline {
    top: auto; bottom: 200px; right: 20px;
    padding: 0;
  }
  .hero-micro { font-size: 10px; }
  .hero-micro-zh { font-size: 11px; }
  .hero-ticker {
    padding: 12px 0; gap: 12px; font-size: 9px;
    flex-wrap: nowrap; overflow: hidden; white-space: nowrap;
  }
  .hero-ticker > * { flex: 0 0 auto; }
  .hero-scroll { bottom: 72px; right: 20px; font-size: 10px; }
  .hero-scroll-arrow { font-size: 28px; }
  /* Landing: nav stays out of hero so the blue dominates */
  body.landing .nav { background: transparent; border-bottom: 0; }
  body.landing.nav-open .nav { background: var(--black); }
  body.landing .nav-logo { mix-blend-mode: difference; color: var(--white); }
  body.landing .nav-burger span { background: #fff; }

  /* ---------- Parallax video (landing) ---------- */
  .parallax-video { height: 60vh; }

  /* ---------- Services (landing) ---------- */
  .services-section {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: 48px 20px;
    gap: 0;
  }
  .services-nav { display: none; }
  .services-panels { padding: 0; gap: 16px; }
  .svc-panel {
    min-height: auto;
    padding: 28px 24px;
    border: 1px solid var(--border);
    background: var(--dark-2);
    border-radius: 4px;
    margin-bottom: 16px;
    justify-content: flex-start;
  }
  .svc-panel:last-child { margin-bottom: 0; }
  .svc-panel-en { font-size: 10px; margin-bottom: 8px; }
  .svc-panel-title { font-size: 26px; margin-bottom: 20px; }
  .svc-panel-list { margin-bottom: 24px; }
  .svc-panel-list li { font-size: 14px; padding: 12px 0; }
  .svc-panel-link { font-size: 12px; }

  /* ---------- Stats row (landing) ---------- */
  .stats-row { padding: 56px 24px; gap: 36px; grid-template-columns: minmax(0, 1fr); }
  .stat-n { font-size: clamp(72px, 22vw, 110px); line-height: 1; }
  .stat-l { font-size: 12px; letter-spacing: 0.25em; margin-top: 10px; }

  /* ---------- Page title block (inner pages) ---------- */
  .page-title-block {
    padding: 48px 20px 24px;
    background: var(--black);
    border-bottom: 1px solid var(--border);
  }
  .page-title-block .en { font-size: 11px; letter-spacing: 0.25em; }
  .page-title-block h2 { font-size: clamp(36px, 10vw, 56px); }

  /* ---------- Filter bar (design / shortform) ---------- */
  /* Not sticky on mobile — scrolls with content. Prevents sticky-overlap glitches. */
  .filter-bar {
    position: static;
    padding: 16px 20px;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: var(--black);
    border: 0;
    border-bottom: 1px solid var(--border);
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-tag {
    font-size: 13px;
    flex: 0 0 auto;
    padding: 8px 0;
    border: 0;
    background: transparent;
  }

  /* ---------- Brand cards (design grid) ---------- */
  /* Edge-to-edge single column. Each card fills its own width with the work's color,
     so when scrolled into view the iOS toolbar samples that color naturally. */
  .brand-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 0;
    gap: 0;
    background: var(--black);
  }
  .brand-card,
  .brand-grid.cols-3 .brand-card {
    aspect-ratio: 4/5;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .brand-card .bc-tag {
    top: 16px; left: 16px;
    font-size: 10px; color: #fff;
    background: rgba(0,0,0,0.4);
    padding: 6px 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .brand-card .hover-title { font-size: 22px; }

  /* ---------- Work grid (film / shortform) ---------- */
  .work-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 0; gap: 0;
  }

  /* ---------- Landing contact ---------- */
  body.landing .contact { padding: 64px 24px; min-height: 100vh; min-height: 100dvh; }
  .contact-findme { display: block; margin-top: 32px; width: 100%; }
  .contact-findme .contact-cta { display: block; width: 100%; text-align: center; padding: 16px 0; }
  .contact-findme-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    margin-top: 16px; min-width: 0;
    background: transparent; border: 0; color: #fff;
  }
  .contact-findme-dropdown a {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    justify-content: center; padding: 14px 8px;
  }
  .contact-findme-dropdown a:last-child { border-bottom: 0; }
  .contact-findme-dropdown a:hover { background: rgba(255,255,255,0.08); }

  /* ---------- Article layout (case study pages) ---------- */
  .article-layout { padding: 24px 20px; }
  .article-sidebar { display: none; }
  .article-back { margin-bottom: 16px; font-size: 13px; }
  .article-carousel-top { padding: 24px 16px; }
  .article-body-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px; padding: 40px 0; border-right: 0;
  }
  .article-meta-col { padding-right: 0; border-right: 0; }
  .article-meta-col h1 { font-size: 36px; word-break: keep-all; }
  .meta-row { margin-bottom: 16px; }
  .article-text-col p { font-size: 14px; }

  /* ---------- About ---------- */
  .about-hero { grid-template-columns: minmax(0, 1fr); gap: 32px; padding: 48px 20px; }
  .about-intro h1 { font-size: clamp(40px, 10vw, 56px); }
  .about-intro p { font-size: 14px; }
  .awards-section { padding: 32px 20px; }
  .awards-section h2 { font-size: 22px; margin-bottom: 24px; }
  .award-row { grid-template-columns: 60px 1fr; gap: 12px; padding: 14px 0; font-size: 13px; }
  .award-row .award-rank { grid-column: 2; opacity: 0.6; font-size: 11px; }

  /* ---------- Blog ---------- */
  .blog-row { grid-template-columns: 80px 1fr; padding: 14px 20px; font-size: 13px; }

  /* ---------- XD project carousel ---------- */
  .xd-carousel-btn { width: 36px; height: 36px; font-size: 14px; }
  .xd-carousel-btn.prev { left: 8px; }
  .xd-carousel-btn.next { right: 8px; }
  .xd-carousel-counter { font-size: 9px; padding: 4px 8px; bottom: 8px; right: 12px; }
  .xd-carousel-dots { bottom: 8px; }
  .xd-thumbs { gap: 6px; margin-bottom: 32px; }
  .xd-thumb { flex: 0 0 64px; height: 44px; }

  /* ---------- Footer / Contact section ---------- */
  .contact { padding: 64px 20px; }
  .contact-label { font-size: 12px; margin-bottom: 24px; }
  .contact-cta { margin-top: 32px; padding: 14px 36px; }
  .contact-copyright { margin-top: 48px; }
}

@media (max-width: 480px) {
  .nav { padding: 10px 16px; }
  .nav-items.open .nav-row:last-child a { font-size: 24px; }
  .nav-items.open .nav-row:first-child a { font-size: 18px; }
  .nav-items.open .nav-cta { padding: 14px 0; font-size: 11px; }
  .hero-brand { font-size: clamp(48px, 16vw, 88px); }
  .hero-tagline { padding: 16px; }
  .page-title-block h2 { font-size: clamp(32px, 12vw, 48px); }
  .article-meta-col h1 { font-size: 28px; }
  .about-intro h1 { font-size: clamp(36px, 12vw, 52px); }
  .contact-email { font-size: clamp(22px, 6vw, 32px); }
}

/* ===== Section Label (FILM 區隔 / SHORTS 區隔) ===== */
.section-label {
  background: var(--black);
  color: var(--white);
  padding: 56px 48px 8px;
  border-top: 1px solid var(--border);
}
.section-label span {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

/* ===== FILM Photo Grid ===== */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  padding: 48px 48px 80px;
  background: var(--black);
}
.photo-theme {
  aspect-ratio: 4/5;
}
.photo-sub {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ===== SHORTS Client Wall ===== */
.client-wall {
  padding: 64px 48px 32px;
  background: var(--black);
  color: var(--white);
}
.client-wall-header { margin-bottom: 32px; }
.cw-en {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.client-wall-header h3 { font-size: 28px; font-weight: 900; }
.client-wall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.client-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 140px;
  transition: border-color 0.3s;
}
.client-card:hover { border-color: var(--accent); }
.client-name { font-size: 20px; font-weight: 900; }
.client-industry {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 12px;
}

/* ===== ABOUT Teaching Section ===== */
.teaching-section {
  padding: 80px 48px;
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--border);
}
.teaching-header { margin-bottom: 48px; }
.teaching-en {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.teaching-header h2 { font-size: 32px; font-weight: 900; }
.teaching-group { margin-bottom: 40px; }
.teaching-group-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.teaching-list { list-style: none; padding: 0; margin: 0; }
.teaching-list li {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.t-host { font-weight: 700; }
.t-topic { color: var(--gray); }

@media (max-width: 720px) {
  .client-wall-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .teaching-list li { grid-template-columns: 1fr; gap: 4px; }
}
