/* ============================================================
   鉑點設計 BODIN — Portfolio
   Theme: DARK LUXURY · 暗黑金奢
   near-black + champagne gold + elegant serif
   ============================================================ */

/* 字體改由各頁 HTML <head> 的 <link> 載入（比 @import 快，避免阻塞渲染） */

:root {
  --bg:        #f2f2f2;   /* 淺灰 — main background */
  --bg-soft:   #e3e2de;   /* 米色 — alternating soft sections */
  --panel:     #e8e7e2;   /* light neutral — cards / figures */
  --ink:       #3b3a36;   /* 深灰 — text (加深，較好閱讀) */
  --muted:     #565449;   /* muted gray-beige — secondary text (加深) */
  --line:      rgba(94,94,94,.18);
  --line-2:    rgba(94,94,94,.32);
  --accent:    #bbac72;   /* 金色 champagne gold */
  --accent-2:  #cabd83;   /* brighter gold — hover */
  --accent-dk: #9a8d5a;
  --dark:      #3a382f;   /* dark warm — text on gold / dark accents */

  /* display/headings = grotesque; 中文 fallback 到 Noto Sans TC 粗字重 */
  --font-serif: "DM Sans", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --font-zh:    "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --font-label: "DM Sans", "Noto Sans TC", sans-serif;

  --maxw: 1440px;
  --pad: clamp(20px, 5vw, 70px);
  --nav-h: 82px;
  --ease: cubic-bezier(.19,1,.22,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-zh);
  font-weight: 300;
  font-size: 16.5px;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { line-height: 1.1; margin: 0; font-weight: 500; font-family: var(--font-serif); }

/* film grain overlay — removed for clean light theme */

.en, .label { font-family: var(--font-label); letter-spacing: .02em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* selection */
::selection { background: var(--accent); color: var(--dark); }

/* ---------- Custom cursor (replaces the native arrow on desktop) ---------- */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, .card, .svc-item, .filters button, .lb-close, label { cursor: none; }
  input, textarea, select { cursor: auto; }   /* keep a caret for typing */
}
.cur-blend {
  position: fixed; top: 0; left: 0; width: 28px; height: 28px; border-radius: 50%;
  background: #f0e9d6; mix-blend-mode: difference; pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%); opacity: 0; will-change: transform;
  transition: width .4s var(--ease), height .4s var(--ease), opacity .3s var(--ease);
}
.cur-blend.show { opacity: 1; }
.cur-blend.big { width: 68px; height: 68px; }
.cur-blend.press { width: 18px; height: 18px; }
@media (hover: none), (max-width: 900px) { .cur-blend { display: none; } }

/* ---------- Intro loader ---------- */
.intro {
  position: fixed; inset: 0; z-index: 10001; background: var(--bg);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 22px;
  transition: opacity .9s var(--ease), visibility .9s;
}
.intro.done { opacity: 0; visibility: hidden; }
.intro .mark { height: 50px; width: auto; animation: floaty 2.4s ease-in-out infinite; }
.intro .word { font-family: var(--font-serif); letter-spacing: .22em; color: var(--ink); font-size: 15px; text-indent: .22em; text-align: center; padding: 0 20px; }
.intro .bar { width: 120px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.intro .bar::after { content:""; position:absolute; inset:0; background: var(--accent); transform: translateX(-100%); animation: load 1.3s var(--ease) forwards; }
@keyframes load { to { transform: translateX(0); } }
@keyframes floaty { 0%,100%{ transform: translateY(-3px);} 50%{ transform: translateY(3px);} }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center; color: var(--ink);
  transition: background .5s var(--ease), box-shadow .5s var(--ease), height .4s var(--ease);
}
.nav.scrolled {
  background: rgba(242,242,242,.82);
  backdrop-filter: saturate(1.3) blur(16px);
  box-shadow: 0 1px 0 var(--line);
  height: 68px;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .mark { height: 50px; width: auto; flex: 0 0 auto; display: block; }
.brand .name { font-family: var(--font-serif); font-size: 22px; letter-spacing: .05em; font-weight: 500; line-height: 1.02; }
.brand .name small { display:block; font-family: var(--font-label); font-size: 10.2px; letter-spacing: .14em; color: var(--muted); font-weight: 500; text-indent: .14em; margin-top: 2px; line-height: 1; }

.menu { display: flex; align-items: center; gap: clamp(16px, 2.6vw, 42px); }
.menu a {
  font-family: var(--font-label); font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  position: relative; padding: 8px 0; font-weight: 400; color: var(--muted); transition: color .3s;
}
.menu a:hover, .menu a.active { color: var(--ink); }
.menu a::after {
  content:""; position:absolute; left:0; right:100%; bottom:2px; height:1px;
  background: var(--accent); transition: right .4s var(--ease);
}
.menu a:hover::after, .menu a.active::after { right: 0; }
.menu a .zh { font-family: var(--font-zh); font-weight: 400; letter-spacing: .04em; color: var(--muted); text-transform: none; transition: color .3s; }
.menu a:hover .zh, .menu a.active .zh { color: var(--ink); }

.nav-toggle { display: none; background: none; border: 0; color: inherit; padding: 6px; }
.nav-toggle span { display:block; width: 24px; height: 1.5px; background: currentColor; margin: 6px 0; transition: .3s var(--ease); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; background: var(--bg-soft); color: var(--ink);
  display: flex; align-items: flex-end; position: relative; overflow: hidden;
}
.hero::before {
  content:""; position:absolute; top:-20%; right:-10%; width: 70vw; height: 70vw; border-radius:50%;
  background: radial-gradient(circle, rgba(194,168,120,.14), transparent 62%); pointer-events:none;
}
.hero .wrap { width: 100%; padding-top: calc(var(--nav-h) + 40px); padding-bottom: clamp(50px, 9vh, 120px); position: relative; z-index: 2; }
.hero .kicker { font-family: var(--font-label); letter-spacing: .22em; font-size: 12px; color: var(--accent); margin-bottom: 30px; text-transform: uppercase; }
.hero h1 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(52px, 12vw, 184px); line-height: .88; letter-spacing: -.03em;
  text-transform: uppercase; color: var(--ink);
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .rule { width: 64px; height: 1px; background: var(--accent); margin: 34px 0 26px; }
.hero .lead { max-width: 560px; color: var(--muted); font-size: clamp(16px,1.75vw,19px); font-weight: 300; line-height: 1.85; }
.hero .scroll-cue { position: absolute; left: var(--pad); bottom: 30px; font-family: var(--font-label); font-size: 10px; letter-spacing: .34em; color: var(--muted); writing-mode: vertical-rl; z-index: 2; }
.hero .scroll-cue::after { content:""; display:block; width:1px; height:40px; background: linear-gradient(var(--accent),transparent); margin: 12px auto 0; }

/* ---------- Sections ---------- */
.section { padding: clamp(80px, 12vh, 160px) 0; position: relative; }
.section.soft { background: var(--bg-soft); }
.sec-head { display:flex; align-items:flex-end; justify-content: space-between; gap: 30px; margin-bottom: clamp(40px,6vh,70px); flex-wrap: wrap; }
.sec-head .idx { font-family: var(--font-label); font-size: 12px; letter-spacing: .2em; color: var(--accent); text-transform: uppercase; margin-bottom: 16px; }
.sec-title { font-family: var(--font-serif); font-size: clamp(28px, 4.3vw, 58px); font-weight: 700; letter-spacing: -.02em; line-height: 1.04; }
.sec-title .en { display:block; font-family: var(--font-label); font-size: clamp(11px,1.2vw,13px); letter-spacing: .32em; color: var(--muted); font-weight: 400; margin-top: 14px; text-transform: uppercase; }
.sec-sub { max-width: 440px; color: var(--muted); font-size: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display:inline-flex; align-items:center; gap:14px; padding: 16px 34px; border-radius: 999px;
  font-family: var(--font-label); font-weight: 400; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--line-2); color: var(--ink); background: transparent;
  transition: .45s var(--ease);
}
.btn:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); gap: 20px; }
.btn.light { border-color: var(--line-2); color: var(--ink); }
.btn.light:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.btn.solid { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.btn.solid:hover { background: var(--accent-2); border-color: var(--accent-2); }
.btn .arw { transition: transform .45s var(--ease); }
.btn:hover .arw { transform: translateX(5px); }

/* ---------- Works grid ---------- */
.filters { display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 46px; }
.filters button {
  border: 1px solid var(--line); background: transparent; color: var(--muted);
  padding: 10px 20px; border-radius: 999px; font-family: var(--font-label); font-size: 12.5px;
  letter-spacing: .08em; transition: .3s var(--ease);
}
.filters button:hover { color: var(--ink); border-color: var(--line-2); }
.filters button.active { background: var(--accent); color: var(--dark); border-color: var(--accent); }

.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.6vw, 44px); }
.card { cursor: pointer; opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.card.in { opacity: 1; transform: none; }
.card .thumb {
  position: relative; overflow: hidden; background: var(--panel);
  aspect-ratio: 16/9; border-radius: 16px; border: 1px solid var(--line); transition: border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover .thumb { box-shadow: 0 14px 34px rgba(94,94,94,.14); }
.card .thumb img {
  width:100%; height:100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter .7s var(--ease);
  filter: brightness(.99) saturate(1);
}
.card:hover .thumb { border-color: var(--accent); }
.card:hover .thumb img { transform: scale(1.035); filter: brightness(1) saturate(1); }
.card .thumb::after {
  content:"VIEW"; position:absolute; left:50%; top:50%; transform: translate(-50%,-50%) scale(.9);
  font-family: var(--font-label); font-size: 11px; letter-spacing:.3em; color: var(--ink);
  padding: 12px 20px; border:1px solid var(--accent); border-radius:999px; background: rgba(242,242,242,.62);
  opacity:0; transition:.5s var(--ease); backdrop-filter: blur(2px);
}
.card:hover .thumb::after { opacity:1; transform: translate(-50%,-50%) scale(1); }
.card .meta { padding: 20px 2px 0; }
.card .meta .cat { font-family: var(--font-label); font-size: 11px; letter-spacing:.24em; color: var(--accent); text-transform: uppercase; }
.card .meta h3 { font-family: var(--font-serif); font-size: 24px; margin-top: 8px; font-weight: 500; letter-spacing:.01em; }
.card .meta .en-t { color: var(--muted); font-size: 12px; font-family: var(--font-label); letter-spacing:.08em; margin-top:4px; }

.more-wrap { text-align:center; margin-top: clamp(50px,7vh,80px); }

/* ---------- Lightbox ---------- */
.lb { position: fixed; inset: 0; z-index: 200; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .5s var(--ease), visibility .5s var(--ease); }
.lb.open { opacity: 1; visibility: visible; pointer-events: auto; }
.lb .backdrop { position:absolute; inset:0; background: rgba(242,242,242,.95); backdrop-filter: blur(6px); }
.lb .panel {
  position: relative; height:100%; max-width: 1320px; margin: 0 auto; display:flex; flex-direction: column;
  opacity: 0; transform: translateY(26px) scale(.985);
  transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: .06s;
}
.lb.open .panel { opacity: 1; transform: none; }
@keyframes lbIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.lb .lb-head { display:flex; align-items:center; justify-content: space-between; gap: 20px; padding: 26px var(--pad); color: var(--ink); flex: 0 0 auto; border-bottom: 1px solid var(--line); }
.lb .lb-head .cat { font-family: var(--font-label); font-size:11px; letter-spacing:.24em; color: var(--accent); text-transform:uppercase; }
.lb .lb-head h3 { font-family: var(--font-serif); font-size: 27px; margin-top: 6px; font-weight: 500; }
.lb .lb-close { background:none; border:0; color: var(--ink); font-size: 30px; line-height:1; padding: 4px 10px; border:1px solid var(--line); border-radius: 50%; width:46px; height:46px; transition:.3s var(--ease); }
.lb .lb-close:hover { border-color: var(--accent); color: var(--accent); transform: rotate(90deg); }
.lb .lb-body { flex: 1 1 auto; overflow: hidden; padding: 0; display: block; }
/* two-column: fixed intro on the left, scrolling images on the right */
.lb-cols { display: flex; height: 100%; gap: clamp(28px, 4vw, 56px); padding: 0 var(--pad); }
.lb-left { flex: 0 0 clamp(280px, 26vw, 360px); overflow-y: auto; padding: 34px 0 40px; animation: lbIn .6s var(--ease) both; animation-delay: .16s; }
.lb-right { flex: 1 1 auto; overflow-y: auto; padding: 34px 0 60px; display: flex; flex-direction: column; gap: 20px; }
.lb-right img { animation: lbIn .6s var(--ease) both; animation-delay: .34s; }
.lb-right img:nth-child(1) { animation-delay: .30s; }
.lb-right img:nth-child(2) { animation-delay: .38s; }
.lb-right img:nth-child(3) { animation-delay: .46s; }
.lb-right img:nth-child(4) { animation-delay: .54s; }
.lb-right img:nth-child(n+5) { animation-delay: .60s; }
.lb-right::-webkit-scrollbar, .lb-left::-webkit-scrollbar { width: 6px; }
.lb-right::-webkit-scrollbar-thumb, .lb-left::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 8px; }
.lb-left::-webkit-scrollbar { width: 0; }
.lb .lb-body img { width:100%; border-radius: 10px; background:var(--panel); border:1px solid var(--line); }
.lb-intro { padding: 0; }
.lb-intro .lb-label { font-family: var(--font-label); font-size: 11px; letter-spacing: .26em; color: var(--accent); text-transform: uppercase; }
.lb-concept { font-family: var(--font-serif); font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; color: var(--ink); line-height: 1.4; margin: 16px 0 18px; letter-spacing: .01em; }
.lb-story { color: var(--muted); font-size: 16.5px; line-height: 2; margin: 0; }

@media (max-width: 820px) {
  /* stack: intro on top, everything scrolls together */
  .lb .lb-body { overflow-y: auto; }
  .lb-cols { flex-direction: column; height: auto; gap: 0; padding: 0 var(--pad) 40px; }
  .lb-left { flex: none; overflow: visible; padding: 24px 0 22px; border-bottom: 1px solid var(--line); }
  .lb-right { overflow: visible; padding: 22px 0 0; }
  .lb-story { font-size: 14.5px; line-height: 1.9; }
}
.lb .lb-body::-webkit-scrollbar { width: 6px; }
.lb .lb-body::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 8px; }
body.locked { overflow: hidden; }

/* ---------- Services list ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc-item {
  display:grid; grid-template-columns: 90px 1fr auto; gap: 30px; align-items: baseline;
  padding: 34px 0; border-bottom: 1px solid var(--line); transition: .5s var(--ease);
}
.svc-item .no { font-family: var(--font-label); color: var(--accent); font-size: 13px; letter-spacing:.1em; }
.svc-item h3 { font-family: var(--font-serif); font-size: clamp(22px,2.6vw,34px); font-weight: 500; }
.svc-item h3 .en { display:block; font-family: var(--font-label); font-size: 11.5px; letter-spacing:.24em; color: var(--muted); margin-top:8px; text-transform: uppercase; }
.svc-item p { color: var(--muted); font-size: 14.5px; max-width: 360px; margin:0; }
.svc-item:hover { padding-left: 18px; }
.svc-item:hover h3 { color: var(--accent-2); }
.svc-item:hover .no { color: var(--accent-2); }

/* ---------- Steps ---------- */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap: clamp(20px,2.4vw,40px); }
.step .n { font-family: var(--font-serif); font-size: clamp(46px,5.5vw,76px); font-weight: 400; color: var(--accent); line-height:1; opacity:.85; }
.step h4 { font-family: var(--font-serif); font-size: 21px; margin: 18px 0 10px; font-weight:500; }
.step p { color: var(--muted); font-size: 14px; margin:0; }

/* ---------- Split ---------- */
.split { display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px,5vw,90px); align-items:center; }
.split .txt h2 { font-family: var(--font-serif); font-size: clamp(26px,3.2vw,44px); font-weight:700; margin-bottom: 22px; letter-spacing:-.01em; line-height:1.12; }
.split .txt p { color: var(--muted); margin-bottom: 18px; font-size: 16.5px; }
.split .txt p strong { color: var(--ink); font-weight: 500; }
.split .fig { border-radius: 16px; overflow:hidden; background: var(--panel); aspect-ratio: 16/9; border: 1px solid var(--line); }
.split .fig img { width:100%; height:100%; object-fit: cover; filter: brightness(1); transition: transform 1.2s var(--ease), filter .7s; }
.split .fig:hover img { transform: scale(1.05); filter: brightness(1); }

/* ---------- Stats ---------- */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { border-left: 1px solid var(--line); padding-left: 22px; }
.stat .num { font-family: var(--font-serif); font-size: clamp(44px,5.5vw,74px); font-weight: 400; letter-spacing:0; color: var(--ink); line-height:1; }
.stat .lab { color: var(--muted); font-size: 13px; margin-top: 10px; letter-spacing:.04em; }

/* ---------- CTA ---------- */
.cta { background: var(--accent); color: var(--dark); text-align:center; position: relative; overflow: hidden; }
.cta::before { content:""; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width: 80vw; height: 80vw; border-radius:50%; background: radial-gradient(circle, rgba(255,255,255,.20), transparent 60%); pointer-events:none; }
.cta .wrap { position: relative; z-index: 2; }
.cta h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(38px,6.5vw,92px); text-transform: uppercase; line-height:.92; letter-spacing:-.03em; color: var(--dark); }
.cta h2 em { font-style: normal; color: #fffdf6; }
.cta p { color:rgba(58,56,47,.82); max-width: 470px; margin: 26px auto 38px; }
.cta .btn.light { color: var(--dark); border-color: rgba(58,56,47,.42); }
.cta .btn.light:hover { background: var(--dark); color: var(--bg); border-color: var(--dark); }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,80px); }
.info-row { display:flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.info-row .k { font-family: var(--font-label); font-size:11px; letter-spacing:.24em; color: var(--accent); text-transform: uppercase; width: 100px; flex:0 0 auto; padding-top: 4px; }
.info-row .v { font-size: 16px; }
.form { display:grid; gap: 18px; }
.form label { font-family: var(--font-label); font-size: 11px; letter-spacing:.14em; color: var(--muted); text-transform: uppercase; }
.form input, .form textarea, .form select {
  width:100%; border:0; border-bottom: 1px solid var(--line-2); background: transparent;
  padding: 13px 2px; font-family: var(--font-zh); font-size: 15px; color: var(--ink); transition: border-color .4s;
}
.form input::placeholder, .form textarea::placeholder { color: #9a988f; }
.form input:focus, .form textarea:focus, .form select:focus { outline:none; border-color: var(--accent); }
.form select {
  -webkit-appearance:none; appearance:none; cursor:pointer; padding-right: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' fill='none' stroke='%23bbac72' stroke-width='1.5'/></svg>");
  background-repeat:no-repeat; background-position: right 2px center;
}
.form select option { color:#1a1a1a; background:#fff; }
.form .field { margin-bottom: 6px; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-soft); color: var(--muted); padding: clamp(64px,9vh,110px) 0 38px; border-top: 1px solid var(--line); }
.footer .top { display:flex; justify-content: space-between; gap:44px; flex-wrap: wrap; margin-bottom: 56px; }
.footer .big { font-family: var(--font-serif); font-weight: 700; font-size: clamp(34px,5vw,70px); color: var(--ink); text-transform: uppercase; line-height:.92; letter-spacing:-.02em; }
.footer .big span { color: var(--accent); }
.footer .cols { display:flex; gap: clamp(30px,5vw,72px); flex-wrap: wrap; }
.footer .col h5 { color: var(--accent); font-family: var(--font-label); font-size: 11px; letter-spacing:.24em; margin-bottom: 18px; font-weight: 500; text-transform: uppercase; }
.footer .col a, .footer .col p { display:block; color: var(--muted); font-size: 14px; margin: 9px 0; transition:.3s; }
.footer .col a:hover { color: var(--accent-2); }
.footer .bar { display:flex; justify-content: space-between; gap:20px; flex-wrap:wrap; border-top: 1px solid var(--line); padding-top: 26px; font-size: 12px; color: var(--muted); font-family: var(--font-label); letter-spacing:.08em; }

/* ---------- Reveal ---------- */
.reveal { opacity:0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity:1; transform:none; }

/* ---------- Page hero ---------- */
.page-hero { padding: calc(var(--nav-h) + clamp(60px,10vh,120px)) 0 clamp(50px,8vh,90px); background: var(--bg-soft); position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; top:-30%; right:-5%; width:60vw; height:60vw; border-radius:50%; background: radial-gradient(circle, rgba(194,168,120,.12), transparent 62%); pointer-events:none; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .idx { font-family: var(--font-label); letter-spacing:.2em; font-size:12px; color: var(--accent); margin-bottom: 20px; text-transform: uppercase; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(38px,6vw,94px); font-weight: 700; letter-spacing:-.03em; line-height:.92; text-transform: uppercase; }
.page-hero h1 .en { display:block; font-family: var(--font-label); font-size: clamp(11px,1.3vw,14px); letter-spacing:.32em; color: var(--muted); margin-top: 18px; text-transform: uppercase; }
.page-hero p { max-width: 580px; margin-top: 24px; color: var(--muted); font-size: clamp(16px,1.7vw,18px); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); gap: 34px; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 30px 20px; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-item { grid-template-columns: 46px 1fr; }
  .svc-item p { grid-column: 1/-1; }
  .menu { display: none; }
  .menu.open {
    display:flex; position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column;
    background: rgba(242,242,242,.98); backdrop-filter: blur(16px); padding: 22px var(--pad) 34px; gap: 2px; border-top: 1px solid var(--line);
  }
  .menu.open a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--ink); }
  .menu.open a .zh { display:inline; color: var(--muted); font-family: var(--font-zh); }
  .nav-toggle { display: block; }
  .footer .top { flex-direction: column; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}

/* ---------- Journal / Blog ---------- */
.posts { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,2.5vw,36px); }
.post { display: block; padding: 30px 30px 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--bg-soft); transition: .4s var(--ease); }
.post:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(94,94,94,.12); }
.post .post-meta { font-family: var(--font-label); font-size: 12px; letter-spacing: .12em; color: var(--accent); text-transform: uppercase; }
.post h3 { font-family: var(--font-serif); font-size: clamp(20px,2.2vw,26px); font-weight: 700; letter-spacing: -.01em; margin: 12px 0 12px; line-height: 1.25; }
.post p { color: var(--muted); font-size: 14.5px; margin: 0 0 18px; }
.post .post-more { font-family: var(--font-label); font-size: 13px; letter-spacing: .06em; color: var(--ink); }

.article { padding: calc(var(--nav-h) + clamp(40px,7vh,80px)) 0 clamp(50px,8vh,90px); }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 var(--pad); }
.article .back { font-family: var(--font-label); font-size: 13px; letter-spacing: .06em; color: var(--muted); display: inline-block; margin-bottom: 26px; transition: color .3s; }
.article .back:hover { color: var(--accent); }
.art-meta { font-family: var(--font-label); font-size: 12.5px; color: var(--muted); letter-spacing: .04em; margin-bottom: 16px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.art-meta .tag { border: 1px solid var(--line); border-radius: 999px; padding: 3px 12px; font-size: 11.5px; color: var(--accent); }
.article h1 { font-family: var(--font-serif); font-size: clamp(30px,4.6vw,52px); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; }
.article .lead { color: var(--ink); font-size: clamp(16px,1.9vw,19px); line-height: 1.75; margin: 22px 0 10px; font-weight: 300; }
.art-body { color: var(--ink); font-size: 17.5px; line-height: 2; }
.art-body h2 { font-family: var(--font-serif); font-size: clamp(22px,2.8vw,30px); font-weight: 700; letter-spacing: -.01em; color: var(--ink); margin: 46px 0 16px; }
.art-body h3 { font-family: var(--font-serif); font-size: clamp(18px,2.1vw,22px); font-weight: 600; color: var(--ink); margin: 30px 0 10px; }
.art-body p { margin: 0 0 20px; }
.art-body ul { margin: 0 0 22px; padding-left: 22px; }
.art-body li { margin: 9px 0; }
.art-body strong { color: var(--ink); font-weight: 600; }
.art-body a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.art-cta { margin-top: 54px; padding-top: 34px; border-top: 1px solid var(--line); text-align: center; }
.art-cta p { color: var(--muted); margin-bottom: 20px; }
@media (max-width: 720px) { .posts { grid-template-columns: 1fr; } }
