:root {
  --ink: #22332e;
  --ink-2: #40534c;
  --sage: #718f82;
  --sage-dark: #526f64;
  --sage-light: #dfe9e3;
  --cream: #f5f2ec;
  --paper: #fbfaf7;
  --sand: #ded1be;
  --terracotta: #b86655;
  --terracotta-soft: #ecd8d1;
  --gold: #b39055;
  --gold-soft: #eee3ca;
  --lilac: #80758f;
  --lilac-soft: #e5e0e9;
  --line: rgba(34, 51, 46, .14);
  --white: #fff;
  --serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --sans: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  --shadow: 0 30px 80px rgba(50, 67, 60, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::selection { color: #fff; background: var(--sage); }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { top: 20px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  border-bottom: 1px solid transparent;
  transition: .35s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(251, 250, 247, .92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(1420px, calc(100% - 64px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-logo { width: 250px; height: 54px; overflow: hidden; }
.brand-logo img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: left center; }
.brand-mark {
  position: relative;
  width: 39px;
  height: 39px;
  display: block;
}
.brand-mark i {
  position: absolute;
  bottom: 4px;
  width: 13px;
  height: 27px;
  border: 1.5px solid var(--ink);
  border-radius: 100% 0 100% 0;
  transform-origin: bottom center;
}
.brand-mark i:nth-child(1) { left: 2px; transform: rotate(-35deg); }
.brand-mark i:nth-child(2) { left: 13px; height: 34px; }
.brand-mark i:nth-child(3) { right: 1px; transform: rotate(35deg) scaleX(-1); }
.brand-copy { display: flex; flex-direction: column; gap: 3px; }
.brand-copy strong { font-family: var(--serif); font-size: 18px; letter-spacing: .12em; }
.brand-copy small { font-size: 8px; letter-spacing: .15em; opacity: .65; }
.main-nav { display: flex; align-items: center; gap: clamp(22px, 2.6vw, 44px); }
.main-nav a {
  position: relative;
  padding: 28px 0;
  color: var(--ink-2);
  font-size: 14px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 19px;
  width: 0;
  height: 1px;
  background: var(--sage);
  transition: .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { left: 0; width: 100%; }
.header-cta {
  padding: 12px 20px;
  border: 1px solid var(--ink);
  font-size: 13px;
  transition: .25s ease;
}
.header-cta span { margin-left: 12px; }
.header-cta:hover { color: white; background: var(--ink); }

.hero {
  position: relative;
  min-height: 790px;
  height: 100vh;
  max-height: 980px;
  overflow: hidden;
  background:
    linear-gradient(rgba(249,247,239,.93),rgba(249,247,239,.93)),
    repeating-linear-gradient(93deg,rgba(37,112,109,.035) 0 1px,transparent 1px 7px),
    #f6f3e9;
}
.hero::before {
  content: "";
  position: absolute;
  top: -25%;
  right: 2%;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(82,111,100,.13);
  border-radius: 50%;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1300px, calc(100% - 96px));
  height: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 70px;
  padding-top: 58px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
}
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.hero-edition { display: flex; gap: 14px; align-items: center; margin-bottom: 23px; color: #1c6c6d; font-size: 9px; letter-spacing: .19em; }
.hero-edition b { padding: 5px 10px; color: #fff; background: #237b79; font-weight: 500; transform: rotate(-2deg); }
.hero-kicker { margin: 0 0 4px; color: #242d2a; font-family: var(--serif); font-size: 17px; letter-spacing: .08em; }
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(66px, 6.4vw, 98px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.hero h1 em { color: #137b79; font-style: normal; text-shadow: 3px 3px 0 rgba(198,174,111,.18); }
.hero h1 small { margin-left: 9px; color: #29332f; font-size: .38em; font-weight: 400; letter-spacing: .05em; }
.hero-title-tag { width: max-content; margin: 12px 0 23px; padding: 7px 17px; color: white; background: #237b79; font-family: var(--serif); font-size: 15px; letter-spacing: .1em; transform: rotate(-1deg); }
.hero-specialty { margin: 0; color: #202725; font-family: var(--serif); font-size: clamp(32px,3vw,47px); font-weight: 400; line-height: 1.4; letter-spacing: .04em; }
.hero-intro {
  width: min(500px, 100%);
  margin: 18px 0 27px;
  color: #5e6c66;
  font-size: 16px;
  line-height: 2;
}
.hero-actions { display: flex; align-items: center; gap: 34px; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition: .25s ease;
}
.btn span { margin-left: 30px; }
.btn-primary {
  padding: 0 26px;
  color: white;
  background: var(--ink);
  box-shadow: 0 14px 35px rgba(34, 51, 46, .16);
}
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); }
.btn-text { min-height: auto; border-bottom: 1px solid var(--line); font-size: 13px; }
.btn-text span { margin-left: 18px; }
.hero-notes {
  display: flex;
  gap: 43px;
  margin-top: 62px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-notes div { display: flex; align-items: flex-start; gap: 12px; }
.hero-notes b { color: var(--sage); font-family: var(--serif); font-size: 19px; font-weight: 400; }
.hero-notes span { color: #6b7772; font-size: 12px; line-height: 1.65; }

.hero-visual { position: relative; height: 690px; }
.cover-portrait { position: absolute; inset: 0; overflow: hidden; }
.cover-portrait::before { content:""; position:absolute; inset: 8% 4% 4% 10%; background: rgba(255,255,255,.38); border: 1px solid rgba(29,104,101,.12); transform: rotate(.7deg); }
.cover-portrait > img { position: absolute; z-index: 3; right: 2%; bottom: -8%; width: 70%; height: 93%; object-fit: cover; object-position: center top; mix-blend-mode: multiply; filter: saturate(.48) contrast(1.04) brightness(1.08); -webkit-mask-image: linear-gradient(to bottom,#000 76%,transparent 99%); mask-image: linear-gradient(to bottom,#000 76%,transparent 99%); }
.cover-brush { position: absolute; z-index: 1; background: #237d79; opacity: .83; }
.brush-one { right: -6%; bottom: 2%; width: 82%; height: 43%; clip-path: polygon(4% 21%,15% 16%,18% 8%,35% 15%,53% 4%,75% 17%,100% 8%,94% 93%,71% 86%,57% 100%,36% 87%,17% 96%,0 77%); transform: rotate(-4deg); }
.brush-two { top: 24%; right: 0; width: 36%; height: 40%; opacity: .22; clip-path: polygon(19% 0,100% 10%,85% 100%,0 87%); transform: rotate(8deg); }
.cover-name { position: absolute; z-index: 6; top: 33%; right: 0; width: 175px; padding: 16px 20px; color: #fff; background: rgba(25,109,107,.91); text-align: right; }
.cover-name strong { display: block; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.cover-name span { font-size: 10px; line-height: 1.7; opacity: .82; }
.cover-signature { position: absolute; z-index: 7; top: 20%; left: 2%; color: #c5a660; font-family: "Segoe Script","STKaiti",cursive; font-size: 19px; font-style: italic; transform: rotate(-5deg); }
.cover-features { position: absolute; z-index: 8; bottom: 24%; left: 0; display: grid; gap: 13px; }
.cover-features > div { display: flex; align-items: center; gap: 11px; }
.cover-features i { width: 42px; height: 42px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.7); border-radius:50%; color:#fff; background:#167572; font-style:normal; }
.cover-features p { margin:0; display:flex; flex-direction:column; color:#182421; font-size:11px; line-height:1.5; }
.cover-features p strong { font-family:var(--serif); font-size:14px; font-weight:400; }
.cover-features p span { color:#5f6e68; font-size:9px; }
.cover-years { position:absolute; z-index:9; left:0; bottom:0; width:49%; padding:24px 20px 18px; color:#fff; background:#167572; clip-path:polygon(0 11%,91% 0,100% 100%,0 100%); }
.cover-years small,.cover-years em { display:block; font-size:8px; letter-spacing:.2em; font-style:normal; }
.cover-years strong { display:block; margin:-2px 0 -5px; font-family:"Times New Roman",serif; font-size:75px; font-weight:400; line-height:1; }
.cover-years sup { font-size:24px; }.cover-years strong span { margin-left:8px; font-family:var(--serif); font-size:31px; }
.cover-paper-note { position:absolute; z-index:10; right:0; bottom:1%; width:48%; padding:27px 20px 24px; color:#207774; background:#f5f1e7; box-shadow:-8px -7px 20px rgba(48,75,67,.1); font-family:var(--serif); font-size:13px; line-height:1.8; text-align:center; transform:rotate(2deg); }
.cover-paper-note b { font-size:17px; font-weight:400; }
.cover-clip { position:absolute; z-index:11; right:2%; bottom:16%; width:25px; height:48px; border:3px solid #b9944d; border-radius:12px 12px 4px 4px; transform:rotate(12deg); }
.cover-grain { position:absolute; z-index:12; inset:0; pointer-events:none; opacity:.16; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E"); mix-blend-mode:multiply; }
.cover-outline { position:absolute; z-index:2; top:4%; right:5%; width:53%; height:90%; border:1px solid rgba(37,117,113,.16); border-radius:48% 48% 12% 18%; transform:rotate(7deg); }
.cover-corner { position:absolute; z-index:8; top:3%; right:1%; color:#176d6d; font-family:"Times New Roman",serif; font-size:32px; line-height:.8; text-align:right; letter-spacing:.05em; }
.cover-corner small { font-family:var(--sans); font-size:7px; letter-spacing:.12em; }
.cover-volume { position:absolute; z-index:9; top:10%; right:1%; padding:5px 12px; color:#fff; background:#257b78; font-family:serif; font-size:10px; transform:rotate(2deg); }
.cover-mini-copy { position:absolute; z-index:7; top:12%; left:2%; display:flex; flex-direction:column; gap:5px; color:#6f7e76; font-size:9px; letter-spacing:.14em; }
.hero-collage { position: absolute; inset: 18px 0 8px 25px; }
.hero-photo { position: absolute; margin: 0; overflow: hidden; background: #d8e2dc; box-shadow: 0 28px 70px rgba(42,57,51,.16); }
.hero-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; filter: saturate(.88) contrast(.96); }
.hero-photo-main { inset: 0 112px 72px 35px; }
.hero-photo-main::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent,rgba(27,44,38,.68)); }
.hero-photo-main figcaption { position: absolute; z-index: 2; right: 28px; bottom: 27px; left: 30px; color: #fff; }
.hero-photo-main figcaption span { display: block; margin-bottom: 10px; font-size: 8px; letter-spacing: .25em; opacity: .72; }
.hero-photo-main figcaption strong { font-family: var(--serif); font-size: 21px; font-weight: 400; letter-spacing: .05em; }
.hero-quote { position: absolute; z-index: 4; top: 44px; right: 0; width: 225px; padding: 30px 28px 25px; color: #fff; background: var(--terracotta); box-shadow: 0 20px 45px rgba(113,63,52,.2); }
.hero-quote small,.hero-quote span { display: block; font-size: 8px; letter-spacing: .2em; opacity: .72; }
.hero-quote strong { display: block; margin: 28px 0 35px; font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.55; }
.hero-photo-small { z-index: 5; right: 22px; bottom: 0; width: 180px; height: 210px; border: 9px solid rgba(251,250,247,.95); }
.hero-color-note { position: absolute; z-index: 6; bottom: 25px; left: 0; width: 165px; padding: 22px; color: #3f493f; background: var(--gold-soft); box-shadow: 0 18px 45px rgba(94,79,48,.13); }
.hero-color-note b { display: block; margin-bottom: 24px; color: var(--gold); font-family: var(--serif); font-size: 24px; font-weight: 400; }
.hero-color-note span { font-size: 11px; line-height: 1.85; letter-spacing: .08em; }
.brand-stage {
  position: absolute;
  inset: 28px 15px 18px 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 38px 30px;
  overflow: hidden;
  border: 1px solid rgba(34,51,46,.13);
  background:
    linear-gradient(115deg,rgba(255,255,255,.9),rgba(220,231,224,.78)),
    #e5ece7;
  box-shadow: 0 35px 80px rgba(50,67,60,.11);
}
.brand-stage::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -10%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(82,111,100,.17);
  border-radius: 50%;
}
.brand-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,transparent 32%,rgba(255,255,255,.44) 32.2%,transparent 32.4%),
    linear-gradient(0deg,transparent 24%,rgba(255,255,255,.5) 24.2%,transparent 24.4%);
}
.stage-topline,.stage-footer { position: relative; z-index: 2; display: flex; justify-content: space-between; color: #75857e; font-size: 8px; letter-spacing: .2em; }
.stage-monogram {
  position: absolute;
  z-index: 1;
  right: -18px;
  top: 55px;
  color: rgba(82,111,100,.1);
  font-family: "Times New Roman",serif;
  font-size: 240px;
  line-height: 1;
  letter-spacing: -.13em;
}
.stage-message { position: relative; z-index: 3; width: 75%; margin: auto 0 auto 9%; }
.stage-message small { display: block; margin-bottom: 23px; color: var(--sage-dark); font-size: 9px; letter-spacing: .28em; }
.stage-message strong { display: block; font-family: var(--serif); font-size: 40px; font-weight: 400; line-height: 1.55; letter-spacing: .08em; }
.stage-footer { justify-content: flex-start; gap: 35px; padding-top: 19px; border-top: 1px solid rgba(34,51,46,.12); }
.hero-scroll {
  position: absolute;
  right: 30px;
  bottom: 60px;
  display: flex;
  align-items: center;
  gap: 13px;
  writing-mode: vertical-rl;
  color: rgba(34,51,46,.5);
  font-size: 8px;
  letter-spacing: .2em;
}
.hero-scroll span { width: 1px; height: 44px; background: rgba(34,51,46,.3); }

.section { padding: 120px 0; }
.section-inner { width: min(1240px, calc(100% - 96px)); margin: auto; }
.statement { background: var(--paper); }
.statement-grid { display: grid; grid-template-columns: 1fr 2.25fr; gap: 70px; }
.section-label {
  display: flex;
  gap: 15px;
  color: #7b8782;
  font-size: 10px;
  letter-spacing: .18em;
}
.section-label span { color: var(--sage-dark); font-family: var(--serif); font-size: 18px; }
.statement-copy > p:first-child { margin: 0 0 16px; color: var(--sage-dark); font-family: var(--serif); font-size: 18px; }
.statement-copy h2, .section-heading h2, .approach-copy h2, .about-copy h2, .consult-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: .04em;
}
.statement-copy h2 { font-size: clamp(38px, 3.6vw, 56px); line-height: 1.55; }
.muted { max-width: 700px; margin: 28px 0 0; color: #718078; font-size: 15px; line-height: 2; }
.statement-media { position:relative; grid-column:2; height:250px; margin:0; overflow:hidden; background:#dfe7e1; }
.statement-media img { width:100%; height:100%; display:block; object-fit:cover; object-position:center 25%; filter:saturate(.65); }
.statement-media::after { content:""; position:absolute; inset:40% 0 0; background:linear-gradient(transparent,rgba(25,57,50,.68)); }
.statement-media figcaption { position:absolute; z-index:2; right:28px; bottom:24px; left:28px; display:flex; align-items:flex-end; justify-content:space-between; color:#fff; }
.statement-media span { font-size:8px; letter-spacing:.22em; opacity:.75; }
.statement-media strong { font-family:var(--serif); font-size:20px; font-weight:400; }

.care-stories { padding-top: 25px; background: var(--paper); }
.care-stories .section-inner { display: grid; grid-template-columns: .72fr 1.28fr; gap: 75px; align-items: end; }
.care-intro { padding-bottom: 34px; }
.care-intro h2 { margin: 0; font-family: var(--serif); font-size: clamp(38px,3.4vw,53px); font-weight: 400; line-height: 1.5; }
.care-intro > p:last-child { margin: 28px 0 0; color: #718078; font-size: 14px; line-height: 2; }
.care-mosaic { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 245px 205px; gap: 18px; }
.care-card { position: relative; overflow: hidden; }
.care-card img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 18%; }
.care-card-photo { grid-row: 1 / 3; }
.care-card-photo::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent,rgba(31,47,41,.76)); }
.care-card-photo div { position: absolute; z-index: 2; right: 28px; bottom: 28px; left: 28px; color: #fff; }
.care-card-photo span,.care-card-text > span { display: block; margin-bottom: 12px; font-size: 8px; letter-spacing: .22em; }
.care-card-photo strong { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.care-card-text { padding: 30px; color: #fff; background: var(--lilac); }
.care-card-text strong { display: block; font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1.5; }
.care-card-text p { margin: 22px 0 0; color: rgba(255,255,255,.75); font-size: 11px; line-height: 1.8; }
.care-card-detail img { filter: saturate(.55); }
.care-card-detail div { position: absolute; right: 0; bottom: 0; display: flex; align-items: center; gap: 14px; padding: 16px 20px; color: #fff; background: var(--terracotta); }
.care-card-detail b { font-family: var(--serif); font-size: 26px; font-weight: 400; }
.care-card-detail span { font-size: 7px; line-height: 1.5; letter-spacing: .15em; }

.services {
  background:
    radial-gradient(circle at 18% 18%,rgba(190,155,111,.08),transparent 28%),
    radial-gradient(circle at 88% 70%,rgba(69,105,94,.07),transparent 30%),
    #f7f4ef;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}
.section-heading h2 { font-size: 48px; }
.section-heading > p { width: 500px; margin: 0; color: #6f7e77; font-size: 13px; line-height: 1.9; }
.service-grid { min-width:0; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.service-card {
  position: relative;
  min-width:0;
  min-height: 610px;
  padding: 8px 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(34,51,46,.1);
  border-radius: 11px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 44px rgba(68,58,47,.055);
  transition: .35s ease;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(34,51,46,.22); box-shadow: var(--shadow); }
.service-card.featured { color: #f6f4ee; background: linear-gradient(150deg,#294a41,#172f29); }
.service-card::after { display:none; }
.service-card.accent-rose .card-num,.service-card.accent-rose > a { color: var(--terracotta); }
.service-card.accent-gold .card-num,.service-card.accent-gold > a { color: var(--gold); }
.service-card.accent-lilac .card-num,.service-card.accent-lilac > a { color: var(--lilac); }
.card-num {
  position:absolute;
  z-index:3;
  top:18px;
  left:18px;
  min-width:48px;
  padding:8px 10px;
  border-radius:9px;
  color:var(--sage);
  background:rgba(250,247,240,.9);
  box-shadow:0 5px 18px rgba(35,45,41,.08);
  font-family:var(--serif);
  font-size:20px;
  line-height:1;
  text-align:center;
}
.featured .card-num { color:#fff; background:rgba(91,129,116,.9); }
.service-media {
  height:240px;
  margin:0 -20px 26px;
  overflow:hidden;
  border-radius:7px;
  background:#e7e2d9;
}
.service-media img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  filter:saturate(.88) contrast(.98);
  transition:transform .6s ease;
}
.service-card:hover .service-media img { transform:scale(1.035); }
.service-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 42px 0 30px;
  border: 1px solid rgba(113,143,130,.55);
  border-radius: 50%;
}
.service-icon::before, .service-icon::after, .service-icon i { content: ""; position: absolute; }
.icon-skin::before { inset: 19px; border: 1px solid var(--sage); border-radius: 50% 48% 52% 45%; }
.icon-skin::after { top: 29px; left: 35px; width: 9px; height: 9px; border: 1px solid var(--sage); border-radius: 50%; }
.icon-face::before { inset: 16px 22px; border: 1px solid #b9ccc2; border-radius: 50% 50% 44% 44%; }
.icon-face::after { top: 36px; left: 28px; width: 23px; height: 9px; border-top: 1px solid #b9ccc2; border-radius: 50%; }
.icon-shape::before { top: 14px; left: 26px; width: 28px; height: 48px; border: 1px solid var(--sage); border-radius: 55% 45% 50% 50%; transform: rotate(16deg); }
.icon-private::before { inset: 23px; border: 1px solid var(--sage); transform: rotate(45deg); }
.icon-private::after { inset: 31px; background: var(--sage); border-radius: 50%; }
.service-card h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.service-card h3::after { content:""; display:block; width:27px; height:1px; margin-top:12px; background:var(--gold); }
.service-card p { min-height: 58px; margin: 0; color: #6c7b74; font-size: 12px; line-height: 1.85; overflow-wrap:anywhere; }
.featured p { color: #bdc9c4; }
.service-card ul { margin: 17px 0 28px; padding: 0; list-style: none; }
.service-card li { padding: 8px 0; border-bottom:1px dashed rgba(34,51,46,.12); color: #66746e; font-size: 12px; }
.featured li { color: #b7c4be; }
.featured li { border-color:rgba(255,255,255,.12); }
.service-card li::before { content: "✓"; display:inline-grid; place-items:center; width:17px; height:17px; margin-right:10px; border:1px solid var(--sage); border-radius:50%; color:var(--sage); font-size:9px; }
.service-card a { position: absolute; bottom: 32px; font-size: 12px; }
.service-card a span { margin-left: 12px; }

.approach { overflow: hidden; background: var(--paper); }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: center; }
.approach-visual { position: relative; height: 620px; }
.approach-editorial { padding: 42px; border: 1px solid var(--line); background: #eef2ee; }
.approach-editorial::before { content: ""; position: absolute; inset: 42px; border-top: 1px solid rgba(34,51,46,.13); border-bottom: 1px solid rgba(34,51,46,.13); }
.editorial-head { position: relative; z-index: 2; display: flex; justify-content: space-between; color: #718079; font-size: 9px; letter-spacing: .23em; }
.editorial-head b { font-family: var(--serif); font-size: 13px; font-weight: 400; }
.editorial-main { position: relative; z-index: 2; margin: 90px 0 72px 45px; }
.editorial-main p,.editorial-main strong { margin: 0; font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: 1.55; }
.editorial-main p { color: #819087; }
.editorial-main strong { color: var(--ink); }
.editorial-lines { position: relative; z-index: 2; margin-left: 45px; }
.editorial-lines div { width: 80%; padding: 13px 0; border-top: 1px solid rgba(34,51,46,.12); color: #617169; font-size: 12px; }
.editorial-lines span { display: inline-block; width: 42px; color: var(--sage); font-family: var(--serif); }
.approach-copy h2 { font-size: 52px; line-height: 1.45; }
.lead { margin: 26px 0 35px; color: #65756e; font-size: 15px; line-height: 2; }
.principles > div {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
}
.principles > div > span { color: var(--sage); font-family: var(--serif); font-size: 16px; }
.principles section h3 { margin: 0 0 7px; font-family: var(--serif); font-size: 18px; font-weight: 400; }
.principles section p { margin: 0; color: #728079; font-size: 13px; line-height: 1.8; }

/* Uploaded PC approach artwork with semantic copy retained */
.approach-visual-section {
  padding: 52px 0 68px;
  overflow: hidden;
  background: #faf8f3;
}
.approach-visual-figure {
  width: min(1240px, calc(100% - 96px));
  aspect-ratio: 1672 / 941;
  margin: 0 auto;
  overflow: hidden;
  background: #faf8f3;
  box-shadow: 0 24px 70px rgba(71, 61, 44, .08);
}
.approach-visual-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.mobile-editorial { display: none; }

.team {
  background:
    radial-gradient(circle at 84% 12%,rgba(183,150,93,.08),transparent 23%),
    linear-gradient(135deg,#faf7f0 0%,#f7f1e8 52%,#f4f0e7 100%);
}
.team .section-heading { position:relative; }
.team .section-heading::after {
  content:"";
  position:absolute;
  bottom:-18px;
  left:0;
  width:250px;
  height:14px;
  background:linear-gradient(90deg,#c2a05f 0 42%,transparent 42% 58%,#c2a05f 58%);
  -webkit-mask:linear-gradient(#000 0 0);
  opacity:.55;
}
.doctor-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.doctor-card {
  position:relative;
  min-width:0;
  overflow: hidden;
  border: 1px solid rgba(181,145,77,.32);
  border-radius:18px;
  background: rgba(255,253,248,.86);
  box-shadow:0 18px 48px rgba(83,63,35,.08);
  transition: .35s ease;
}
.doctor-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.doctor-card:nth-child(2) { border-color:rgba(30,91,80,.4); }
.doctor-card:nth-child(3) { border-color:rgba(137,144,107,.42); }
.doctor-photo { position: relative; height: 390px; overflow: hidden; background:#e9e2d6; }
.doctor-card:nth-child(2) .doctor-photo { background:#244f49; }
.doctor-card:nth-child(3) .doctor-photo { background:#d9dac9; }
.doctor-photo::before {
  content:"";
  position:absolute;
  z-index:1;
  inset:auto -18% -18% -14%;
  height:55%;
  border-radius:50% 50% 0 0;
  background:#125c5e;
  transform:rotate(12deg);
  opacity:.96;
}
.doctor-card:nth-child(2) .doctor-photo::before { inset:-12% -25% auto 45%; height:52%; background:#c5a15c; border-radius:0 0 0 100%; transform:none; }
.doctor-card:nth-child(3) .doctor-photo::before { inset:auto -20% -24% -18%; background:#f3efe5; }
.doctor-photo::after {
  content: "";
  position: absolute;
  z-index:2;
  inset: auto 0 0;
  height: 25%;
  background: linear-gradient(transparent,rgba(21,54,49,.12));
}
.doctor-photo img {
  position:relative;
  z-index:2;
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center 8%;
  filter:saturate(.84) contrast(.96) brightness(1.03);
}
.doctor-photo span {
  position:absolute;
  z-index:4;
  left:24px;
  bottom:24px;
  display:flex;
  flex-direction:column;
  color:#e4c887;
  font-family:var(--serif);
}
.doctor-photo span small { font-size:9px; letter-spacing:.18em; }
.doctor-photo span b { margin-top:4px; font-size:37px; font-weight:400; line-height:1; }
.doctor-card-copy { position:relative; padding:22px 28px 26px; }
.doctor-role {
  display:inline-flex;
  align-items:center;
  margin:0 0 13px;
  padding:5px 16px;
  border-radius:999px;
  color:#254e46;
  background:#e4e8da;
  font-family:var(--serif);
  font-size:14px;
  letter-spacing:.08em;
}
.doctor-role::before { content:"♧"; margin-right:8px; font-size:13px; }
.doctor-card:nth-child(2) .doctor-role { color:#fff; background:#155a56; }
.doctor-card:nth-child(3) .doctor-role { color:#fff; background:#818c6d; }
.doctor-card h3 { margin:0 0 18px; font-family:var(--serif); font-size:34px; font-weight:400; line-height:1.15; }
.doctor-card h3 small { margin-left:12px; color:#a7824a; font-family:var(--sans); font-size:12px; font-weight:400; }
.doctor-direction-title { display:flex; align-items:center; gap:14px; margin:0 0 9px; color:#4e5b55; font-size:12px; letter-spacing:.08em; }
.doctor-direction-title::after { content:""; height:1px; flex:1; background:rgba(177,139,72,.35); }
.doctor-card ul { min-height:95px; margin:0; padding:0; list-style:none; }
.doctor-card li { padding:6px 0; color:#596962; font-size:12px; }
.doctor-card li::before { content:"✓"; display:inline-grid; place-items:center; width:16px; height:16px; margin-right:10px; border-radius:50%; color:#fff; background:#145d5c; font-size:9px; }
.doctor-card:nth-child(3) li::before { background:#7f896a; }
.doctor-license { margin:17px 0 15px; padding-top:13px; border-top:1px dashed rgba(177,139,72,.35); color:#7f8984; font-size:10px; line-height:1.7; }
.doctor-consult {
  width:100%;
  min-height:48px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  border:1px solid #c69c51;
  border-radius:999px;
  color:#e5c482;
  background:linear-gradient(90deg,#145956,#0c4b49);
  box-shadow:inset 0 0 0 2px rgba(255,255,255,.13);
  cursor:pointer;
  font-family:var(--serif);
  font-size:17px;
  transition:.25s ease;
}
.doctor-card:nth-child(3) .doctor-consult { background:linear-gradient(90deg,#798264,#687257); }
.doctor-consult span { font-size:21px; }
.doctor-consult:hover { color:#fff3d8; transform:translateY(-2px); box-shadow:0 12px 24px rgba(38,72,64,.17); }
.doctor-compliance-note { margin: 30px 0 0; color: #7b8781; font-size: 11px; line-height: 1.8; text-align: center; }
.btn-outline { padding: 0 25px; border: 1px solid var(--ink); }
.btn-outline:hover { color: white; background: var(--ink); }

.process { background: var(--paper); }
.section-heading.compact { margin-bottom: 65px; }
.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}
.process-list li {
  position: relative;
  min-height: 220px;
  padding: 32px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.process-list li:last-child { border-right: 1px solid var(--line); }
.process-list li > span { display: block; margin-bottom: 45px; color: var(--sage); font-family: var(--serif); }
.process-list h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 19px; font-weight: 400; }
.process-list p { margin: 0; color: #718079; font-size: 12px; line-height: 1.8; }
.process-list li::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 27px;
  right: -12px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--sage);
  background: var(--paper);
  font-size: 12px;
}
.process-list li:last-child::after { display: none; }

/* Uploaded PC visit-process artwork with semantic text retained in HTML */
.process-visual-section {
  padding: 52px 0 68px;
  overflow: hidden;
  background: #faf8f3;
}
.process-visual-figure {
  width: min(1240px, calc(100% - 96px));
  aspect-ratio: 1672 / 941;
  margin: 0 auto;
  overflow: hidden;
  background: #faf8f3;
  box-shadow: 0 24px 70px rgba(71, 61, 44, .08);
}
.process-visual-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.about { color: white; background: var(--ink); }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 100px; align-items: center; }
.eyebrow.light { color: #a7bcb2; }
.about-copy h2 { font-size: 48px; line-height: 1.5; }
.about-copy > p:not(.eyebrow) { margin: 26px 0 45px; color: #bdc7c2; line-height: 2; }
.about-facts { display: flex; gap: 55px; }
.about-facts div { display: flex; flex-direction: column; gap: 7px; }
.about-facts strong { color: #dce8e1; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.about-facts span { color: #91a099; font-size: 11px; }
.compliance-card { padding: 50px; color: var(--ink); background: #edf0ea; }
.compliance-en { color: var(--sage); font-size: 9px; letter-spacing: .25em; }
.compliance-card h3 { margin: 18px 0 28px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.compliance-card ul { margin: 0; padding: 0; list-style: none; }
.compliance-card li { position: relative; padding: 12px 0 12px 22px; border-top: 1px solid var(--line); color: #5f6d67; font-size: 13px; line-height: 1.7; }
.compliance-card li::before { content: "◇"; position: absolute; left: 0; color: var(--sage); }
.compliance-card > p { margin: 26px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: #7a8680; font-size: 11px; line-height: 1.8; }

/* Uploaded Qingmu brand philosophy artwork */
.about-visual-section {
  padding: 0;
  overflow: hidden;
  background: #102b27;
}
.about-visual-figure {
  width: min(100%, 1672px);
  margin: 0 auto;
  aspect-ratio: 1672 / 941;
}
.about-visual-figure picture {
  width: 100%;
  height: 100%;
  display: block;
}
.about-visual-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.consult { background: linear-gradient(110deg,#e8eee9 0%,#f1e8e2 100%); }
.consult-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.consult-copy h2 { font-size: 48px; }
.consult-copy > p:not(.eyebrow) { margin: 25px 0 40px; color: #65746d; font-size: 14px; line-height: 2; }
.privacy-note { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); }
.privacy-note > span { color: var(--sage); }
.privacy-note p { margin: 0; color: #6d7b74; font-size: 11px; line-height: 1.8; }
.consult-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.consult-form label { display: flex; flex-direction: column; gap: 10px; }
.consult-form label > span { color: #54635c; font-size: 12px; }
.consult-form input, .consult-form select {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(34,51,46,.16);
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: rgba(255,255,255,.7);
}
.consult-form input:focus, .consult-form select:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(113,143,130,.12); }
.consult-form .full { grid-column: 1 / -1; }
.consult-form .consent { flex-direction: row; align-items: center; gap: 10px; }
.consult-form .consent input { width: 15px; height: 15px; accent-color: var(--ink); }
.consult-form .consent span { color: #6b7972; font-size: 11px; line-height: 1.6; }
.consult-form .btn { width: 100%; }
.form-status { min-height: 20px; margin: 0; color: var(--sage-dark); font-size: 12px; }

.visit { background: var(--paper); }
.location-guide { position: relative; min-height: 570px; display: block; overflow: hidden; background: #f0f1ef; box-shadow: 0 24px 70px rgba(34,51,46,.08); }
.location-card { position: absolute; z-index: 20; top: 45px; bottom: 45px; left: 55px; width: 360px; padding: 42px 46px; background: rgba(255,255,255,.96); box-shadow: 0 8px 28px rgba(34,51,46,.08); }
.location-kicker { margin: 0 0 6px; font-family: var(--serif); font-size: 22px; }
.location-card h3 { margin: 0; color: #d5d8d6; font-size: 34px; font-weight: 300; letter-spacing: .08em; }
.location-rule { height: 1px; margin: 8px 0 45px; background: #d3d6d4; }
.location-item { display: grid; grid-template-columns: 34px 1fr; gap: 14px; margin-top: 29px; }
.location-item strong { display: block; margin-bottom: 7px; color: #54615c; font-family: var(--serif); font-size: 14px; font-weight: 400; }
.location-item p { margin: 0; color: #606d67; font-size: 13px; line-height: 1.75; }
.location-item small { color: #9aa39f; font-size: 9px; }
.location-icon { width: 30px; height: 30px; display: grid; place-items: center; color: #8b9892; font-size: 25px; }
.pin-icon { position: relative; width: 24px; height: 24px; margin: 2px 0 0 3px; border: 2px solid #9aa49f; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.pin-icon::after { content: ""; position: absolute; inset: 6px; border: 1px solid #9aa49f; border-radius: 50%; }
.location-phone { color: var(--ink) !important; font-family: var(--serif); font-size: 24px !important; letter-spacing: .03em; }
.location-time { color: var(--ink) !important; font-family: var(--serif); font-size: 24px !important; }

.route-map { position: absolute; inset: 0 0 0 360px; overflow: hidden; background: linear-gradient(145deg,#f7f7f6,#e9ebea); }
.route-map::before { content: ""; position: absolute; inset: -30%; background: repeating-linear-gradient(28deg,transparent 0 110px,rgba(255,255,255,.38) 112px 126px); }
.route-road { position: absolute; z-index: 2; height: 38px; background: #cbd0cd; box-shadow: inset 0 9px rgba(255,255,255,.22), inset 0 -1px rgba(117,129,123,.12); transform-origin: center; }
.route-road::after { content: ""; position: absolute; top: 19px; left: 0; right: 0; border-top: 1px dashed rgba(255,255,255,.82); }
.route-road span { position: absolute; color: rgba(255,255,255,.88); font-size: 12px; letter-spacing: .2em; white-space: nowrap; }
.route-main { top: 49%; left: -7%; width: 113%; transform: rotate(-7deg); }
.route-main span { top: 10px; left: 48%; }
.route-ring { top: 3%; right: 22%; width: 43px; height: 110%; transform: rotate(19deg); }
.route-ring span { top: 46%; left: -4px; transform: rotate(90deg); }
.route-north { top: 14%; left: 12%; width: 62%; height: 24px; transform: rotate(34deg); }
.route-south { bottom: 11%; left: 16%; width: 80%; height: 28px; transform: rotate(30deg); }
.route-side-a { top: 25%; left: 3%; width: 70%; height: 22px; transform: rotate(-24deg); }
.route-side-b { bottom: 24%; left: 22%; width: 55%; height: 22px; transform: rotate(-28deg); }

.map-building { position: absolute; z-index: 4; color: #aab1ad; font-size: 9px; text-align: center; }
.map-building i { display: inline-block; margin: 0 2px; background: linear-gradient(90deg,#d7dad8,#eef0ef); box-shadow: 7px 8px 0 rgba(167,175,171,.16); transform: skewY(-10deg); }
.map-building span { display: block; margin-top: 8px; padding: 5px 9px; border-radius: 14px; background: rgba(255,255,255,.75); white-space: nowrap; }
.building-a { top: 10%; right: 17%; }.building-a i:nth-child(1){width:42px;height:115px}.building-a i:nth-child(2){width:38px;height:82px}.building-a i:nth-child(3){width:28px;height:55px}
.building-b { top: 22%; left: 26%; }.building-b i:nth-child(1){width:35px;height:62px}.building-b i:nth-child(2){width:46px;height:90px}
.building-c { bottom: 15%; right: 29%; }.building-c i{width:44px;height:70px}
.building-d { top: 20%; right: 42%; }.building-d i{width:32px;height:49px}
.building-e { bottom: 19%; left: 18%; }.building-e i{width:38px;height:58px}

.metro { position: absolute; z-index: 7; display: flex; align-items: center; gap: 7px; color: #7c8782; font-size: 10px; }
.metro b { width: 27px; height: 27px; display: grid; place-items: center; border: 2px solid #818b86; border-radius: 50%; background: #f7f7f5; font-size: 11px; }
.metro-a { top: 37%; right: 8%; }.metro-b { top: 42%; right: 8%; transform: translateY(25px); }
.metro-exit-h { position:absolute; z-index:11; top:65%; left:calc(45% + 124px); display:flex; align-items:center; gap:7px; color:#65766e; font-size:10px; white-space:nowrap; }
.metro-exit-h b { width:31px; height:31px; display:grid; place-items:center; border-radius:50%; color:#fff; background:#16827d; box-shadow:0 7px 16px rgba(22,130,125,.22); font-size:13px; }
.metro-exit-h span { padding:5px 9px; border-radius:13px; background:rgba(255,255,255,.88); }
.route-dash { position: absolute; z-index: 6; top: 48%; right: 11%; width: 270px; border-top: 2px dashed var(--sage); transform: rotate(193deg); transform-origin: right; }
.destination-building { position: absolute; z-index: 8; top: 58%; left: 45%; width: 122px; height: 132px; padding: 13px 10px; background: linear-gradient(135deg,#9db6ab,#718f82); box-shadow: 14px 15px 0 rgba(82,111,100,.13); transform: skewY(-5deg); text-align: center; }
.destination-building i { display: block; height: 8px; margin: 8px 4px; background: rgba(255,255,255,.32); }
.destination-building strong { position: absolute; left: 50%; bottom: -28px; width: 110px; color: var(--sage-dark); font-family: var(--serif); font-size: 13px; font-weight: 400; transform: translateX(-50%) skewY(5deg); }
.destination-pin { position: absolute; z-index: 10; top: 53%; left: calc(45% + 87px); width: 44px; height: 52px; border-radius: 50% 50% 50% 0; color: white; background: #b45e54; box-shadow: 0 8px 15px rgba(104,55,49,.2); transform: rotate(-45deg); }
.destination-pin span { position: absolute; inset: 0; display: grid; place-items: center; font-size: 10px; transform: rotate(45deg); }
.route-caption { position: absolute; z-index: 9; top: 71%; left: 34%; padding: 7px 12px; color: #a04e46; background: rgba(255,255,255,.82); font-size: 11px; transform: rotate(-7deg); }
.compass { position: absolute; z-index: 5; right: 8%; bottom: 8%; width: 74px; height: 74px; border: 1px solid #afb7b3; border-radius: 50%; color: #89938e; text-align: center; }
.compass b,.compass small { position: absolute; left: 50%; font-size: 10px; transform: translateX(-50%); }.compass b{top:-18px}.compass small{bottom:-18px}
.compass span { position: absolute; top: 13px; left: 29px; border-right: 8px solid transparent; border-bottom: 36px solid var(--sage); border-left: 8px solid transparent; }
.map-open-guide { position: absolute; z-index: 15; right: 25px; bottom: 22px; padding: 13px 17px; color: white; background: var(--ink); font-size: 10px; transition: .25s ease; }
.map-open-guide span { margin-left: 15px; }
.location-guide:hover .map-open-guide { background: var(--sage-dark); transform: translateY(-2px); }

.arrival-tips { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 24px; border: 1px solid var(--line); }
.arrival-tips > div { position: relative; min-height: 130px; padding: 27px 28px 25px 66px; border-right: 1px solid var(--line); }
.arrival-tips > div:last-child { border-right: 0; }
.arrival-tips span { position: absolute; top: 27px; left: 25px; color: var(--sage); font-family: var(--serif); font-size: 14px; }
.arrival-tips strong { display: block; margin-bottom: 10px; font-family: var(--serif); font-size: 15px; font-weight: 400; }
.arrival-tips p { margin: 0; color: #78847e; font-size: 11px; line-height: 1.75; }
.route-note { margin: 20px 0 0; color: #909994; font-size: 10px; line-height: 1.8; text-align: center; }

.site-footer { color: #aebbb5; background: #192823; }
.footer-inner { width: min(1240px, calc(100% - 96px)); margin: auto; }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding: 65px 0 45px; border-bottom: 1px solid rgba(255,255,255,.11); }
.footer-brand { display: inline-flex; align-items: center; color: #dce8e1; opacity: .9; }
.footer-brand span { display: flex; flex-direction: column; }
.footer-brand strong { font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: .14em; }
.footer-brand small { margin-top: 5px; color: #9eb0a7; font-size: 8px; letter-spacing: .22em; }
.footer-brand:hover { opacity: 1; }
.footer-links { display: flex; gap: 34px; font-size: 12px; }
.footer-links a:hover { color: white; }
.footer-legal { padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-legal p { margin: 7px 0; font-size: 10px; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0 35px; font-size: 10px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }

.floating-consult {
  position: fixed;
  right: 24px;
  bottom: 25px;
  z-index: 50;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: white;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(34,51,46,.25);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  transition: .25s ease;
}
.floating-consult:hover { transform: translateY(-4px); background: var(--sage-dark); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (max-width: 1180px) {
  .main-nav { gap: 20px; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { gap: 60px; }
}

@media (max-width: 900px) {
  .site-header { position: absolute; }
  .header-inner, .section-inner, .hero-inner, .footer-inner { width: min(100% - 40px, 680px); }
  .main-nav { display: none; }
  .hero { height: auto; min-height: 1000px; }
  .hero-inner { grid-template-columns: 1fr; padding: 130px 0 70px; }
  .hero-visual { height: 650px; }
  .care-stories .section-inner { grid-template-columns: 1fr; gap: 38px; }
  .visual-card { inset: 25px 35px 15px 55px; }
  .statement-grid, .approach-grid, .about-grid, .consult-grid, .visit-grid { grid-template-columns: 1fr; gap: 55px; }
  .statement-grid { gap: 30px; }
  .section { padding: 85px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
  .section-heading > p { width: auto; }
  .doctor-grid { grid-template-columns: 1fr; }
  .doctor-photo { height: 520px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 160px; border-right: 1px solid var(--line); border-bottom: 0; }
  .process-list li:last-child { border-bottom: 1px solid var(--line); }
  .process-list li::after { top: auto; right: 20px; bottom: -12px; transform: rotate(90deg); }
  .location-guide { min-height: 880px; }
  .location-card { top: 30px; right: 30px; bottom: auto; left: 30px; width: auto; height: 350px; padding: 30px 36px; display: grid; grid-template-columns: repeat(3,1fr); column-gap: 28px; }
  .location-kicker,.location-card h3,.location-rule { grid-column: 1 / -1; }
  .location-rule { margin: 5px 0 15px; }
  .location-item { margin-top: 8px; }
  .location-card h3 { font-size: 27px; }
  .location-phone,.location-time { font-size: 18px !important; }
  .route-map { inset: 400px 0 0; }
  .arrival-tips { grid-template-columns: 1fr; }
  .arrival-tips > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .arrival-tips > div:last-child { border-bottom: 0; }
}

@media (max-width: 600px) {
  .brand-copy small { display: none; }
  .brand-logo { width: 190px; height: 44px; }
  .header-cta { padding: 10px 13px; }
  .hero h1 { font-size: 64px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-notes { gap: 18px; }
  .hero-visual { height: 590px; }
  .cover-portrait > img { right:-10%; width:82%; }
  .cover-name { top:34%; width:145px; }
  .cover-features { bottom:25%; }
  .cover-years { width:53%; }
  .hero-collage { inset: 0; }
  .hero-photo-main { right: 72px; left: 0; }
  .hero-quote { top: 24px; width: 175px; padding: 22px; }
  .hero-quote strong { margin: 20px 0; font-size: 20px; }
  .hero-photo-small { right: 0; width: 130px; height: 160px; }
  .hero-color-note { width: 135px; padding: 17px; }
  .care-mosaic { grid-template-columns: 1fr; grid-template-rows: 380px 230px 230px; }
  .care-card-photo { grid-row: auto; }
  .visual-card { inset: 25px 10px 15px; }
  .silhouette { right: -5%; }
  .tag-one { left: -10px; }
  .tag-two { right: -10px; }
  .service-grid { grid-template-columns: 1fr; }
  .doctor-photo { height: 420px; }
  .approach-visual { height: 470px; }
  .approach-center { inset: 130px 50px 105px 75px; }
  .about-facts { gap: 30px; }
  .about-visual-section { background: #102b27; }
  .about-visual-figure { width: 100%; aspect-ratio: 9 / 20; }
  .consult-form { grid-template-columns: 1fr; }
  .consult-form label { grid-column: 1 / -1; }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 35px; }
  .footer-links { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 15px; }
  .location-guide { min-height: 1050px; }
  .location-card { height: 530px; display: block; padding: 30px; }
  .location-item { margin-top: 24px; }
  .route-map { inset: 580px 0 0; }
  .destination-building { top:56%; left:42%; }
  .destination-pin { top:51%; left:calc(42% + 80px); }
  .metro-exit-h { top:64%; left:calc(42% + 115px); }
  .building-b,.building-e { display: none; }
  .route-dash { width: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Editorial doctor carousel */
.hero-carousel { min-height: 760px; height: 100vh; max-height: 920px; background: #f6f3ea; }
.hero-carousel::before { top: -38%; right: -8%; width: 780px; height: 780px; border-color: rgba(27,111,107,.1); }
.hero-slides,.hero-slide { position: absolute; inset: 0; }
.hero-slide { z-index: 0; visibility: hidden; opacity: 0; transform: translateX(35px); transition: opacity .65s ease,transform .65s ease,visibility 0s .65s; }
.hero-slide.is-active { z-index: 2; visibility: visible; opacity: 1; transform: translateX(0); transition-delay: 0s; }
.hero-carousel .hero-inner { grid-template-columns: .86fr 1.14fr; min-height: 760px; gap:42px; }
.hero-carousel .hero-content { position: relative; z-index: 4; padding-bottom: 25px; }
.hero-carousel .hero h1,.hero-carousel h1 { font-size: clamp(60px,5.6vw,88px); }
.hero-carousel .hero-specialty { margin-top: 25px; font-size: clamp(30px,2.75vw,43px); }
.hero-carousel .hero-kicker { margin-top: 4px; }
.hero-carousel .hero-edition { margin-bottom: 28px; }
.hero-carousel .hero-visual { height: 680px; }
.doctor-portrait { --accent:#1b7b77; position:absolute; inset:64px 0 44px; background:rgba(255,255,255,.38); border:1px solid rgba(34,51,46,.1); }
.doctor-portrait::before { content:"QINGMU"; position:absolute; z-index:4; top:27px; right:28px; color:var(--accent); font-family:"Times New Roman",serif; font-size:38px; letter-spacing:.06em; }
.doctor-portrait::after { content:""; position:absolute; z-index:3; right:-2%; bottom:0; width:71%; height:43%; background:var(--accent); opacity:.8; clip-path:polygon(0 28%,25% 15%,46% 26%,68% 8%,100% 17%,100% 100%,0 100%); }
.portrait-rose { --accent:#a86861; }.portrait-gold { --accent:#a6864e; }
.portrait-arch { position:absolute; z-index:2; top:16%; right:3%; width:58%; height:73%; overflow:hidden; background:#e4e8e1; box-shadow:0 26px 58px rgba(47,64,57,.12); }
.portrait-arch img { width:100%; height:100%; display:block; object-fit:cover; object-position:center top; filter:saturate(.7) contrast(.96) brightness(1.05); transform:scale(1.01); }
.portrait-arch::after { content:""; position:absolute; inset:auto 0 0; height:13%; background:linear-gradient(transparent,rgba(18,54,50,.14)); }
.portrait-caption { position:absolute; z-index:5; right:0; bottom:13%; min-width:300px; padding:21px 27px; color:white; background:var(--accent); }
.portrait-caption span { display:block; margin-bottom:9px; font-size:8px; letter-spacing:.24em; opacity:.75; }
.portrait-caption strong { font-family:var(--serif); font-size:21px; font-weight:400; letter-spacing:.05em; }
.portrait-note { position:absolute; z-index:6; left:4%; bottom:9%; padding:22px 27px; color:#53635d; background:rgba(255,253,247,.96); box-shadow:0 20px 50px rgba(45,61,55,.09); font-family:var(--serif); font-size:13px; line-height:1.85; transform:rotate(-1.2deg); }
.portrait-note b { color:var(--accent); font-size:18px; font-weight:400; }
.hero-carousel-controls { position:absolute; z-index:15; left:50%; bottom:34px; width:min(1300px,calc(100% - 96px)); display:flex; align-items:center; gap:15px; transform:translateX(-50%); }
.carousel-arrow { width:42px; height:42px; border:1px solid rgba(34,51,46,.18); border-radius:50%; color:var(--ink); background:rgba(255,255,255,.62); cursor:pointer; transition:.25s ease; }
.carousel-arrow:hover { color:white; border-color:var(--ink); background:var(--ink); }
.carousel-dots { display:flex; align-items:center; gap:7px; }
.carousel-dot { width:42px; height:20px; padding:0; border:0; background:transparent; cursor:pointer; }
.carousel-dot span { display:block; width:100%; height:2px; background:rgba(34,51,46,.2); transition:.35s ease; }
.carousel-dot.is-active span { background:#1b7b77; }
.carousel-count { margin-left:8px; color:#7d8883; font-family:var(--serif); font-size:12px; }
.carousel-count b { color:#1b7b77; font-size:19px; font-weight:400; }

/* Near full-screen editorial rhythm on desktop */
@media (min-width:901px) and (min-height:700px) {
  main > .section { min-height:clamp(720px,88vh,920px); display:flex; align-items:center; padding:80px 0; overflow:hidden; }
  .statement-grid { grid-template-columns:.35fr 1.05fr .9fr; align-items:center; }
  .statement-copy { grid-column:2; }
  .statement-media { grid-column:3; height:520px; }
  .care-stories .section-inner { align-items:center; }
  .services { min-height:max(860px,100vh); overflow:visible; }
  .service-card { min-height:580px; }
  .approach-visual { height:min(600px,68vh); }
  .team { min-height:max(980px,100vh); overflow:visible; }
  .doctor-photo { height:min(390px,43vh); }
  .process-list li { min-height:250px; }
  .visit { overflow:visible; }
  .location-guide { min-height:max(650px,72vh); }
  .location-card { top:35px; bottom:35px; padding-top:34px; padding-bottom:34px; }
  .location-rule { margin-bottom:30px; }
  .location-item { margin-top:24px; }
}

@media (max-width:900px) {
  .hero-carousel { height:auto; max-height:none; min-height:1120px; }
  .hero-carousel .hero-inner { min-height:1120px; grid-template-columns:1fr; align-content:start; padding-top:125px; }
  .hero-carousel .hero-visual { height:540px; }
  .hero-carousel-controls { width:min(100% - 40px,680px); bottom:25px; }
  .portrait-arch { right:10%; width:60%; }
  main > .section { min-height:auto; overflow:hidden; }
  .statement-media { grid-column:auto; height:360px; }
}
@media (max-width:600px) {
  .hero-carousel { min-height:1050px; }
  .hero-carousel .hero-inner { min-height:1050px; padding-top:115px; }
  .hero-carousel .hero h1,.hero-carousel h1 { font-size:57px; }
  .hero-carousel .hero-specialty { margin-top:18px; font-size:29px; }
  .hero-carousel .hero-intro { margin-bottom:20px; }
  .hero-carousel .hero-visual { height:440px; }
  .doctor-portrait { inset:5px 0 0; border:0; }
  .doctor-portrait::before { top:12px; right:8px; font-size:27px; }
  .doctor-portrait::after { width:88%; height:38%; }
  .portrait-arch { top:12%; right:4%; width:71%; height:70%; }
  .portrait-caption { min-width:235px; padding:18px 20px; }
  .portrait-caption strong { font-size:17px; }
  .portrait-note { left:0; bottom:5%; padding:18px 20px; }
  .carousel-arrow { width:38px; height:38px; }
  .carousel-dot { width:28px; }
  .statement-media { height:300px; }
  .statement-media figcaption { align-items:flex-start; flex-direction:column; gap:8px; }
}

/* Horizontal medical editorial banners */
.hero-carousel { min-height:680px; height:100vh; max-height:900px; padding-top:82px; background:#f1f0eb; }
.hero-carousel .hero-grain { opacity:.1; }
.editorial-banner {
  --banner-accent:#08747a;
  position:absolute;
  top:50%;
  left:50%;
  width:min(1500px,calc(100% - 64px));
  height:min(650px,calc(100vh - 145px));
  min-height:560px;
  display:grid;
  grid-template-columns:1.04fr .86fr 1fr;
  overflow:visible;
  border:1px solid rgba(27,72,67,.1);
  background:
    linear-gradient(95deg,rgba(251,249,243,.98) 0 54%,rgba(232,241,239,.93) 100%),
    #f8f6f0;
  box-shadow:0 28px 85px rgba(36,61,55,.12);
  transform:translate(-50%,-50%);
}
.editorial-banner::before {
  content:"";
  position:absolute;
  z-index:1;
  right:-3%;
  bottom:-8%;
  width:68%;
  height:62%;
  background:var(--banner-accent);
  opacity:.78;
  clip-path:polygon(0 62%,16% 43%,29% 51%,48% 22%,61% 41%,79% 15%,100% 29%,96% 100%,0 100%);
}
.editorial-banner::after {
  content:"";
  position:absolute;
  z-index:2;
  inset:0;
  pointer-events:none;
  opacity:.13;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.21'/%3E%3C/svg%3E");
  mix-blend-mode:multiply;
}
.banner-rose { --banner-accent:#9d6660; }
.banner-gold { --banner-accent:#9b824b; }
.banner-copy,.banner-focus,.banner-doctor { position:relative; z-index:5; }
.banner-copy { padding:46px 24px 58px 50px; }
.banner-brandline { display:flex; align-items:center; gap:15px; margin-bottom:36px; }
.banner-brandline span { color:#192522; font-family:var(--serif); font-size:28px; letter-spacing:.12em; }
.banner-brandline small { padding-left:15px; border-left:1px solid rgba(34,51,46,.18); color:#74817b; font-size:8px; line-height:1.6; letter-spacing:.16em; }
.banner-kicker { margin:0 0 6px; color:#2f3b37; font-family:var(--serif); font-size:16px; letter-spacing:.07em; }
.editorial-banner h1 { margin:0; color:var(--banner-accent); font-family:var(--serif); font-size:clamp(56px,5vw,78px); font-weight:400; line-height:1.1; }
.editorial-banner h1 small { display:inline-block; margin-left:12px; color:#26312e; font-size:18px; letter-spacing:.04em; }
.banner-signature { margin:4px 0 30px 90px; color:#ba9659; font-family:"Segoe Script","STKaiti",cursive; font-size:18px; font-style:italic; transform:rotate(-3deg); }
.banner-points { margin:0; padding:0; list-style:none; }
.banner-points li { position:relative; margin:13px 0; padding-left:20px; color:#485751; font-size:12px; }
.banner-points li::before { content:""; position:absolute; top:6px; left:0; width:7px; height:7px; border-radius:50%; background:var(--banner-accent); }
.banner-specialties { position:absolute; right:20px; bottom:49px; left:50px; display:flex; gap:9px; padding-top:20px; border-top:1px dashed rgba(21,100,98,.28); }
.banner-specialties span { padding:9px 13px; border:1px solid color-mix(in srgb,var(--banner-accent) 42%,transparent); border-radius:50%; color:var(--banner-accent); font-family:var(--serif); font-size:11px; }
.banner-focus { align-self:start; padding:82px 15px 0 16px; }
.banner-focus h2 { margin:0; color:#202927; font-family:var(--serif); font-size:clamp(34px,3vw,47px); font-weight:400; line-height:1.42; letter-spacing:.06em; }
.banner-focus h2::after { content:""; display:block; width:100%; height:4px; margin-top:21px; background:linear-gradient(90deg,var(--banner-accent),transparent); transform:skewX(-28deg); }
.banner-focus > p { margin:19px 0 34px; color:var(--banner-accent); font-family:var(--serif); font-size:15px; letter-spacing:.08em; }
.banner-actions { display:flex; gap:13px; }
.banner-actions a { padding:12px 18px; border:1px solid var(--banner-accent); color:var(--banner-accent); font-size:11px; }
.banner-actions a:first-child { color:#fff; background:var(--banner-accent); }
.banner-actions span { margin-left:18px; }
.banner-doctor { min-width:0; }
.banner-doctor::before { content:""; position:absolute; z-index:-1; top:13%; right:1%; width:83%; height:75%; border:1px solid color-mix(in srgb,var(--banner-accent) 32%,transparent); }
.banner-doctor img { position:absolute; z-index:4; right:1%; bottom:0; width:88%; height:88%; object-fit:cover; object-position:center top; filter:saturate(.82) contrast(.98) brightness(1.04); -webkit-mask-image:linear-gradient(#000 82%,transparent 100%); mask-image:linear-gradient(#000 82%,transparent 100%); }
.banner-qingmu { position:absolute; z-index:7; top:27px; right:27px; color:var(--banner-accent); font-family:"Times New Roman",serif; font-size:34px; text-align:right; letter-spacing:.06em; }
.banner-qingmu small { display:block; margin-top:3px; font-family:var(--sans); font-size:7px; letter-spacing:.12em; }
.banner-doctor-label { position:absolute; z-index:8; right:21px; bottom:66px; padding:15px 21px; color:#fff; background:var(--banner-accent); text-align:right; }
.banner-doctor-label strong { display:block; font-family:var(--serif); font-size:20px; font-weight:400; }
.banner-doctor-label span { font-size:9px; opacity:.8; }
.banner-disclaimer { position:absolute; z-index:9; right:32px; bottom:15px; left:32px; margin:0; color:rgba(32,54,49,.62); font-size:9px; text-align:center; }
.hero-carousel-controls { bottom:18px; }
.uploaded-hero-banner {
  position:absolute;
  top:50%;
  left:50%;
  width:min(1500px,calc(100% - 64px),calc((100vh - 145px) * 2.4));
  aspect-ratio:2.33 / 1;
  overflow:hidden;
  background:#f4f1e9;
  box-shadow:0 28px 85px rgba(43,58,52,.12);
  transform:translate(-50%,-50%);
  cursor:pointer;
}
.uploaded-hero-banner:focus-visible { outline:2px solid #347b70; outline-offset:5px; }
.uploaded-hero-banner picture { width:100%; height:100%; display:block; overflow:hidden; }
.uploaded-hero-banner img { width:100%; height:100%; display:block; }
.uploaded-hero-banner img { object-fit:contain; object-position:center; }
.banner-seo-copy { position:absolute; z-index:3; top:calc(100% + 12px); left:0; max-width:720px; padding-left:14px; border-left:3px solid #347b70; color:#324a43; background:transparent; }
.banner-seo-copy p { display:inline; margin:0 10px 0 0; color:#71827a; font-size:8px; letter-spacing:.18em; }
.banner-seo-copy h1,.banner-seo-copy h2 { display:inline; margin:0 12px 0 0; font-family:var(--serif); font-size:14px; font-weight:400; line-height:1.45; }
.banner-seo-copy span { color:#6c7c75; font-size:9px; line-height:1.5; }
.uploaded-banner-disclaimer { position:absolute; z-index:3; top:calc(100% + 14px); right:0; width:540px; margin:0; color:rgba(44,63,56,.67); background:transparent; font-size:8px; line-height:1.5; text-align:right; }
.location-phone span { display:block; }
.chat-anchor { position:absolute; width:1px; height:1px; overflow:hidden; }

/* Full-width editorial sections below the hero */
.sr-only {
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}
.editorial-image-section {
  min-height:auto;
  padding:0;
  display:block;
  overflow:hidden;
  background:#f7f3ed;
}
.editorial-section-figure {
  width:min(100%,1672px);
  margin:0 auto;
}
.editorial-section-figure picture,
.editorial-section-figure img {
  width:100%;
  display:block;
}
.editorial-section-figure img {
  height:auto;
  object-fit:contain;
}

/* PC homepage rhythm: keep editorial panels subordinate to the hero */
@media (min-width: 901px) {
  .hero-carousel-controls {
    bottom: 56px;
  }
  .about-visual-section {
    padding: 52px 0 68px;
  }
  .about-visual-figure {
    width: min(1240px, calc(100% - 96px));
    overflow: hidden;
    box-shadow: 0 26px 75px rgba(17, 43, 39, .18);
  }
  .editorial-image-section {
    padding: 46px 0 62px;
  }
  .editorial-section-figure {
    width: min(1240px, calc(100% - 80px));
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(49, 61, 56, .09);
  }
}
@media (min-width:901px) {
  main > .editorial-image-section {
    min-height:0;
    padding:46px 0 62px;
    display:block;
    overflow:hidden;
  }
}

@media (max-width:1100px) and (min-width:901px) {
  .editorial-banner { grid-template-columns:1fr .8fr .9fr; }
  .banner-copy { padding-left:34px; }
  .banner-brandline { margin-bottom:25px; }
  .banner-signature { margin-bottom:22px; }
  .banner-focus { padding-top:90px; }
}
@media (max-width:900px) {
  .hero-carousel { min-height:min(1060px,calc(133.333vw + 180px)); height:auto; padding-top:76px; }
  .editorial-banner {
    top:0;
    width:100%;
    height:900px;
    min-height:900px;
    grid-template-columns:1fr;
    grid-template-rows:390px 390px;
    transform:translateX(-50%);
    box-shadow:none;
  }
  .banner-copy { grid-row:1; padding:30px 24px; }
  .banner-brandline { margin-bottom:22px; }
  .banner-kicker { font-size:14px; }
  .editorial-banner h1 { font-size:56px; }
  .editorial-banner h1 small { font-size:14px; }
  .banner-signature { margin:2px 0 18px 70px; font-size:15px; }
  .banner-points li { margin:8px 0; }
  .banner-specialties { right:24px; bottom:18px; left:24px; }
  .banner-focus { display:none; }
  .banner-doctor { grid-row:2; }
  .banner-doctor img { right:2%; width:68%; height:103%; }
  .banner-qingmu { top:20px; right:20px; font-size:28px; }
  .banner-doctor-label { right:18px; bottom:45px; }
  .banner-disclaimer { bottom:8px; font-size:8px; }
  .hero-carousel-controls { bottom:16px; }
  .uploaded-hero-banner { top:0; width:100%; height:min(900px,133.333vw); min-height:0; aspect-ratio:auto; transform:translateX(-50%); box-shadow:none; }
  .uploaded-hero-banner img { object-fit:contain; object-position:center top; }
  .banner-seo-copy { top:calc(100% + 15px); right:18px; left:18px; max-width:none; padding-left:12px; }
  .banner-seo-copy p,.banner-seo-copy h1,.banner-seo-copy h2,.banner-seo-copy span { display:block; }
  .banner-seo-copy h1,.banner-seo-copy h2 { margin:3px 0; }
  .uploaded-banner-disclaimer { top:calc(100% + 82px); right:18px; left:18px; width:auto; text-align:left; }
  .hero-carousel-controls { bottom:12px; }
  .editorial-image-section { padding:0; }
  .editorial-section-figure { width:100%; }
}
@media (max-width:600px) {
  .hero-carousel { min-height:calc(133.333vw + 180px); }
  .editorial-banner { height:840px; min-height:840px; grid-template-rows:400px 365px; }
  .banner-copy { padding:24px 20px; }
  .banner-brandline span { font-size:23px; }
  .banner-brandline small { font-size:6px; }
  .editorial-banner h1 { font-size:50px; }
  .banner-points li { font-size:11px; }
  .banner-specialties { gap:5px; left:20px; right:20px; }
  .banner-specialties span { padding:7px 9px; font-size:9px; }
  .banner-doctor img { width:77%; height:103%; }
  .carousel-arrow { display:none; }
  .uploaded-hero-banner { height:133.333vw; min-height:0; }
  .banner-seo-copy h1,.banner-seo-copy h2 { font-size:15px; }
}

/* Mobile rebuild */
@media (max-width: 700px) {
  html { scroll-padding-top: 68px; }
  body { overflow-x: hidden; }
  .site-header {
    position: fixed;
    height: 68px;
    background: rgba(251,250,247,.97);
    border-bottom: 1px solid rgba(34,51,46,.1);
    backdrop-filter: blur(12px);
  }
  .site-header.scrolled { height: 68px; }
  .header-inner,
  .section-inner,
  .footer-inner {
    width: calc(100% - 28px);
  }
  .header-inner {
    position: relative;
    display: block;
  }
  .brand-logo {
    position: absolute;
    top: 50%;
    left: 0;
    width: 142px;
    max-width: 100%;
    height: 44px;
    transform: translateY(-50%);
  }
  .header-cta {
    position: absolute;
    top: 14px;
    right: 0;
    width: 96px;
    min-width: 0;
    height: 40px;
    padding: 0 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    white-space: nowrap;
  }
  .header-cta span { margin-left: 0; }

  .hero-carousel {
    height: calc(76px + (100vw - 24px) * 1.333333 + 72px);
    min-height: 0;
    max-height: none;
    padding: 0;
    background: #f4f2ed;
  }
  .uploaded-hero-banner {
    top: 76px;
    width: calc(100% - 24px);
    height: calc((100vw - 24px) * 1.333333);
    min-height: 0;
    aspect-ratio: auto;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 16px 42px rgba(42,61,54,.1);
    transform: translateX(-50%);
  }
  .uploaded-hero-banner picture,
  .uploaded-hero-banner img { width: 100%; height: 100%; }
  .uploaded-hero-banner img { object-fit: contain; object-position: center top; }
  .banner-seo-copy,
  .uploaded-banner-disclaimer {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  .hero-carousel-controls {
    bottom: 17px;
    width: calc(100% - 40px);
    height: 30px;
    gap: 9px;
  }
  .carousel-arrow { display: none; }
  .carousel-dot { width: 34px; height: 18px; }
  .carousel-count { margin-left: 8px; font-size: 11px; }
  .carousel-count b { font-size: 22px; }

  main > .editorial-image-section {
    min-height: 0;
    padding: 18px 12px;
    background: #f7f3ed;
  }
  .editorial-section-figure {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(48,61,55,.08);
  }
  .editorial-section-figure img { width: 100%; height: auto; object-fit: contain; }

  .section { padding: 58px 0; }
  .section-heading { gap: 13px; margin-bottom: 30px; }
  .section-heading h2 { font-size: 34px; line-height: 1.25; }
  .section-heading > p { font-size: 11px; line-height: 1.75; }
  .eyebrow { margin-bottom: 13px; font-size: 9px; }

  .service-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card {
    min-height: 0;
    padding: 12px 14px 16px;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
  }
  .service-card.featured { transform: none; }
  .service-media { height: 190px; margin: -2px -4px 18px; border-radius: 10px; overflow: hidden; }
  .service-card h3 { margin: 0 0 8px; font-size: 25px; }
  .service-card > p { min-height: 0; margin-bottom: 12px; font-size: 12px; line-height: 1.7; }
  .service-card ul { margin: 0 0 10px; }
  .service-card li { padding: 7px 0; font-size: 11px; }
  .service-card > a {
    position: static;
    width: 100%;
    margin-top: auto;
    padding: 14px 2px 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(34,51,46,.1);
    font-size: 12px;
  }
  .service-card.featured > a { border-color: rgba(255,255,255,.14); }
  .hero-carousel,
  .uploaded-hero-banner { touch-action: pan-y; }

  .approach-visual-section,
  .process-visual-section {
    padding: 0;
    background:
      linear-gradient(rgba(252,250,245,.9),rgba(247,242,233,.92)),
      url("assets/mobile/editorial-bg-mobile.jpg?v=2") center top / cover no-repeat;
  }
  .approach-visual-figure,
  .process-visual-figure { display: none; }
  .mobile-editorial {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 58px 4px 62px;
    display: block;
    color: #23443d;
  }
  .mobile-kicker {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 17px;
    color: #9a793e;
    font-size: 9px;
    letter-spacing: .24em;
  }
  .mobile-kicker::before { content: ""; width: 36px; height: 1px; background: #bd9957; }
  .mobile-editorial > h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 400;
    line-height: 1.42;
  }
  .mobile-lead { margin: 16px 0 24px; color: #66756f; font-size: 12px; line-height: 1.8; }
  .mobile-standard {
    margin-bottom: 18px;
    padding: 25px 22px;
    border: 1px solid rgba(179,144,80,.4);
    border-radius: 16px;
    background: rgba(255,253,247,.88);
    box-shadow: 0 14px 35px rgba(80,65,40,.08);
  }
  .mobile-standard small { color: #9b7b42; font-size: 8px; letter-spacing: .18em; }
  .mobile-standard strong { display: block; margin: 17px 0; font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1.65; }
  .mobile-standard ul { margin: 0; padding: 0; list-style: none; }
  .mobile-standard li { padding: 8px 0; border-top: 1px solid rgba(179,144,80,.18); color: #65736d; font-size: 11px; }
  .mobile-steps { display: grid; gap: 12px; }
  .mobile-steps article {
    min-height: 110px;
    padding: 18px;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 15px;
    align-items: start;
    border: 1px solid rgba(179,144,80,.22);
    border-radius: 14px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 10px 26px rgba(63,69,60,.05);
  }
  .mobile-steps article.featured { border-color: #cda854; box-shadow: 0 14px 34px rgba(173,130,54,.14); }
  .mobile-steps article > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid #c5a15c;
    border-radius: 50%;
    color: #a37b35;
    font-family: var(--serif);
    font-size: 15px;
  }
  .mobile-steps h3 { margin: 1px 0 7px; font-family: var(--serif); font-size: 20px; font-weight: 400; }
  .mobile-steps p { margin: 0; color: #6c7873; font-size: 11px; line-height: 1.7; }

  .team .section-heading::after { width: 160px; }
  .doctor-grid { grid-template-columns: 1fr; gap: 18px; }
  .doctor-photo { height: 300px; }
  .doctor-card-copy { padding: 19px 20px 22px; }
  .doctor-card h3 { font-size: 29px; }
  .doctor-card ul { min-height: 0; }
  .doctor-license { margin: 12px 0; }
  .doctor-consult { min-height: 44px; font-size: 15px; }

  .about-visual-section { padding: 18px 12px; }
  .about-visual-figure {
    width: 100%;
    aspect-ratio: 9 / 20;
    border-radius: 8px;
    box-shadow: 0 15px 38px rgba(13,43,38,.18);
  }

  .visit { padding-bottom: 42px; }
  .location-guide {
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: #eef1ef;
  }
  .location-card {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    height: auto;
    padding: 28px 24px 30px;
    display: block;
    box-shadow: none;
  }
  .location-card h3 { font-size: 27px; }
  .location-item { margin-top: 22px; }
  .route-map {
    position: relative;
    inset: auto;
    order: 2;
    height: 390px;
    overflow: hidden;
  }
  .map-open-guide { right: 14px; bottom: 14px; }
  .arrival-tips { margin-top: 16px; }
  .arrival-tips > div { min-height: 108px; padding: 22px 20px 20px 58px; }
  .arrival-tips span { top: 22px; left: 20px; }

  .footer-top { padding: 40px 0 28px; gap: 24px; }
  .footer-links { gap: 16px 22px; font-size: 11px; }
  .footer-legal { padding: 20px 0; }
  .footer-bottom { padding: 20px 0 28px; }
  .floating-consult {
    right: 14px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    font-size: 11px;
  }
}

/* Tablet and narrow desktop banner: use the horizontal PC artwork */
@media (min-width: 701px) and (max-width: 900px) {
  .site-header {
    position: absolute;
    height: 76px;
    background: rgba(251,250,247,.96);
    border-bottom: 1px solid rgba(34,51,46,.1);
    backdrop-filter: blur(12px);
  }
  .site-header.scrolled { height: 76px; }
  .header-inner { width: calc(100% - 40px); }
  .brand-logo { width: 210px; height: 48px; }
  .header-cta { padding: 10px 15px; font-size: 12px; }

  .hero-carousel {
    height: calc(88px + (100vw - 40px) / 2.4 + 70px);
    min-height: 0;
    max-height: none;
    padding: 0;
  }
  .uploaded-hero-banner {
    top: 88px;
    width: calc(100% - 40px);
    height: calc((100vw - 40px) / 2.4);
    min-height: 0;
    aspect-ratio: 2.4 / 1;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 18px 45px rgba(43,58,52,.11);
    transform: translateX(-50%);
  }
  .uploaded-hero-banner picture,
  .uploaded-hero-banner img { width: 100%; height: 100%; }
  .uploaded-hero-banner img { object-fit: cover; object-position: center; }
  .banner-seo-copy,
  .uploaded-banner-disclaimer {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  .hero-carousel-controls {
    bottom: 18px;
    width: calc(100% - 56px);
    height: 36px;
  }
  .carousel-arrow { width: 36px; height: 36px; }
  .carousel-dot { width: 34px; }
  .carousel-count b { font-size: 20px; }
}

/* Text-first hero banners: clear typography, SEO-readable copy, image-only portraits */
.text-hero-banner {
  position: absolute;
  isolation: isolate;
  display: block;
  color: #193e38;
  background:
    linear-gradient(105deg,rgba(252,252,249,.99) 0 57%,rgba(235,246,244,.96) 100%);
}
.text-hero-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 84% 12%,rgba(52,142,145,.14),transparent 31%),
    linear-gradient(155deg,transparent 54%,rgba(43,142,145,.2) 54.5%,rgba(43,142,145,.04) 75%,transparent 75.5%);
}
.text-hero-banner::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: -4%;
  bottom: -14%;
  width: 58%;
  height: 42%;
  background: linear-gradient(115deg,rgba(20,112,112,.75),rgba(84,190,193,.22));
  clip-path: polygon(0 48%,21% 26%,44% 38%,67% 10%,100% 26%,100% 100%,0 100%);
  opacity: .62;
  pointer-events: none;
}
.text-banner-copy {
  position: relative;
  z-index: 5;
  width: 59%;
  height: 100%;
  padding: clamp(34px,4.2vw,70px) 2% 44px 6%;
}
.text-banner-kicker {
  margin: 0 0 16px;
  color: #789087;
  font-size: clamp(8px,.7vw,11px);
  letter-spacing: .24em;
}
.text-banner-name {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 17px;
  font-family: var(--serif);
}
.text-banner-name strong {
  color: #08777a;
  font-size: clamp(43px,4.4vw,72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .05em;
}
.text-banner-name span { font-size: clamp(17px,1.6vw,26px); }
.text-banner-name em {
  padding: 8px 18px;
  color: white;
  background: linear-gradient(90deg,#08777a,#2c918d);
  font-family: var(--sans);
  font-size: clamp(10px,.9vw,14px);
  font-style: normal;
}
.text-banner-copy h1,
.text-banner-copy h2 {
  margin: 0;
  color: #26322f;
  font-family: var(--serif);
  font-size: clamp(32px,3vw,51px);
  font-weight: 400;
  line-height: 1.28;
}
.text-banner-copy h1::after,
.text-banner-copy h2::after {
  content: "";
  width: 78px;
  height: 2px;
  margin-top: 16px;
  display: block;
  background: #168184;
}
.text-banner-lead {
  margin: 16px 0 21px;
  color: #55716a;
  font-size: clamp(11px,1vw,15px);
  line-height: 1.8;
  letter-spacing: .08em;
}
.text-banner-specialties {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 9px;
}
.text-banner-specialties span {
  min-height: 52px;
  padding: 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16,121,122,.22);
  border-radius: 8px;
  color: #176b68;
  background: rgba(255,255,255,.68);
  font-family: var(--serif);
  font-size: clamp(10px,.9vw,14px);
  text-align: center;
}
.text-banner-profile {
  margin: 18px 0 0;
  color: #526761;
  font-size: clamp(10px,.85vw,13px);
  line-height: 1.75;
}
.text-banner-doctor {
  position: absolute;
  z-index: 2;
  inset: 0 0 0 auto;
  width: 45%;
  overflow: hidden;
}
.text-banner-doctor::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,#eff6f3 0%,transparent 24%,transparent 80%,rgba(234,245,243,.35));
  pointer-events: none;
}
.text-banner-doctor img {
  width: 100%;
  height: 108%;
  display: block;
  object-fit: cover;
  object-position: center 8%;
  filter: saturate(.84) contrast(.97) brightness(1.06);
  -webkit-mask-image: linear-gradient(90deg,transparent 0%,#000 18%,#000 100%);
  mask-image: linear-gradient(90deg,transparent 0%,#000 18%,#000 100%);
}
.text-banner-footer {
  position: absolute;
  z-index: 6;
  right: 3%;
  bottom: 8%;
  margin: 0;
  padding: 10px 19px;
  color: white;
  background: linear-gradient(90deg,#076d70,rgba(7,109,112,.82));
  font-family: var(--serif);
  font-size: clamp(10px,1vw,15px);
  letter-spacing: .1em;
}

@media (min-width: 701px) and (max-width: 900px) {
  .text-banner-copy { width: 61%; padding: 25px 1% 25px 4%; }
  .text-banner-kicker { margin-bottom: 8px; }
  .text-banner-name { gap: 9px; margin-bottom: 8px; }
  .text-banner-name strong { font-size: clamp(32px,5vw,43px); }
  .text-banner-name span { font-size: 15px; }
  .text-banner-name em { padding: 5px 10px; font-size: 9px; }
  .text-banner-copy h1,.text-banner-copy h2 { font-size: clamp(23px,3.4vw,31px); }
  .text-banner-copy h1::after,.text-banner-copy h2::after { width: 48px; margin-top: 8px; }
  .text-banner-lead { margin: 8px 0 10px; font-size: 10px; line-height: 1.55; }
  .text-banner-specialties { gap: 5px; }
  .text-banner-specialties span { min-height: 35px; padding: 4px; font-size: 9px; }
  .text-banner-profile { margin-top: 8px; font-size: 8px; line-height: 1.55; }
  .text-banner-footer { right: 2%; bottom: 6%; padding: 6px 10px; font-size: 9px; }
}

@media (max-width: 700px) {
  .text-hero-banner {
    background: linear-gradient(160deg,#fbfcfa 0%,#e5f3f1 100%);
  }
  .text-hero-banner::before {
    background:
      radial-gradient(circle at 86% 12%,rgba(48,145,147,.15),transparent 28%),
      linear-gradient(160deg,transparent 65%,rgba(31,140,143,.13) 65.5%,transparent 90%);
  }
  .text-hero-banner::after { width: 100%; height: 23%; right: 0; bottom: -5%; opacity: .42; }
  .text-banner-copy { width: 100%; padding: 29px 22px 25px; }
  .text-banner-kicker { margin-bottom: 12px; font-size: 7px; }
  .text-banner-name { position: relative; z-index: 4; gap: 10px; margin-bottom: 17px; }
  .text-banner-name strong { font-size: clamp(42px,12vw,55px); }
  .text-banner-name span { font-size: 18px; }
  .text-banner-name em { padding: 6px 10px; font-size: 9px; }
  .text-banner-copy h1,.text-banner-copy h2 {
    position: relative;
    z-index: 4;
    width: 62%;
    font-size: clamp(28px,8.2vw,38px);
    line-height: 1.38;
  }
  .text-banner-copy h1::after,.text-banner-copy h2::after { width: 48px; margin-top: 12px; }
  .text-banner-lead {
    position: absolute;
    z-index: 5;
    top: 44%;
    right: 22px;
    left: 22px;
    margin: 0;
    font-size: 11px;
    line-height: 1.65;
  }
  .text-banner-specialties {
    position: absolute;
    z-index: 5;
    right: 22px;
    bottom: 19%;
    left: 22px;
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
  }
  .text-banner-specialties span { min-height: 46px; font-size: 12px; background: rgba(255,255,255,.84); }
  .text-banner-profile { display: none; }
  .text-banner-doctor {
    top: 2%;
    right: -6%;
    bottom: auto;
    width: 57%;
    height: 43%;
  }
  .text-banner-doctor img {
    height: 100%;
    object-position: center 7%;
    -webkit-mask-image: linear-gradient(90deg,transparent 0%,#000 20%,#000 100%);
    mask-image: linear-gradient(90deg,transparent 0%,#000 20%,#000 100%);
  }
  .text-banner-footer {
    right: 22px;
    bottom: 5%;
    left: 22px;
    padding: 9px 12px;
    font-size: 11px;
    text-align: center;
  }
}

/* --- FAQ Section (SEO/GEO) --- */
.faq-section { background: var(--cream); }
.faq-section .section-heading { margin-bottom: 36px; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow .25s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(49,61,56,.08); }
.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 18px;
  color: var(--sage);
  transition: transform .25s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary h3 {
  margin: 0;
  font: 400 15px/1.5 var(--sans);
  color: var(--ink);
}
.faq-item[open] { border-color: var(--sage-light); }
.faq-item > p {
  margin: 0;
  padding: 0 20px 16px;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.7;
}
.faq-item > p a { color: var(--sage-dark); text-decoration: underline; }
@media (max-width: 600px) {
  .faq-list { max-width: 100%; }
  .faq-item summary { padding: 14px 16px; }
  .faq-item summary h3 { font-size: 14px; }
  .faq-item > p { padding: 0 16px 14px; font-size: 12px; }
}
