﻿
/* ═══ RESET & ROOT ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', 'Noto Serif SC', sans-serif;
  background: #F7F2EA;
  color: #1A1208;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ═══ TOKENS ═══ */
:root {
  --burg: #7A1F1F;
  --burg-d: #4A1212;
  --burg-mid: #9B2B2B;
  --cream: #F7F2EA;
  --cream-off: #EDE5D5;
  --gold: #D4A96A;
  --gold-pale: #EDD9A8;
  --ink: #1A1208;
  --mid: #5C3D2E;
  --mist: #B8A89A;
  --white: #FFFDF9;
  --line: 1px solid rgba(122,31,31,0.12);
}

/* ═══ LANG ═══ */
.zh, .en, .ms { display: none; }
.L-zh .zh { display: block; }
.L-en .en { display: block; }
.L-ms .ms { display: block; }
.zh-i, .en-i, .ms-i { display: none; }
.L-zh .zh-i { display: inline; }
.L-en .en-i { display: inline; }
.L-ms .ms-i { display: inline; }

/* ═══ GOLD LINE SYSTEM (Signature) ═══ */
.gl {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.6;
}

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(247,242,234,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(122,31,31,0.1);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Noto Serif SC', serif;
  font-weight: 700; font-size: 16px; color: var(--burg);
  letter-spacing: 0.02em;
}
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--burg); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-logo small {
  display: block; font-size: 9px; font-weight: 400;
  letter-spacing: 3px; color: var(--mist); font-family: 'DM Sans', sans-serif;
}
.nav-links {
  display: flex; align-items: center; gap: 2px; list-style: none;
}
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--mid); padding: 7px 13px; border-radius: 6px;
  transition: color 0.2s, background 0.2s; display: flex; align-items: center; gap: 3px;
}
.nav-links a:hover { color: var(--burg); background: rgba(122,31,31,0.06); }
.nav-dropdown { position: relative; }
.nav-sub {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: 14px;
  box-shadow: 0 12px 48px rgba(74,18,18,0.18);
  padding: 10px; min-width: 210px; z-index: 10; list-style: none;
  border: 1px solid rgba(122,31,31,0.07);
}
.nav-dropdown:hover .nav-sub { display: block; }
.nav-sub a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 13px; color: var(--mid); white-space: nowrap;
}
.nav-sub a:hover { background: rgba(122,31,31,0.05); color: var(--burg); }
.nav-r { display: flex; align-items: center; gap: 12px; }
.lang-sw { display:flex; align-items:center; gap:1px; }
.ls-btn { background:none; border:none; font-size:12px; font-weight:600; color:var(--mist); cursor:pointer; padding:4px 7px; border-radius:5px; transition:.15s; font-family:inherit; }
.ls-btn:hover, .ls-btn.active { color:var(--burg); font-weight:800; }
.ls-sep { font-size:11px; color:rgba(122,31,31,0.2); user-select:none; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--burg); color: #fff;
  padding: 9px 20px; border-radius: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--burg-d); transform: translateY(-1px); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; z-index: 910; }
.burger span { display: block; width: 22px; height: 2px; background: var(--burg); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-menu {
  display: none; position: fixed; inset: 0; background: rgba(247,242,234,0.99);
  z-index: 800; flex-direction: column; padding: 88px 32px 40px;
  overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-menu a { font-size: 17px; font-weight: 700; color: var(--ink); padding: 14px 0; border-bottom: var(--line); display: block; }
.mob-menu .mob-sec { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--mist); margin: 22px 0 6px; }
.mob-menu .mob-sub a { font-size: 14px; font-weight: 500; padding: 10px 0 10px 14px; color: var(--mid); }
.mob-lang { display: flex; gap: 10px; margin-top: 28px; }
.mob-lang button { background: none; border: 1px solid rgba(122,31,31,0.2); border-radius: 7px; padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--burg); cursor: pointer; font-family: inherit; }
.mob-lang button.active { background: var(--burg); color: #fff; border-color: var(--burg); }
.mob-wa { display: flex; align-items: center; gap: 8px; background: var(--burg); color: #fff; padding: 14px 20px; border-radius: 10px; font-size: 15px; font-weight: 700; margin-top: 20px; justify-content: center; }

/* ═══ HERO ═══ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-img-side {
  position: relative; overflow: hidden;
  grid-column: 2;
}
.hero-img-side img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: saturate(0.88) brightness(0.96);
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--cream) 0%, rgba(247,242,234,0.1) 35%, transparent 60%);
  z-index: 1;
}
.hero-content {
  padding: 140px 72px 100px 72px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
  background: var(--cream);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block; width: 32px; height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 900; line-height: 1.06;
  color: var(--ink); letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.hero-h1 em {
  font-style: normal; color: var(--burg);
  display: block;
}
.hero-sub {
  font-size: 15px; line-height: 1.75; color: var(--mid);
  max-width: 440px; margin: 20px 0 44px;
  font-weight: 400;
}
.hero-stats {
  display: flex; gap: 0; margin-bottom: 44px;
  border-top: var(--line); border-bottom: var(--line);
  padding: 24px 0;
}
.hero-stat {
  flex: 1;
  padding-right: 28px;
  padding-left: 20px;
  border-right: var(--line);
  margin-right: 0;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; padding-right: 0; }
.hero-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 900; color: var(--burg);
  line-height: 1; letter-spacing: -0.04em;
}
.hero-stat-l {
  font-size: 9px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mist); margin-top: 7px;
  opacity: 0.7;
}
.hero-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn-prim {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--burg); color: #fff;
  padding: 14px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(122,31,31,0.22);
}
.btn-prim:hover { background: var(--burg-d); transform: translateY(-2px); }
.btn-sec {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--burg); font-size: 14px; font-weight: 600;
  padding: 14px 4px;
  border-bottom: 1.5px solid rgba(122,31,31,0.3);
  transition: border-color 0.2s;
}
.btn-sec:hover { border-color: var(--burg); }
/* hero floating card */
.hero-card {
  position: absolute; bottom: 48px; right: -20px;
  z-index: 3; background: var(--white); border-radius: 16px;
  padding: 20px 24px; box-shadow: 0 16px 64px rgba(26,18,8,0.18);
  max-width: 260px; transform: rotate(-1deg);
  border: 1px solid rgba(212,169,106,0.2);
}
.hero-card-stars { color: #F5A623; font-size: 13px; letter-spacing: 2px; margin-bottom: 8px; }
.hero-card-text { font-size: 12px; color: var(--mid); line-height: 1.65; font-style: italic; }
.hero-card-author {
  font-size: 10px; font-weight: 700; color: var(--mist);
  margin-top: 10px; display: flex; align-items: center; gap: 6px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hero-card-author::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #4285F4; flex-shrink: 0;
}
/* hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 40px; left: 72px;
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--mist);
}
.hero-scroll-line {
  width: 40px; height: 1px; background: var(--mist);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--burg);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line { 0% { left: -100%; } 100% { left: 100%; } }

/* ═══ TRUST BAND ═══ */
.trust-band {
  background: var(--burg-d);
  display: flex; justify-content: center; flex-wrap: wrap;
  border-top: 1px solid rgba(212,169,106,0.15);
}
.trust-item {
  display: flex; align-items: center;
  color: rgba(255,255,255,0.85);
  padding: 28px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex: 1; min-width: 200px;
}
.trust-item:last-child { border-right: none; }
.trust-item-inner { display: flex; flex-direction: column; gap: 5px; }
.trust-main {
  font-size: 13px; font-weight: 700; color: #fff;
  letter-spacing: 0.01em;
}
.trust-sub {
  font-size: 10px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}

/* ═══ SECTION BASE ═══ */
section { position: relative; }
.inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }
.eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.section-h {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700; line-height: 1.15;
  color: var(--ink); letter-spacing: -0.02em;
}
.section-h em { font-style: normal; color: var(--burg); }
.section-sub {
  font-size: 15px; color: var(--mid); line-height: 1.75;
  margin-top: 14px; max-width: 520px;
}

/* ═══ SERVICES ═══ */
.services { background: var(--white); }
.srv-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  margin-bottom: 72px;
}
.srv-header-r {
  display: flex; flex-direction: column; align-items: flex-end;
}
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
}
.srv-card {
  position: relative; overflow: hidden;
  background: var(--cream-off);
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.srv-card:hover { transform: scale(1.02); z-index: 1; }
.srv-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
  filter: saturate(0.7) brightness(0.9);
}
.srv-card:hover img {
  transform: scale(1.06);
  filter: saturate(0.85) brightness(0.85);
}
/* 占位色块 — 照片未就绪时使用 */
.srv-placeholder {
  background: var(--srv-color, var(--burg-d));
}
.srv-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(212,169,106,0.08) 0%, transparent 65%);
}
.srv-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,8,8,0.92) 0%, rgba(74,18,18,0.35) 45%, transparent 75%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 24px;
}
.srv-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 11px; color: var(--gold-pale); letter-spacing: 3px;
  margin-bottom: 8px; font-weight: 400;
}
.srv-card-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px; font-weight: 700; color: #fff; line-height: 1.3;
  margin-bottom: 6px;
}
.srv-card-desc {
  font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.55;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s;
  opacity: 0;
}
.srv-card:hover .srv-card-desc { max-height: 60px; opacity: 1; }
.srv-card-arrow {
  position: absolute; top: 24px; right: 24px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; opacity: 0;
  transition: opacity 0.3s, background 0.3s;
}
.srv-card:hover .srv-card-arrow { opacity: 1; background: rgba(255,255,255,0.15); }

/* ═══ NUMBERS / PROOF ═══ */
.proof { background: var(--burg-d); overflow: hidden; position: relative; }
.proof-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; min-height: 500px;
}
.proof-text { padding: 80px 72px 80px 0; position: relative; z-index: 1; }
.proof-text .eyebrow { color: var(--gold-pale); opacity: 0.7; }
.proof-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900; color: #fff; line-height: 1.1;
  margin-bottom: 20px;
}
.proof-sub { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 400px; }
.proof-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 36px; color: var(--gold);
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(212,169,106,0.4);
  padding-bottom: 3px; transition: border-color 0.2s;
}
.proof-cta:hover { border-color: var(--gold); }
.proof-nums { padding: 80px 0 80px 72px; border-left: 1px solid rgba(255,255,255,0.08); }
.proof-num-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 32px; }
.proof-num-item { position: relative; padding-left: 22px; }
.proof-num-item .gl { height: 65%; top: 18%; opacity: 0.8; }
.proof-n {
  font-family: 'Playfair Display', serif;
  font-size: 68px; font-weight: 900;
  color: #fff; line-height: 1;
  letter-spacing: -0.05em;
}
.proof-n sup { font-size: 32px; vertical-align: super; letter-spacing: -0.02em; }
.proof-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-top: 10px;
}
.proof-bg-num {
  position: absolute; right: -20px; top: -60px;
  font-family: 'Playfair Display', serif;
  font-size: 280px; font-weight: 900;
  color: rgba(255,255,255,0.025);
  pointer-events: none; line-height: 1;
  z-index: 0; letter-spacing: -0.05em;
}

/* ═══ DOCTORS ═══ */
.doctors { background: var(--cream); }
.docs-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 64px;
}
.docs-scroll-hint {
  font-size: 11px; color: var(--mist); letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 8px;
}
.docs-scroll-hint::after {
  content: '→'; font-size: 14px;
}
.docs-track-wrap {
  overflow: visible;
  padding: 0; margin: 0;
}
.docs-track {
  display: contents;
}
.doc-card {
  background: var(--white); border-radius: 2px;
  overflow: hidden; position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid rgba(122,31,31,0.06);
  display: block;
}
.doc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,18,8,0.10); }
.doc-card:hover { box-shadow: 0 20px 60px rgba(74,18,18,0.14); }
.doc-img {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream2);
}
.doc-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: top center;
  filter: saturate(0.85);
  transition: transform 0.5s ease;
}
.doc-card:hover .doc-img img { transform: scale(1.04); }
.doc-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--burg); color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  padding: 4px 10px; text-transform: uppercase;
}
.doc-body { padding: 24px 20px 20px; }
.doc-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px; font-weight: 700; color: var(--ink);
  margin-bottom: 4px;
}
.doc-role { font-size: 11px; color: var(--mist); letter-spacing: 0.06em; text-transform: uppercase; }
.doc-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin: 14px 0 16px;
}
.doc-tag {
  font-size: 11px; font-weight: 500;
  color: var(--burg);
  background: transparent;
  border: 1px solid rgba(122,31,31,0.35);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  display: inline-block;
}
.doc-tag:hover {
  background: var(--burg);
  color: #fff;
  border-color: var(--burg);
}
.doc-univ { font-size: 11px; color: var(--mist); }
.doc-link {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: var(--burg);
  margin-top: 12px; opacity: 0;
  transition: opacity 0.3s;
}
.doc-card:hover .doc-link { opacity: 1; }

/* ═══ PARTNERS ═══ */
.partners { background: var(--cream); }

.xmum-banner {
  background: linear-gradient(120deg, #1A3A2A 0%, #2D6A4F 100%);
  border-radius: 16px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.xmum-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.xmum-divider {
  width: 1px; align-self: stretch;
  background: rgba(255,255,255,0.15); flex-shrink: 0;
}
.xmum-left, .xmum-right { position: relative; z-index: 1; }
.xmum-badge-label {
  font-size: 9px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.xmum-name {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(17px, 2.2vw, 24px); font-weight: 700;
  color: #fff; line-height: 1.25; margin-bottom: 5px;
}
.xmum-role { font-size: 13px; color: rgba(255,255,255,0.6); }
.xmum-right { padding-left: 28px; }
.xmum-en {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 6px;
}
.xmum-sub { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 380px; }

.mahkota-banner {
  background: linear-gradient(120deg, #0D1F35 0%, #1A3A5C 100%);
  border-radius: 16px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.mahkota-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.mhk-left, .mhk-right { position: relative; z-index: 1; }
.mhk-right { padding-left: 28px; }
.mhk-logo-chip {
  display: inline-block;
  background: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.mhk-logo {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
}
.xmum-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.partners-strip-label {
  font-size: 9px; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: rgba(122,31,31,0.35); margin-bottom: 16px;
}
.partners-strip {
  display: flex;
  align-items: stretch;
  background: var(--w);
  border: 1px solid rgba(122,31,31,0.07);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,18,8,0.04);
}
.partner-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 26px 18px;
  border-right: 1px solid rgba(122,31,31,0.07);
  transition: background .25s cubic-bezier(.4,0,.2,1);
  cursor: default;
}
.partner-item:last-child { border-right: none; }
.partner-item:hover { background: var(--cream); }
.partner-img-wrap {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-img {
  max-height: 70px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.4);
  transition: filter .35s cubic-bezier(.4,0,.2,1);
}
.partner-item:hover .partner-img {
  filter: grayscale(0%) opacity(1);
}
.partner-img-wrap.dark-bg {
  mix-blend-mode: screen;
}
.partner-img-wrap.dark-bg .partner-img {
  filter: none;
  opacity: 0.75;
  max-height: 32px;
}
.partner-item:hover .partner-img-wrap.dark-bg .partner-img {
  filter: none;
  opacity: 1;
}
.cmore-img, .maryeve-img { max-height: 64px !important; max-width: 150px !important; }
.partner-logo-ph {
  width: 56px; height: 20px;
  background: rgba(122,31,31,0.06); border-radius: 4px;
}
.partner-name {
  font-size: 9.5px; font-weight: 700; color: var(--light);
  text-align: center; line-height: 1.35;
  letter-spacing: 0.4px; text-transform: uppercase;
  opacity: 0.7;
}

/* ═══ CASES (REDESIGNED) ═══ */
.cases-sec {
  background: var(--ink);
  padding: 96px 40px;
}
.cases-inner { max-width: 1100px; margin: 0 auto; }

.cases-header { margin-bottom: 48px; }
.cases-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 9px; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold); opacity: 0.65;
  margin-bottom: 16px;
}
.cases-eyebrow::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.cases-h {
  font-size: clamp(26px, 3vw, 40px);
  font-family: 'Noto Serif SC', serif;
  font-weight: 700; line-height: 1.25; letter-spacing: -.5px;
  color: rgba(255,255,255,0.92);
}
.cases-h em { color: var(--gold); font-style: normal; }

/* Featured row */
.cases-feat-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.case-feat {
  position: relative; border-radius: 14px;
  overflow: hidden; cursor: pointer;
  aspect-ratio: 16/10;
}
.case-feat-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.case-feat:hover .case-feat-img { transform: scale(1.04); }
.case-feat-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,18,8,0.08) 0%, rgba(26,18,8,0.3) 45%, rgba(26,18,8,0.82) 100%);
  transition: background .3s;
}
.case-feat:hover .case-feat-grad {
  background: linear-gradient(to bottom, rgba(92,23,23,0.12) 0%, rgba(92,23,23,0.35) 45%, rgba(26,18,8,0.88) 100%);
}
.case-feat-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
  transition: transform .2s, background .2s;
}
.case-feat:hover .case-feat-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}
.case-feat-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 26px;
}
.case-feat-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px; opacity: 0.85;
}
.case-feat-title {
  font-size: clamp(15px, 1.8vw, 21px);
  font-family: 'Noto Serif SC', serif;
  font-weight: 700; color: #fff; line-height: 1.3;
}

/* Stacked side cards */
.cases-stack { display: flex; flex-direction: column; gap: 14px; }
.case-sm {
  border-radius: 12px; overflow: hidden; cursor: pointer;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
  flex: 1; display: flex; flex-direction: column;
  transition: background .25s, border-color .25s;
}
.case-sm:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,169,106,0.22);
}
.case-sm-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.case-sm-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.case-sm:hover .case-sm-thumb img { transform: scale(1.04); }
.case-sm-overlay {
  position: absolute; inset: 0;
  background: rgba(26,18,8,0.32);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.case-sm:hover .case-sm-overlay { background: rgba(92,23,23,0.5); }
.case-sm-body { padding: 13px 15px 15px; flex: 1; }
.case-sm-tag {
  font-size: 8px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 5px; opacity: 0.7;
}
.case-sm-title {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.82); line-height: 1.45;
}

/* Play buttons */
.case-play-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
  transition: transform .2s, background .2s;
}
.case-play-btn.sm { width: 34px; height: 34px; }
.case-play-btn.xs { width: 28px; height: 28px; }
.case-sm:hover .case-play-btn,
.case-mini:hover .case-play-btn { background: #fff; }
.case-play-icon {
  display: block; flex-shrink: 0;
  width: 15px; height: 15px;
  fill: var(--burg); margin-left: 2px;
}
.case-play-btn.sm .case-play-icon { width: 11px; height: 11px; }
.case-play-btn.xs .case-play-icon { width: 9px; height: 9px; }
.case-feat-play .case-play-icon { width: 20px; height: 20px; fill: var(--burg); }

/* Bottom grid: 4 mini cards */
.cases-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}
.case-mini {
  border-radius: 11px; overflow: hidden; cursor: pointer;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background .25s, border-color .25s, transform .25s;
}
.case-mini:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,169,106,0.2);
  transform: translateY(-3px);
}
.case-mini-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.case-mini-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.case-mini:hover .case-mini-thumb img { transform: scale(1.05); }
.case-mini-overlay {
  position: absolute; inset: 0;
  background: rgba(26,18,8,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.case-mini:hover .case-mini-overlay { background: rgba(92,23,23,0.48); }
.case-mini-body { padding: 11px 13px 13px; }
.case-mini-tag {
  font-size: 8px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 4px; opacity: 0.65;
}
.case-mini-title {
  font-size: 11.5px; font-weight: 600;
  color: rgba(255,255,255,0.78); line-height: 1.4;
}

/* CTA */
.cases-cta { text-align: center; }
.cases-cta-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  color: var(--gold);
  border: 1px solid rgba(212,169,106,0.3);
  padding: 11px 28px; border-radius: 8px;
  transition: background .2s, border-color .2s;
}
.cases-cta-link:hover {
  background: rgba(212,169,106,0.07);
  border-color: rgba(212,169,106,0.55);
}
.cases-cta-arr { transition: transform .2s; }
.cases-cta-link:hover .cases-cta-arr { transform: translateX(5px); }

/* Video Modal */
.video-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(26,18,8,0.92); z-index: 2000;
  align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
.video-modal.open { display: flex; }
.video-modal-inner {
  position: relative;
  width: min(92vw, 920px);
  aspect-ratio: 16/9;
}
.video-modal-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none;
  color: rgba(255,255,255,0.55);
  font-size: 22px; cursor: pointer;
  font-family: inherit; line-height: 1; transition: color .2s;
}
.video-modal-close:hover { color: #fff; }
#video-frame { width: 100%; height: 100%; border: none; border-radius: 12px; }

@media (max-width: 1024px) {
  .cases-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .cases-sec { padding: 72px 24px; }
  .cases-feat-row { grid-template-columns: 1fr; }
  .cases-stack { flex-direction: row; }
  .cases-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 580px) {
  .cases-stack { flex-direction: column; }
  .cases-grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .xmum-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px; }
  .mahkota-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px; }
  .xmum-divider { width: 100%; height: 1px; align-self: auto; }
  .xmum-right { padding-left: 0; }
  .mhk-right { padding-left: 0; }
  .partners-strip {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .partners-strip::-webkit-scrollbar { display: none; }
  .partner-item {
    flex: 0 0 auto;
    min-width: 140px;
    border-right: 1px solid rgba(122,31,31,0.07);
    border-bottom: none !important;
  }
  .partner-item:last-child { border-right: none; }
}

/* ═══ REVIEWS ═══ */
.reviews { background: var(--white); }
.rev-header {
  display: grid; grid-template-columns: auto 1fr;
  gap: 80px; align-items: center;
  margin-bottom: 64px;
}
.rev-big {
  text-align: center; border-right: var(--line); padding-right: 80px;
}
.rev-score {
  font-family: 'Playfair Display', serif;
  font-size: 88px; font-weight: 900; color: var(--burg); line-height: 1;
}
.rev-stars { font-size: 20px; color: #F5A623; letter-spacing: 4px; margin: 8px 0; }
.rev-count { font-size: 12px; color: var(--mist); letter-spacing: 0.06em; text-transform: uppercase; }
.rev-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.rev-card {
  background: var(--cream); padding: 32px;
  position: relative; transition: background 0.25s;
}
.rev-card:hover { background: var(--cream-off); }
.rev-card-q {
  position: absolute; top: 24px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 64px; color: rgba(122,31,31,0.06); line-height: 1;
}
.rev-stars-sm { color: #F5A623; font-size: 12px; letter-spacing: 2px; margin-bottom: 14px; }
.rev-text { font-size: 14px; color: var(--mid); line-height: 1.75; }
.rev-footer {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px; padding-top: 16px; border-top: var(--line);
}
.rev-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(122,31,31,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--burg);
  flex-shrink: 0;
}
.rev-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.rev-date { font-size: 11px; color: var(--mist); }
.rev-g-badge {
  margin-left: auto; font-size: 10px; font-weight: 600;
  background: rgba(66,133,244,0.1); color: #4285F4;
  padding: 3px 8px; border-radius: 4px; white-space: nowrap;
}

/* ═══ WHY ═══ */
.why { background: var(--cream-off); }
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.why-img {
  position: relative; border-radius: 2px; overflow: hidden;
  aspect-ratio: 4/3;
}
.why-img > img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.82);
}
.why-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 160px; height: 160px;
  background: var(--burg); opacity: 0.08;
  border-radius: 2px; z-index: -1;
}
.why-list { list-style: none; margin-top: 40px; }
.why-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0; border-bottom: var(--line);
  position: relative;
}
.why-item:first-child { border-top: var(--line); }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 11px; font-weight: 400; color: var(--gold);
  letter-spacing: 0.1em; padding-top: 2px; flex-shrink: 0;
  width: 24px;
}
.why-item-t { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.why-item-d { font-size: 13px; color: var(--mid); line-height: 1.65; }

/* ═══ FAQ ═══ */
.faq-section { background: var(--white); }
.faq-layout {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 100px;
}
.faq-left { position: sticky; top: 120px; align-self: start; }
.faq-list { margin-top: 0; }
.faq-item {
  border-bottom: var(--line);
  cursor: pointer; overflow: hidden;
}
.faq-item:first-child { border-top: var(--line); }
.faq-q-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 22px 0;
}
.faq-q-text {
  font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.5;
}
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(122,31,31,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--burg);
  transition: transform 0.3s, background 0.3s;
  margin-top: 2px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--burg); color: #fff; }
.faq-ans {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
  font-size: 14px; color: var(--mid); line-height: 1.8;
  padding: 0;
}
.faq-item.open .faq-ans { max-height: 200px; padding-bottom: 20px; }

/* ═══ LOCATION ═══ */
.location { background: var(--cream); }
.loc-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.loc-info-list { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.loc-info-item { display: flex; gap: 16px; align-items: flex-start; }
.loc-icon { font-size: 13px; font-weight: 700; color: var(--burg); display:flex; align-items:center; justify-content:center;
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(122,31,31,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.loc-label { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mist); margin-bottom: 4px; }
.loc-val { font-size: 14px; color: var(--mid); line-height: 1.6; }
.loc-val a { color: var(--burg); font-weight: 600; }
.map-wrap {
  border-radius: 2px; overflow: hidden; height: 400px;
  box-shadow: 0 8px 32px rgba(26,18,8,0.1);
  border: 1px solid rgba(122,31,31,0.08);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ═══ FOOTER ═══ */
footer {
  background: var(--burg-d);
  padding: 72px 0 32px;
  color: rgba(255,255,255,0.6);
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.foot-brand { font-family: 'Noto Serif SC', serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.foot-desc { font-size: 13px; line-height: 1.7; max-width: 280px; }
.foot-soc { display: flex; gap: 8px; margin-top: 20px; }
.foot-soc a {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px; transition: color 0.2s;
}
.foot-soc a:hover { color: var(--gold); }
.foot-h { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.foot-links a:hover { color: var(--gold); }
.foot-bar {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.04em; flex-wrap: wrap; gap: 8px;
}

/* ═══ WA FLOAT ═══ */
.waf {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 13px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s;
  animation: wapulse 3s infinite;
}
.waf:hover { transform: scale(1.04); animation: none; }
.waf svg { width: 22px; height: 22px; flex-shrink: 0; }
@keyframes wapulse { 0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.35)} 50%{box-shadow:0 6px 36px rgba(37,211,102,0.6)} }
.waf-text { line-height: 1.25; }
.waf-main { font-size: 13px; font-weight: 700; }
.waf-sub { font-size: 10px; opacity: 0.85; }

/* ═══ REVEAL ═══ */
.reveal { opacity: 1; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══ RESPONSIVE ═══ */
/* ── TABLET 1024px ── */
@media(max-width: 1024px) {
  .hero { display: flex; flex-direction: column; }
  .hero-img-side {
    display: block;
    order: -1;
    width: 100%;
    height: 55vh;
    min-height: 280px;
    position: relative;
  }
  .hero-img-side img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center bottom;
  }
  .hero-content { padding: 40px 48px 72px; }
  .hero-card { display: none; }
  .proof-inner { grid-template-columns: 1fr; }
  .proof-text { padding: 64px 0 32px; }
  .proof-nums { padding: 32px 0 64px; border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  /* FIX 3: 큰 배경숫자 태블릿에서 크기 줄임 */
  .proof-bg-num { font-size: 180px; right: -10px; top: -30px; }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-img { max-height: 360px; }
  /* FIX 4: why-img-accent 溢出保护 */
  .why-img-accent { display: none; }
  .rev-header { grid-template-columns: 1fr; gap: 40px; }
  .rev-big { border-right: none; padding-right: 0; border-bottom: var(--line); padding-bottom: 40px; }
  /* FIX 5: rev-score 태블릿 축소 */
  .rev-score { font-size: 72px; }
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-left { position: static; }
  .loc-grid { grid-template-columns: 1fr; gap: 48px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* ── MOBILE 768px ── */
@media(max-width: 768px) {
  /* NAV */
  nav { padding: 0 20px; height: 60px; }
  .nav-links { display: none; }
  .nav-r /* lang-sw visible on mobile via nav-r */
  .nav-r .nav-cta { display: none; }
  .burger { display: flex; }
  /* FIX 9: mob-menu z-index 确保在nav之上 */
  .mob-menu { z-index: 1000; padding-top: 80px; }
  nav { z-index: 1100; }

  /* LAYOUT */
  .inner { padding: 0 20px; }
  .section-pad { padding: 72px 0; }

  /* HERO — 上图下文布局 */
  .hero {
    display: flex;
    flex-direction: column;
  }
  /* 恢复图片，放在最顶 */
  .hero-img-side {
    display: block;
    position: relative;
    width: 100%;
    height: 35vh;
    min-height: 200px;
    order: -1;
  }
  .hero-img-side img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
  .hero-content { padding: 32px 20px 52px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 3px; margin-bottom: 20px; }
  .eyebrow { letter-spacing: 2px; font-size: 9px; }
  .hero-h1 { font-size: 34px; letter-spacing: -0.01em; }
  .hero-sub { font-size: 14px; margin: 16px 0 32px; }
  .hero-stats { flex-wrap: wrap; gap: 0; margin-bottom: 32px; }
  .hero-stat {
    flex: 0 0 50%;
    border-right: none; margin-right: 0;
    padding: 14px 0;
    border-bottom: var(--line);
  }
  .hero-stat:nth-child(odd) { border-right: var(--line); padding-right: 16px; }
  /* FIX 2: 4.9★ 与竖线距离 — 偶数格左侧补间距 */
  .hero-stat:nth-child(even) { padding-left: 16px; }
  .hero-stat:nth-last-child(-n+2) { border-bottom: none; }
  .hero-stat-n { font-size: 26px; }
  .hero-scroll { display: none; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .btn-prim { justify-content: center; padding: 14px 20px; font-size: 14px; }
  .btn-sec { justify-content: center; }

  /* TRUST */
  .trust-band { flex-direction: column; }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 18px 20px;
    min-width: unset;
  }
  .trust-item:last-child { border-bottom: none; }
  .trust-main { font-size: 12px; }
  .trust-sub { font-size: 9px; }

  /* SERVICES */
  .srv-header { grid-template-columns: 1fr; gap: 20px; }
  .srv-header-r { align-items: flex-start; }
  /* 手机服务卡 2列 */
  .srv-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: unset; gap: 3px; }
  .srv-card { aspect-ratio: 3/4; }
  .srv-card-name { font-size: 14px; }
  .srv-card-num { font-size: 10px; margin-bottom: 5px; }
  .srv-card-overlay { padding: 16px 14px; }
  /* 手机始终显示描述 */
  .srv-card-desc { max-height: 40px; opacity: 1; font-size: 10px; }
  .srv-card-arrow { opacity: 1; width: 26px; height: 26px; font-size: 12px; top: 12px; right: 12px; }

  /* PROOF */
  .proof-text { padding: 56px 0 24px; }
  .proof-nums { padding: 24px 0 56px; }
  .proof-num-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .proof-n { font-size: 38px; }
  .proof-n sup { font-size: 20px; }
  /* FIX 3: 背景大字手机隐藏，避免溢出 */
  .proof-bg-num { display: none; }
  .proof-h { font-size: 28px; }

  /* DOCTORS */
  /* FIX 2: docs-track-wrap 手机端 margin 匹配 inner padding */
  .docs-track-wrap { margin: 0; padding: 0; }
  /* docs-track gap handled by grid */
  /* doc-card width controlled by grid */
  /* doc-img uses aspect-ratio */

  /* REVIEWS */
  .rev-header { gap: 32px; }
  /* FIX 5: rev-score 手机大幅缩小 */
  .rev-score { font-size: 56px; }
  .rev-stars { font-size: 16px; }
  .rev-grid { grid-template-columns: 1fr; gap: 2px; }
  .rev-card { padding: 24px 20px; }

  /* WHY */
  .why-inner { grid-template-columns: 1fr; gap: 36px; }
  /* FIX 4+8: why-img 手机高度控制，img-accent已隐藏 */
  .why-img { max-height: 280px; border-radius: 2px; }
  .why-item { padding: 18px 0; gap: 16px; }
  .why-item-t { font-size: 14px; }
  .why-item-d { font-size: 12px; }

  /* FAQ */
  /* FIX 10: faq-toggle 增大点击区域 */
  .faq-toggle {
    width: 36px; height: 36px; flex-shrink: 0;
    min-width: 36px; min-height: 36px;
  }
  .faq-q-row { padding: 18px 0; gap: 12px; }
  /* FIX 9: faq-q-text 换行保护 */
  .faq-q-text { font-size: 14px; line-height: 1.5; word-break: keep-all; overflow-wrap: break-word; }

  /* LOCATION */
  .loc-grid { grid-template-columns: 1fr; gap: 40px; }
  .loc-info-list { gap: 20px; }
  .map-wrap { height: 280px; }

  /* FOOTER */
  footer { padding: 56px 0 24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-bar { flex-direction: column; text-align: center; gap: 6px; }

  /* WAF */
  .waf { bottom: 16px; right: 16px; padding: 10px 14px; gap: 8px; }
  .waf-main { font-size: 12px; }
  .waf-sub { display: none; }
}

/* ── SMALL MOBILE 480px ── */
@media(max-width: 480px) {
  /* NAV */
  nav { padding: 0 16px; height: 56px; }
  .nav-logo-mark { width: 28px; height: 28px; font-size: 10px; overflow:hidden; border-radius:50%; }
  .nav-logo-mark img { width:100%; height:100%; object-fit:contain; display:block; }
  .logo-mark { width: 28px !important; height: 28px !important; }
  .nav-logo { font-size: 14px; gap: 10px; }
  .nav-logo small { font-size: 8px; letter-spacing: 2px; }

  /* LAYOUT */
  .inner { padding: 0 16px; }
  .section-pad { padding: 60px 0; }

  /* HERO */
  .hero-img-side { height: 44vh; min-height: 180px; }
  .hero-content { padding: 24px 16px 44px; }
  .hero-h1 { font-size: 28px; }
  .hero-sub { font-size: 13px; }
  .hero-stat-n { font-size: 22px; }

  /* PROOF */
  .proof-num-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .proof-n { font-size: 32px; }
  .proof-num-item { padding-left: 14px; }
  .proof-label { font-size: 10px; }

  /* DOCTORS */
  .docs-track-wrap { margin: 0; padding: 0; }
  /* doc-card width controlled by grid */
  /* doc-img uses aspect-ratio */

  /* SERVICES */
  .srv-grid { grid-template-columns: 1fr; }
  .srv-card { aspect-ratio: 16/9; }
  .srv-card-overlay { padding: 16px; }
  .srv-card-name { font-size: 15px; }
  .srv-card-desc { max-height: 36px; opacity: 1; }

  /* REVIEWS */
  .rev-score { font-size: 48px; }
  .rev-card { padding: 20px 16px; }
  .rev-text { font-size: 13px; }

  /* FAQ */
  .faq-q-text { font-size: 13px; }

  /* LOCATION */
  .map-wrap { height: 240px; }

  /* FOOTER */
  footer { padding: 48px 0 20px; }
  .foot-brand { font-size: 14px; }
  .foot-desc { font-size: 12px; }

  /* MOB MENU */
  .mob-menu { padding: 72px 20px 36px; }
  .mob-menu a { font-size: 15px; padding: 13px 0; }
}

/* Hide WordPress admin bar and top domain/site URL display */
#wpadminbar,
#wpadminbar * {
    display: none !important;
}

html.wp-toolbar {
    padding-top: 0 !important;
}

body.admin-bar {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hide any element displaying the site URL or domain at the top */
.site-branding .site-description,
.wp-site-blocks .site-title a[href],
header .site-url,
header .domain-name,
.wp-block-site-title,
.wp-block-site-tagline,
#site-header .site-description,
.header-site-link,
.custom-logo-link + .site-branding-text,
[class*=domain],
[id*=domain] {
    display: none !important;
}

.loc-icon-map::after { content: '↗'; }
.loc-icon-wa::after { content: 'WA'; font-size: 11px; }
.loc-icon-time::after { content: '◷'; }

/* ═══ DOCTORS 2+3 LAYOUT ═══ */
.docs-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; flex-wrap: wrap;
  gap: 16px; margin-bottom: 48px;
}
.docs-scroll-hint {
  font-size: 13px; font-weight: 600; color: var(--burg);
  display: flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.docs-scroll-hint:hover { gap: 10px; }

/* 创办人行 — 两列各半 */
.docs-founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 3px;
}
/* 医师行 — 三等分 */
.docs-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.doc-card {
  background: var(--white);
  overflow: hidden;
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.doc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,18,8,0.1); }

.doc-img {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream2);
}
.doc-card-founder .doc-img { aspect-ratio: 3/4; }

.doc-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  transition: transform .5s ease;
  filter: saturate(.9);
}
.doc-card:hover .doc-img img { transform: scale(1.03); filter: saturate(1); }

.doc-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--burg); color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px;
}
.doc-badge-sm {
  background: rgba(122,31,31,0.85);
}

.doc-body {
  padding: 20px 22px 24px;
  border-top: 2px solid var(--cream2);
  transition: border-color .3s;
}
.doc-card:hover .doc-body { border-color: var(--gold); }
.doc-card-founder .doc-body { padding: 24px 28px 28px; }

.doc-name {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: 18px; font-weight: 700; color: var(--ink);
  margin-bottom: 3px; line-height: 1.2;
}
.doc-card-founder .doc-name { font-size: 20px; }

.doc-role { font-size: 11px; color: var(--mist); margin-bottom: 12px; letter-spacing: .03em; }
.doc-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.doc-tag {
  font-size: 11px; font-weight: 500;
  color: var(--burg);
  background: transparent;
  border: 1px solid rgba(122,31,31,0.35);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  display: inline-block;
}
.doc-tag:hover {
  background: var(--burg);
  color: #fff;
  border-color: var(--burg);
}
.doc-univ { font-size: 11px; color: var(--mist); margin-bottom: 12px; }
.doc-link {
  font-size: 12px; font-weight: 600; color: var(--burg);
  display: flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.doc-card:hover .doc-link { gap: 10px; }

/* Mobile */
@media (max-width: 768px) {
  .docs-founders { grid-template-columns: 1fr; }
  .docs-team { grid-template-columns: 1fr; }
  .doc-card-founder .doc-img { aspect-ratio: 3/4; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .docs-team { grid-template-columns: repeat(3, 1fr); }
}

/* ── FORCE founder card vertical layout ── */
.doc-card-founder {
  display: block !important;
}
.doc-card-founder .doc-img {
  width: 100% !important;
  aspect-ratio: 3/4 !important;
  height: auto !important;
}
.doc-card-founder .doc-body {
  width: 100% !important;
  display: block !important;
}

/* ═══ CLINIC SLIDER ═══ */
.clinic-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}
.cs-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  flex-wrap: nowrap;
}
.cs-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.cs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cs-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(26,18,8,0.45); backdrop-filter: blur(4px);
  color: #fff; border: none; cursor: pointer;
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 22px; line-height: 1;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.cs-btn:hover { background: rgba(122,31,31,0.8); }
.cs-prev { left: 12px; }
.cs-next { right: 12px; }
.cs-dots {
  position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.cs-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer; transition: background .2s, transform .2s;
}
.cs-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* 手机Nav预约按钮强制隐藏 */
@media(max-width:900px){
  .nav-cta { display:none!important; }
}

/* 手机菜单 section label — 对齐服务页 */
.mob-sec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  padding: 14px 0 4px;
}
