:root {
  --green: #3a5240;
  --green-dark: #2a3d30;
  --green-light: #5a7560;
  --sage: #7a9a6a;
  --clay: #8a5a30;
  --gold: #c69a4a;
  --cream: #f5f0e8;
  --cream-soft: #faf6ee;
  --taupe: #e8e0d0;
  --ink: #2a2a2a;
  --muted: #6a6a6a;
  --subtle: #6e6960;
  --border: #e2dccf;
  --serif: 'Spectral', 'Noto Serif TC', Georgia, serif;
  --serif-zh: 'Noto Serif TC', 'Spectral', serif;
  --sans: 'Hanken Grotesk', 'Noto Sans TC', system-ui, sans-serif;
  --gutter: 32px;
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.75;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: lining-nums;
  font-feature-settings: 'lnum' 1;
  text-wrap: pretty;
}
h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 400;
  font-variant-numeric: lining-nums;
  font-feature-settings: 'lnum' 1;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 2px; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--clay);
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 14px; font-weight: 400;
  letter-spacing: 0.03em; padding: 14px 26px; border-radius: 2px; white-space: nowrap;
  transition: background-color .25s ease, border-color .25s ease, color .25s ease; cursor: pointer; border: 1px solid transparent;
}
.btn-primary { background: var(--green); color: var(--cream-soft); }
.btn-primary:hover { background: var(--green-dark); }
.btn-ghost { border-color: var(--green); color: var(--green); background: transparent; }
.btn-ghost:hover { background: var(--green); color: var(--cream-soft); }
.btn-light { border-color: rgba(245,240,232,0.4); color: var(--cream-soft); }
.btn-light:hover { background: rgba(245,240,232,0.12); }
.btn-line { background: transparent; color: var(--green); border-color: var(--green); }
.btn-line:hover { background: var(--green); color: var(--cream-soft); border-color: var(--green); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* HEADER */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,240,232,0.96);
  border-bottom: 1px solid var(--border);
  transition: transform .45s cubic-bezier(0.16,1,0.3,1), background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
  will-change: transform;
}
header.is-scrolled { background: var(--cream); border-bottom-color: var(--border); }
header.is-hidden { transform: translateY(-100%); }
@media (prefers-reduced-motion: reduce) { header.is-hidden { transform: none; } }

/* 首頁：header 浮在深色 hero 上 — 預設無底色、淺色字；滾離 hero 才補實底＋深色字 */
body.home header { position: fixed; left: 0; right: 0; background: transparent; border-bottom-color: transparent; }
body.home header .brand { color: var(--cream-soft); text-shadow: 0 1px 12px rgba(0,0,0,0.4); transition: color .3s ease; }
body.home .nav-links a { color: rgba(245,240,232,0.9); text-shadow: 0 1px 10px rgba(0,0,0,0.35); }
body.home .nav-links a:hover, body.home .nav-links a.active { color: #fff; }
body.home .nav-toggle { color: var(--cream-soft); }
body.home header.is-scrolled { background: var(--cream); border-bottom-color: var(--border); }
body.home header.is-scrolled .brand { color: var(--green); text-shadow: none; }
body.home header.is-scrolled .nav-links a { color: var(--ink); text-shadow: none; }
body.home header.is-scrolled .nav-links a:hover, body.home header.is-scrolled .nav-links a.active { color: var(--green); }
body.home header.is-scrolled .nav-toggle { color: var(--green); }
/* 行動版選單展開：header 也跟著變實底 + 深色字（與下拉面板一致） */
body.home header.menu-open { background: var(--cream); border-bottom-color: transparent; }
body.home header.menu-open .brand { color: var(--green); text-shadow: none; }
body.home header.menu-open .nav-toggle { color: var(--green); }
.nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 68px; position: relative; }
.brand { grid-column: 1; justify-self: start; font-family: var(--serif); font-size: 25px; font-weight: 500; letter-spacing: 0.02em; color: var(--green); white-space: nowrap; }
.nav-links { grid-column: 2; justify-self: center; display: flex; gap: 34px; }
.nav-links a { font-size: 14px; letter-spacing: 0.04em; color: var(--ink); transition: color .2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-right { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; margin-right: -8px; background: none; border: none; cursor: pointer; color: var(--green); }
.nav-toggle svg { width: 22px; height: 22px; }

/* HERO */
.hero { padding: 88px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 64px; align-items: center; }
.hero h1 { font-size: 56px; line-height: 1.18; color: var(--green-dark); margin: 20px 0 14px; letter-spacing: 0; }
.hero-en { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--clay); margin-bottom: 22px; letter-spacing: 0.01em; }
.hero-sub { font-family: var(--serif-zh); font-size: 17px; font-weight: 400; line-height: 1.9; color: var(--muted); max-width: 30em; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img { aspect-ratio: 4/5; overflow: hidden; border-radius: 3px; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* PROOF STRIP — credentials, not stat-bar */
.proof { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--cream-soft); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 38px var(--gutter); }
.proof-item { padding-left: 22px; border-left: 1px solid var(--border); }
.proof-item:first-child { border-left: none; padding-left: 0; }
.proof-title { font-family: var(--serif); font-size: 19px; color: var(--green-dark); }
.proof-desc { font-family: var(--serif-zh); font-size: 14px; line-height: 1.7; color: var(--muted); margin-top: 7px; }

/* sections */
section { scroll-margin-top: 80px; }
.sec-pad { padding: 92px 0; }
.sec-head { max-width: 40em; }
.sec-head h2 { font-size: 38px; line-height: 1.2; color: var(--green-dark); margin-top: 14px; }

/* PAGE HEAD (sub-pages) */
.page-head { padding: 76px 0 52px; border-bottom: 1px solid var(--border); }
.page-head h1 { font-size: 48px; line-height: 1.15; color: var(--green-dark); margin-top: 14px; }
.page-head .lead { font-family: var(--serif-zh); font-size: 18px; line-height: 1.9; color: var(--muted); max-width: 38em; margin-top: 18px; }

/* BRAND INTRO */
.intro { background: var(--cream-soft); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.intro-body { font-family: var(--serif-zh); font-size: 17px; line-height: 2; color: var(--muted); }
.points { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.point { padding-left: 24px; position: relative; }
.point::before { content: ''; position: absolute; left: 0; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }
.point p { font-family: var(--serif-zh); font-size: 16px; color: var(--ink); line-height: 1.7; }

/* OFFERINGS */
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.offer-card { border: 1px solid var(--border); border-radius: 3px; padding: 30px 26px; background: var(--cream-soft); overflow: hidden; transition: border-color .25s ease, transform .25s ease; }
.offer-card:hover { border-color: var(--sage); transform: translateY(-3px); }
.offer-num { font-family: var(--serif); font-size: 16px; color: var(--clay); letter-spacing: 0.1em; }
.offer-card h3 { font-size: 24px; color: var(--green-dark); margin: 14px 0 12px; }
.offer-card p { font-size: 14px; color: var(--muted); line-height: 1.85; }

/* SERVICE DETAIL ROWS (services page) — image + text, alternating */
.svc-list { margin-top: 8px; }
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px 0; border-top: 1px solid var(--border); align-items: center; }
.svc-list .svc-row:first-child { border-top: none; }
.svc-img { aspect-ratio: 4/3; overflow: hidden; border-radius: 3px; background: var(--taupe); }
.svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-row:nth-child(even) .svc-img { order: 2; }
.svc-num { font-family: var(--serif); font-size: 15px; color: var(--clay); letter-spacing: 0.12em; }
.svc-row h3 { font-size: 28px; color: var(--green-dark); margin: 10px 0 0; }
.svc-body { font-family: var(--serif-zh); font-size: 16px; line-height: 1.9; color: var(--muted); margin-top: 14px; }
.svc-fit { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; list-style: none; }
.svc-fit li { position: relative; padding-left: 22px; font-size: 15px; color: var(--ink); line-height: 1.6; }
.svc-fit li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

/* FEATURED / CASE CARDS */
.feat { background: var(--cream-soft); }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.feat-card { position: relative; border-radius: 3px; overflow: hidden; background: var(--taupe); aspect-ratio: 4/3; display: block; }
.feat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feat-card:hover img { transform: scale(1.04); }
.feat-full { grid-column: 1 / -1; aspect-ratio: 12/5; }
.feat-card .overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px; color: var(--cream-soft);
  background: linear-gradient(to top, rgba(34,45,38,0.88) 0%, rgba(34,45,38,0.45) 40%, rgba(34,45,38,0.05) 75%, transparent 100%);
}
.feat-card h3 { font-size: 25px; color: var(--cream-soft); margin-bottom: 8px; }
.feat-full .overlay { justify-content: flex-end; padding: 36px; }
.feat-full h3 { font-size: 30px; }
.feat-card p { font-size: 14px; line-height: 1.75; color: rgba(245,240,232,0.92); max-width: 34em; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.tag { font-family: var(--sans); font-size: 11px; letter-spacing: 0.08em; padding: 3px 10px; border: 1px solid rgba(245,240,232,0.45); border-radius: 99px; }
.feat-foot { display: flex; justify-content: flex-end; margin-top: 32px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; letter-spacing: 0.04em; color: var(--green); border-bottom: 1px solid var(--sage); padding-bottom: 3px; }

/* CASE GRID (cases page) */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* JOURNAL FEATURED LEAD */
.journal-lead { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 16px; }
.journal-lead-img { aspect-ratio: 4/3; overflow: hidden; border-radius: 3px; background: var(--taupe); }
.journal-lead-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.journal-lead:hover .journal-lead-img img { transform: scale(1.03); }
.journal-lead .meta { font-family: var(--sans); font-size: 13px; letter-spacing: 0.04em; color: var(--clay); }
.journal-lead h2 { font-size: 32px; line-height: 1.25; color: var(--green-dark); margin: 12px 0; transition: color .2s ease; }
.journal-lead:hover h2 { color: var(--green); }
.journal-lead p { font-family: var(--serif-zh); font-size: 16px; line-height: 1.85; color: var(--muted); margin-bottom: 18px; max-width: 34em; }

/* ARTICLE LIST (journal page) */
.article-list { margin-top: 8px; }
.article-row { display: grid; grid-template-columns: 200px 1fr auto; gap: 36px; align-items: baseline; padding: 34px 0; border-top: 1px solid var(--border); transition: background-color .2s ease; }
.article-list .article-row:last-child { border-bottom: 1px solid var(--border); }
.article-row:hover h3 { color: var(--green); }
.article-meta { font-family: var(--sans); font-size: 13px; letter-spacing: 0.04em; color: var(--clay); }
.article-meta .cat { display: block; margin-top: 6px; color: var(--muted); }
.article-row h3 { font-size: 26px; color: var(--green-dark); margin-bottom: 10px; transition: color .2s ease; }
.article-row p { font-family: var(--serif-zh); font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 46em; }
.article-arrow { font-size: 18px; color: var(--green); align-self: center; }

/* DETAIL / ARTICLE (single case or post) */
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; letter-spacing: 0.03em; color: var(--muted); margin-bottom: 28px; transition: color .2s ease; }
.back-link:hover { color: var(--green); }
.detail-head { padding: 64px 0 0; }
.detail-head h1 { font-size: 44px; line-height: 1.2; color: var(--green-dark); margin: 16px 0 0; max-width: 18em; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 24px; }
.detail-meta div { display: flex; flex-direction: column; gap: 4px; }
.detail-meta .label { font-family: var(--sans); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay); }
.detail-meta .value { font-family: var(--serif-zh); font-size: 15px; color: var(--ink); }
.detail-hero { margin-top: 44px; aspect-ratio: 16/7; overflow: hidden; border-radius: 3px; background: var(--taupe); }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.prose { max-width: 720px; margin: 0 auto; }
.prose .lead-para { font-family: var(--serif-zh); font-size: 20px; line-height: 1.95; color: var(--ink); margin-bottom: 1.4em; }
.prose p { font-family: var(--serif-zh); font-size: 17px; line-height: 2.05; color: var(--muted); margin-bottom: 1.4em; }
.prose h2 { font-size: 27px; color: var(--green-dark); margin: 1.8em 0 0.7em; }
.prose h2 .step-tag { font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; color: var(--clay); display: block; margin-bottom: 8px; }
.prose ul { list-style: none; margin: 0 0 1.6em; }
.prose ul li { position: relative; padding-left: 24px; font-family: var(--serif-zh); font-size: 17px; line-height: 1.9; color: var(--muted); margin-bottom: 8px; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }
.prose .pull { font-family: var(--serif); font-style: italic; font-size: 26px; line-height: 1.5; color: var(--clay); text-align: center; margin: 1.6em 0; padding: 0 1em; }
.prose strong { color: var(--ink); font-weight: 500; }

/* PHILOSOPHY */
.philo { text-align: center; background: var(--green); color: var(--cream-soft); }
.philo-inner { max-width: 44em; margin: 0 auto; }
.philo .kicker { color: var(--gold); }
.philo h2 { font-size: 40px; line-height: 1.25; color: var(--cream-soft); margin: 16px 0 28px; }
.philo-body { font-family: var(--serif-zh); font-size: 18px; line-height: 2.05; color: var(--muted); }
.philo .philo-body { color: rgba(250,246,238,0.86); }
.philo-quote { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--clay); margin-top: 40px; line-height: 1.5; }
.philo .philo-quote { color: var(--gold); }

/* TRUST — connected timeline */
.trust { background: var(--cream-soft); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 56px; }
.step { position: relative; padding-right: 40px; }
.step:last-child { padding-right: 0; }
.step:not(:last-child)::after { content: ''; position: absolute; top: 25px; left: 60px; right: 8px; height: 1px; background: var(--sage); opacity: 0.5; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border: 1px solid var(--sage); border-radius: 50%; background: var(--cream-soft); font-family: var(--serif); font-size: 21px; color: var(--green); line-height: 1; position: relative; z-index: 1; }
.step h3 { font-size: 21px; color: var(--green-dark); margin: 22px 0 10px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.85; }

/* BOOKING FORM */
.book-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 72px; align-items: start; }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.field .req { color: var(--clay); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 2px;
  background: var(--cream-soft); font-family: var(--sans); font-size: 15px; color: var(--ink);
  transition: border-color .2s ease;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--sage); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); outline: none; }
.field textarea { min-height: 120px; resize: vertical; line-height: 1.7; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.7; }
.book-side { background: var(--cream-soft); border: 1px solid var(--border); border-radius: 3px; padding: 34px 32px; }
.book-side h3 { font-size: 22px; color: var(--green-dark); margin-bottom: 18px; }
.contact-row { display: flex; flex-direction: column; gap: 4px; padding: 16px 0; border-top: 1px solid var(--border); }
.contact-row:first-of-type { border-top: none; padding-top: 0; }
.contact-row .label { font-family: var(--sans); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay); }
.contact-row .value { font-family: var(--serif-zh); font-size: 16px; color: var(--ink); }

/* TESTIMONIALS — editorial quotes, divider columns */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; }
.quote-item { padding: 0 34px; border-right: 1px solid var(--border); }
.quote-item:first-child { padding-left: 0; }
.quote-item:last-child { border-right: none; padding-right: 0; }
.quote-mark { font-family: var(--serif); font-size: 44px; color: var(--sage); line-height: 0.8; }
.quote-text { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.65; color: var(--green-dark); margin: 6px 0 18px; }
.quote-by { font-family: var(--sans); font-size: 13px; letter-spacing: 0.03em; color: var(--clay); }

/* FIRST VISIT */
.firstvisit { background: var(--cream-soft); }
.fv-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; margin-top: 8px; align-items: end; }
.fv-intro h2 { font-size: 30px; line-height: 1.25; color: var(--green-dark); margin-top: 14px; }
.fv-intro p { font-family: var(--serif-zh); font-size: 16px; line-height: 1.9; color: var(--muted); margin-top: 16px; }
.fv-steps { display: flex; flex-direction: column; }
.fv-step { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: baseline; border-top: 1px solid var(--border); padding: 18px 0; }
.fv-step:first-child { border-top: none; padding-top: 0; }
.fv-step:last-child { border-bottom: 1px solid var(--border); }
.fv-num { font-family: var(--serif); font-size: 20px; color: var(--green); }
.fv-step h3 { font-size: 18px; color: var(--green-dark); margin-bottom: 6px; }
.fv-step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* CLINIC INFO CARD */
.clinic { background: var(--cream-soft); }
.clinic-card { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 44px; align-items: start; }
.clinic-map { aspect-ratio: 4/3; border: 1px solid var(--border); border-radius: 2px; background: var(--cream); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--green); }
.clinic-map svg { width: 30px; height: 30px; }
.clinic-map span { font-size: 12px; color: var(--muted); }
.clinic-info { display: flex; flex-direction: column; }
.clinic-row { border-top: 1px solid var(--border); padding: 13px 0; }
.clinic-row:first-child { border-top: none; padding-top: 0; }
.clinic-row .label { font-family: var(--sans); font-size: 12px; letter-spacing: 0.06em; color: var(--clay); margin-bottom: 5px; }
.clinic-row .value { font-family: var(--serif-zh); font-size: 15px; color: var(--ink); line-height: 1.65; }
.clinic-contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 22px; border-top: 1px solid var(--border); padding-top: 18px; }
.clinic-contact > div { padding: 0 18px; border-right: 1px solid var(--border); }
.clinic-contact > div:first-child { padding-left: 0; }
.clinic-contact > div:last-child { border-right: none; padding-right: 0; }
.clinic-contact .label { font-family: var(--sans); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay); margin-bottom: 5px; }
.clinic-contact .value { font-family: var(--serif-zh); font-size: 14px; color: var(--ink); }

/* SCHEDULE TABLE */
.schedule-wrap { max-width: 760px; margin-top: 44px; }
.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table thead th { font-family: var(--sans); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--clay); font-weight: 500; text-align: left; padding: 0 8px 12px; }
.schedule-table thead th:first-child { padding-left: 0; }
.schedule-table tbody th { font-family: var(--serif-zh); font-weight: 400; font-size: 16px; color: var(--green-dark); text-align: left; width: 28%; }
.schedule-table tbody td { font-family: var(--serif-zh); font-size: 15px; color: var(--ink); font-variant-numeric: lining-nums; }
.schedule-table tbody th, .schedule-table tbody td { padding: 15px 8px; border-top: 1px solid var(--border); }
.schedule-table tbody th { padding-left: 0; }
.schedule-table .closed { color: var(--subtle); }
.schedule-table tbody tr.today th, .schedule-table tbody tr.today td { color: var(--green); }
.schedule-note { font-size: 13px; color: var(--muted); margin-top: 18px; line-height: 1.8; }
.duty-title { font-family: var(--serif); font-size: 20px; color: var(--green-dark); margin: 40px 0 6px; }
.duty-list { border-top: 1px solid var(--border); }
.duty-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.duty-name { font-family: var(--serif-zh); font-size: 16px; color: var(--green-dark); }
.duty-name em { font-style: normal; font-family: var(--sans); font-size: 12px; letter-spacing: 0.06em; color: var(--clay); margin-left: 10px; }
.duty-days { font-family: var(--serif-zh); font-size: 15px; color: var(--muted); font-variant-numeric: lining-nums; }
.schedule-cta { margin-top: 30px; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 48px; }
.team-photo { aspect-ratio: 4/5; overflow: hidden; border-radius: 3px; background: var(--taupe); margin-bottom: 18px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 21px; color: var(--green-dark); }
.team-role { font-family: var(--sans); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay); margin: 7px 0 10px; }
.team-bio { font-family: var(--serif-zh); font-size: 14px; line-height: 1.8; color: var(--muted); }
.team-creds { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.team-tag { font-family: var(--sans); font-size: 11px; letter-spacing: 0.04em; color: var(--green); border: 1px solid var(--border); border-radius: 99px; padding: 3px 11px; }

/* HOME — intro feature (image + text) */
.intro-feature { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: center; }
.intro-photo, .philo-photo, .trust-photo { overflow: hidden; border-radius: 3px; background: var(--taupe); }
.intro-photo { aspect-ratio: 4/5; }
.intro-photo img, .philo-photo img, .trust-photo img { width: 100%; height: 100%; object-fit: cover; }
.intro-feature .intro-body { margin-top: 18px; }

/* HOME — offering card image */
.offer-img { margin: -30px -26px 22px; aspect-ratio: 16/10; overflow: hidden; background: var(--taupe); }
.offer-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.offer-card:hover .offer-img img { transform: scale(1.04); }

/* ABOUT — first-visit intro photo */
.fv-photo { margin-top: 30px; aspect-ratio: 4/3; overflow: hidden; border-radius: 3px; background: var(--taupe); }
.fv-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ABOUT — environment gallery */
.env-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.env-item { margin: 0; }
.env-item img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 3px; background: var(--taupe); display: block; }
.env-item figcaption { font-family: var(--serif-zh); font-size: 13px; color: var(--muted); margin-top: 12px; letter-spacing: 0.02em; }

/* HOME — philosophy split */
.philo-split { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(40px,5vw,72px); align-items: center; text-align: left; }
.philo-photo { aspect-ratio: 4/3; }
.philo-split h2 { font-size: 34px; line-height: 1.25; color: var(--green-dark); margin: 14px 0 22px; }
.philo-split .philo-body { font-family: var(--serif-zh); font-size: 17px; line-height: 2; color: var(--muted); }
.philo-split .philo-quote { text-align: left; font-size: 22px; margin-top: 26px; }

/* A1 章節索引 + D3 中英雙標題 (editorial section head) */
.sec-index { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.sec-index .ci-num { font-family: var(--serif); font-size: 15px; color: var(--clay); letter-spacing: 0.04em; }
.sec-index .ci-line { flex: 0 0 56px; height: 1px; background: var(--taupe); }
.sec-index .ci-en { font-family: var(--sans); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--subtle); }
.sec-head.center .sec-index, .center > .sec-index { justify-content: center; }

/* C1 大數字 stat band */
.stat-band { background: var(--cream-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 52px var(--gutter); }
.stat { padding-left: 28px; border-left: 1px solid var(--border); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat-n { font-family: var(--serif); font-size: clamp(40px, 5vw, 68px); line-height: 1; color: var(--green-dark); font-variant-numeric: lining-nums; font-feature-settings: 'lnum' 1; }
.stat-n span { font-size: 0.4em; color: var(--clay); vertical-align: baseline; margin-left: 3px; }
.stat-l { font-family: var(--serif-zh); font-size: 14px; color: var(--muted); margin-top: 12px; line-height: 1.6; }

/* D1 信任 / 認證 logo strip */
.logos { text-align: center; padding: 54px 0; }
.logos-label { font-family: var(--sans); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--subtle); margin-bottom: 22px; }
.logos-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 44px; }
.logos-row span { font-family: var(--serif); font-size: clamp(16px, 1.8vw, 21px); color: var(--subtle); opacity: 0.74; letter-spacing: 0.03em; white-space: nowrap; }

@media (max-width: 760px) {
  .stat-grid { grid-template-columns: 1fr; gap: 0; padding: 12px var(--gutter); }
  .stat { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 22px; padding-bottom: 22px; }
  .stat:first-child { border-top: none; }
}

/* A3 全幅 hero banner（cinematic overlay hero） */
.hero-full { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-full .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.hero-full .hero-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 46%, rgba(0,0,0,0.12) 76%, transparent 100%); }
.hero-overlay { position: relative; z-index: 1; width: 100%; padding-top: 130px; padding-bottom: 60px; color: var(--cream-soft); }
.hero-overlay .kicker { color: #e2c98a; text-shadow: 0 1px 14px rgba(0,0,0,0.5); }
.hero-overlay h1 { color: var(--cream-soft); font-size: clamp(40px, 6vw, 74px); line-height: 1.08; margin-top: 16px; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero-overlay .hero-en { font-family: var(--serif); font-style: italic; color: var(--cream); opacity: 0.94; font-size: clamp(16px, 2vw, 21px); margin-top: 16px; }
.hero-overlay .hero-cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn-ghost-light { background: transparent; border: 1.5px solid rgba(245,240,232,0.7); color: var(--cream-soft); }
.btn-ghost-light:hover { border-color: var(--cream-soft); background: rgba(245,240,232,0.14); }
.hero-overlay .btn-primary { background: var(--cream-soft); color: var(--green-dark); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.hero-overlay .btn-primary:hover { background: #fffdf9; color: var(--green-dark); }

/* B2 氛圍拼貼畫廊（兩側直幅 bookend，避免過寬短的 letterbox 裁切） */
.collage { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 212px; gap: 14px; }
.collage img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.collage .c-tall { grid-row: span 2; }
@media (max-width: 760px) {
  .collage { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .collage .c-tall { grid-row: auto; }
}

/* INTERLUDE full-bleed image band */
.interlude { position: relative; overflow: hidden; }
.interlude .band-cap { position: absolute; inset: 0; display: flex; align-items: center; padding-left: max(var(--gutter), calc((100% - 1240px) / 2 + var(--gutter))); padding-right: var(--gutter); background: linear-gradient(90deg, rgba(42,61,48,0.62), rgba(42,61,48,0.06)); }
.interlude .band-cap p { font-family: var(--serif); font-style: italic; color: var(--cream-soft); font-size: clamp(20px, 3vw, 32px); line-height: 1.4; max-width: 20ch; text-shadow: 0 2px 24px rgba(0,0,0,0.25); }
.interlude img { display: block; width: 100%; height: clamp(280px, 42vh, 460px); object-fit: cover; }

/* TESTIMONIAL avatar */
.quote-foot { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.quote-avatar { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--taupe); }
.quote-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* HOME — trust (photo + vertical steps) */
.trust-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 56px; align-items: center; }
.trust-photo { aspect-ratio: 4/5; order: 2; }
.trust-steps { display: flex; flex-direction: column; margin-top: 30px; }
.tstep { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: baseline; border-top: 1px solid var(--border); padding: 20px 0; }
.tstep:first-child { border-top: none; padding-top: 0; }
.tnum { font-family: var(--serif); font-size: 22px; color: var(--green); }
.tstep h3 { font-size: 19px; color: var(--green-dark); margin-bottom: 6px; }
.tstep p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* CTA */
.cta { background: var(--green-dark); color: var(--cream-soft); text-align: center; }
.cta-inner { max-width: 38em; margin: 0 auto; }
.cta h2 { font-size: 40px; line-height: 1.25; color: var(--cream-soft); }
.cta p { font-family: var(--serif-zh); font-size: 17px; line-height: 1.95; color: rgba(245,240,232,0.8); margin: 22px 0 36px; }
.cta .kicker { color: var(--gold); }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn-primary { background: var(--cream-soft); color: var(--green-dark); }
.cta .btn-primary:hover { background: #fffdf9; }

/* FOOTER */
footer { background: var(--cream); border-top: 1px solid var(--border); padding: 52px 0 40px; }
.foot { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 28px; }
.foot .brand { display: block; font-size: 22px; margin-bottom: 16px; }
.foot-contact { display: flex; flex-direction: column; gap: 6px; font-family: var(--serif-zh); font-size: 14px; color: var(--muted); }
.foot-social { display: flex; gap: 12px; }
.foot-social a { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 50%; color: var(--green); transition: background-color .2s ease, color .2s ease; }
.foot-social a:hover { background: var(--green); color: var(--cream-soft); }
.foot-social svg { width: 18px; height: 18px; }
.foot-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--border); }
.foot-copy { font-size: 12px; color: var(--muted); letter-spacing: 0.03em; }

/* RESPONSIVE */
@media (max-width: 900px) {
  :root { --gutter: 22px; }
  .hero-grid, .intro-grid, .feat-grid, .book-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 42px; }
  .page-head h1 { font-size: 34px; }
  .sec-head h2, .philo h2, .cta h2 { font-size: 30px; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; gap: 0; padding: 8px var(--gutter); }
  .proof-item { padding: 22px 0; border-left: none; border-top: 1px solid var(--border); }
  .proof-item:first-child { border-top: none; padding-top: 14px; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .step { padding-right: 0; }
  .step:not(:last-child)::after { display: none; }
  .article-row { grid-template-columns: 1fr; gap: 8px; }
  .article-arrow { display: none; }
  .svc-row { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
  .svc-row:nth-child(even) .svc-img { order: 0; }
  .quotes { grid-template-columns: 1fr; }
  .quote-item { padding: 22px 0; border-right: none; border-top: 1px solid var(--border); }
  .quote-item:first-child { border-top: none; padding-top: 0; }
  .fv-grid { grid-template-columns: 1fr; gap: 24px; }
  .journal-lead { grid-template-columns: 1fr; gap: 22px; }
  .journal-lead h2 { font-size: 26px; }
  .team-grid { grid-template-columns: 1fr; gap: 28px; max-width: 380px; }
  .intro-feature, .philo-split, .trust-grid { grid-template-columns: 1fr; gap: 30px; }
  .intro-photo, .trust-photo, .philo-photo { aspect-ratio: 16/10; }
  .env-gallery { grid-template-columns: 1fr; gap: 24px; max-width: 420px; }
  .env-item img { aspect-ratio: 16/10; }
  .interlude img { height: 240px; }
  .schedule-table tbody th, .schedule-table tbody td { padding: 12px 6px; font-size: 14px; }
  .schedule-table thead th { font-size: 11px; }
  .duty-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .clinic-card { grid-template-columns: 1fr; gap: 20px; }
  .clinic-contact { grid-template-columns: 1fr; }
  .clinic-contact > div { padding: 12px 0; border-right: none; border-top: 1px solid var(--border); }
  .clinic-contact > div:first-child { border-top: none; padding-top: 0; }
  .detail-head h1 { font-size: 32px; }
  .detail-hero { aspect-ratio: 4/3; margin-top: 32px; }
  .prose .lead-para { font-size: 18px; }
  .prose .pull { font-size: 22px; }
  .book-side { margin-top: 8px; }
  .nav-toggle { display: inline-flex; }
  .nav { display: flex; align-items: center; justify-content: space-between; }
  .brand { font-size: 19px; }
  .nav-right { gap: 8px; }
  .nav-right .btn { padding: 9px 15px; font-size: 13px; }
  .nav-links {
    display: none; position: absolute; top: calc(100% + 1px); left: 0; right: 0;
    grid-column: 1 / -1; justify-self: stretch;
    flex-direction: column; gap: 0; background: var(--cream); border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(42,61,48,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 15px 22px; border-top: 1px solid var(--border); }
  /* 行動版下拉是 cream 底，首頁的淺色字會消失 → 一律深色 */
  body.home .nav-links a { color: var(--ink); text-shadow: none; }
  body.home .nav-links a:hover, body.home .nav-links a.active { color: var(--green); }
  .sec-pad { padding: 64px 0; }
  .hero { padding: 56px 0 64px; }
  .feat-grid { gap: 18px; }
  .feat-card, .feat-full { aspect-ratio: 16/10; }
}
@media (max-width: 520px) {
  .offer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .field-row { grid-template-columns: 1fr; }
}
/* ── MOTION: hero load choreography（首頁，純 CSS）── */
@keyframes heroImgSettle { from { transform: scale(1.06); } to { transform: scale(1); } }
@keyframes heroRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
body.home .hero-bg { animation: heroImgSettle 1.8s cubic-bezier(0.16,1,0.3,1) both; }
body.home .hero-overlay > * { opacity: 0; animation: heroRise .85s cubic-bezier(0.16,1,0.3,1) forwards; }
body.home .hero-overlay .kicker { animation-delay: .15s; }
body.home .hero-overlay h1 { animation-delay: .28s; }
body.home .hero-overlay .hero-en { animation-delay: .42s; }
body.home .hero-overlay .hero-cta { animation-delay: .55s; }

/* ── MOTION: scroll reveal（全站，JS 加 .js / .in）── */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(0.16,1,0.3,1), transform .7s cubic-bezier(0.16,1,0.3,1); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-group > * { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(0.16,1,0.3,1), transform .7s cubic-bezier(0.16,1,0.3,1); }
.js .reveal-group.in > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .feat-card:hover img { transform: none; }
  .offer-card:hover { transform: none; }
  body.home .hero-bg, body.home .hero-overlay > * { animation: none; opacity: 1; }
  .js .reveal, .js .reveal-group > * { opacity: 1 !important; transform: none !important; }
}
