/* ---------- Inline-toggle language visibility ----------
   Two siblings with data-lang="en" and data-lang="zh" both live in the page;
   only one is visible at a time, driven by <html lang>. JS in agape-i18n.js
   toggles the lang attribute. */
html[lang="en"] [data-lang="zh"] { display: none !important; }
html[lang^="zh"] [data-lang="en"] { display: none !important; }

:root {
  --cream:   #F4ECDC;
  --cream-2: #ECE0C8;
  --ivory:   #FAF4E8;
  --plum:    #5E3F6E;
  --plum-2:  #7A5A89;
  --teal:    #4E8E89;
  --teal-2:  #6BA7A2;
  --ink:     #2B2030;
  --ink-2:   #5E4F60;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Mulish", -apple-system, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--plum); color: var(--ivory); }
img { max-width: 100%; display: block; }
a { color: var(--plum); transition: color 0.25s ease; }
a:hover { color: var(--teal); }

/* ---------- Back-to-gallery ---------- */
.back-to-gallery {
  position: fixed; top: 14px; left: 14px; z-index: 100;
  font-family: "Mulish", sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  background: var(--plum);
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(94, 63, 110, 0.5);
  transition: transform 0.25s ease, background 0.25s ease;
}
.back-to-gallery:hover { background: var(--teal); transform: translateY(-1px); color: var(--cream); }

/* ---------- Decorative orbs ---------- */
.orb { position: fixed; border-radius: 50%; filter: blur(70px); opacity: 0.45; pointer-events: none; z-index: -1; }
.orb-1 { width: 420px; height: 420px; background: radial-gradient(circle, var(--plum-2), transparent 65%); top: -120px; right: -120px; }
.orb-2 { width: 380px; height: 380px; background: radial-gradient(circle, var(--teal-2), transparent 65%); bottom: 10%; left: -140px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  width: 100%;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-2);
  box-shadow: 0 1px 0 rgba(94, 63, 110, 0.04), 0 12px 28px -24px rgba(94, 63, 110, 0.18);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-end {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
/* On mobile: lang toggle sits BEFORE hamburger via flex order.
   On desktop: nav-links and lang-toggle line up in DOM order (toggle last). */
.nav-end .lang-toggle { order: -1; }
@media (min-width: 900px) { .nav-end .lang-toggle { order: 0; } }
.brand { display: inline-flex; align-items: center; gap: 0.8rem; text-decoration: none; color: var(--ink); }
.brand-leaf { width: auto; height: 32px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: "Cormorant Garamond", serif; font-weight: 500; font-size: 1.65rem; letter-spacing: 0.01em; }
.brand-line { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-2); margin-top: 0.2rem; }

.nav-toggle-input { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-links {
  display: none;
  gap: 1.6rem;
  font-family: "Mulish", sans-serif;
  font-size: 0.93rem;
  color: var(--ink-2);
}
.nav-links a { text-decoration: none; color: var(--ink-2); transition: color 0.25s ease; white-space: nowrap; }
.nav-links a:hover { color: var(--plum); }
.nav-links a[aria-current="page"] { color: var(--plum); font-weight: 600; }

/* Language toggle button — always visible in nav-end */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  padding: 0.4rem 0.85rem;
  font-family: "Mulish", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--plum);
  background: transparent;
  border: 1px solid var(--plum);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
}
.lang-toggle:hover, .lang-toggle:focus-visible {
  background: var(--plum);
  color: var(--cream);
  outline: none;
  transform: translateY(-1px);
}
.lang-toggle:active { transform: translateY(0); }

/* ---------- Language toggle 3D flip animation ---------- */
/* flip-out: button turns edge-on; flip-in: springs back from the other side */
.lang-toggle.lt-flip-out {
  animation: lt-flip-out 170ms cubic-bezier(0.4, 0, 1, 0.6) forwards;
  pointer-events: none;
}
.lang-toggle.lt-flip-in {
  animation: lt-flip-in 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  pointer-events: none;
}
@keyframes lt-flip-out {
  0%   { transform: perspective(280px) rotateY(0deg)  scale(1);    box-shadow: 0 0 0 0 rgba(94,63,110,0);    }
  100% { transform: perspective(280px) rotateY(90deg) scale(0.72); box-shadow: 0 0 16px 4px rgba(94,63,110,0.45); }
}
@keyframes lt-flip-in {
  0%   { transform: perspective(280px) rotateY(-90deg) scale(0.72); box-shadow: 0 0 16px 4px rgba(94,63,110,0.45); }
  55%  { transform: perspective(280px) rotateY(10deg)  scale(1.07); box-shadow: 0 0 0 0 rgba(94,63,110,0);    }
  75%  { transform: perspective(280px) rotateY(-4deg)  scale(1.02); }
  100% { transform: perspective(280px) rotateY(0deg)   scale(1);    }
}

/* Inside the button: .lt-label shows 繁 (CJK) by default; .lt-latin switches to EN (Latin) */
.lang-toggle .lt-label {
  font-family: "Noto Serif HK", "Cormorant Garamond", "PingFang HK", "Microsoft JhengHei", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
}
.lang-toggle .lt-label.lt-latin {
  font-family: "Mulish", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ---------- CJK / Traditional Chinese typography ---------- */
:lang(zh-Hant),
html[lang^="zh"] body {
  font-family: "Noto Sans HK", "Mulish", -apple-system, "PingFang HK", "Microsoft JhengHei", sans-serif;
}
html[lang^="zh"] .h2,
html[lang^="zh"] .hero-title,
html[lang^="zh"] .sub-hero-title,
html[lang^="zh"] .brand-name,
html[lang^="zh"] .h2 em,
html[lang^="zh"] .hero-title em,
html[lang^="zh"] .sub-hero-title em,
html[lang^="zh"] .about-tagline,
html[lang^="zh"] .care-item h3,
html[lang^="zh"] .process-step h3,
html[lang^="zh"] .expertise-list h3,
html[lang^="zh"] .callout-body h3,
html[lang^="zh"] .service-card h3,
html[lang^="zh"] .career-card h3,
html[lang^="zh"] .contact-card h3,
html[lang^="zh"] .method-card h4,
html[lang^="zh"] .course-card h3,
html[lang^="zh"] .staff-card .staff-name,
html[lang^="zh"] .visit-card h3,
html[lang^="zh"] .page-callout h3,
html[lang^="zh"] .coming-soon h3,
html[lang^="zh"] .product-name,
html[lang^="zh"] .product-detail-copy h1,
html[lang^="zh"] .product-info-block h2 {
  font-family: "Noto Serif HK", "Cormorant Garamond", "PingFang HK", "Microsoft JhengHei", serif;
  letter-spacing: 0;
}
/* CJK doesn't render italic gracefully — use weight + colour for emphasis instead */
html[lang^="zh"] em,
html[lang^="zh"] .h2 em,
html[lang^="zh"] .hero-title em,
html[lang^="zh"] .sub-hero-title em {
  font-style: normal;
  font-weight: 600;
}
/* Looser line-height for CJK readability */
html[lang^="zh"] .hero-sub,
html[lang^="zh"] .sub-hero-sub,
html[lang^="zh"] .prose p,
html[lang^="zh"] .about-lede {
  line-height: 1.85;
}
/* Slightly tighter chip text for Chinese */
html[lang^="zh"] .chip-list li { font-family: "Noto Sans HK", "Mulish", sans-serif; }

/* Mobile: hamburger visible, dropdown when checked */
@media (max-width: 899px) {
  .nav-toggle-input:checked ~ .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.95rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(244, 236, 220, 0.97);
    backdrop-filter: blur(14px);
    padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem) 1.75rem;
    border-bottom: 1px solid var(--cream-2);
    font-size: 1rem;
  }
  .nav-toggle-input:checked + .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle-input:checked + .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-toggle-input:checked + .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Desktop: hamburger hidden, links inline */
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
}

/* ---------- Layout ---------- */
main { max-width: 1320px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

/* Present for screen readers and search engines, invisible on screen. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* First section on a page with no sub-hero — restores the top breathing room. */
.page-section-top { padding-top: clamp(2.5rem, 5vw, 4rem); }
section { padding: clamp(4rem, 9vw, 7rem) 0; }

.eyebrow,
.kicker {
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--plum);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow .dot { color: var(--ink-2); font-size: 1.2em; }
.kicker-light { color: var(--cream-2); }

.h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
  max-width: 22ch;
  margin-bottom: 1.75rem;
}
.h2 em { font-style: italic; color: var(--plum); }
.h2-light { color: var(--cream); }
.h2-light em { color: var(--teal-2); }

.lede {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 52ch;
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 860px;
  min-height: clamp(28rem, 58vh, 38rem);
  align-content: center;
  padding-top: clamp(3rem, 7vw, 5rem);
}
@media (min-width: 960px) {
  .hero { gap: 1.5rem; }
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 16ch;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--teal); font-weight: 400; }
.hero-emph { color: var(--plum); }

.hero-sub {
  max-width: 50ch;
  color: var(--ink-2);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-cta {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-top: 1.5rem;
}
.cta-row .btn-small { margin-top: 0; }

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  object-fit: contain;
  vertical-align: -0.15em;
}
.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  vertical-align: baseline;
}
.icon-link .icon {
  width: 1em;
  height: 1em;
}

.contact-methods {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-methods li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.contact-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--cream-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-icon .icon {
  width: 22px;
  height: 22px;
}
.contact-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.35;
}
.contact-label {
  font-family: "Mulish", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-2);
}

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--plum);
  color: var(--cream);
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn:hover { background: var(--teal); color: var(--ivory); transform: translateY(-2px); }
.btn .icon {
  width: 1.1em;
  height: 1.1em;
}
.btn.btn-whatsapp {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(37, 211, 102, 0.35);
  box-shadow: 0 10px 24px -18px rgba(37, 211, 102, 0.75);
}
.btn.btn-whatsapp:hover {
  background: #25D366;
  color: #fff;
}
.btn.btn-whatsapp .icon { transition: filter 0.25s ease; }
.btn.btn-whatsapp:hover .icon { filter: brightness(0) invert(1); }
/* Primary (filled) WhatsApp variant — the homepage hero's main call-to-action */
.btn.btn-whatsapp.btn-primary {
  background: #25d366;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 30px -16px rgba(37, 211, 102, 0.55);
}
.btn.btn-whatsapp.btn-primary .icon { filter: brightness(0) invert(1); }
.btn.btn-whatsapp.btn-primary:hover { background: #1da851; color: #fff; }
.btn-small { padding: 0.7rem 1.15rem; font-size: 0.85rem; margin-top: 1rem; }

.link {
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--plum);
  transition: gap 0.25s ease, color 0.25s ease;
  display: inline-flex; gap: 0.4rem; align-items: center;
}
.link:hover { color: var(--teal); gap: 0.7rem; }

/* ---------- Recovery process (timeline) ---------- */
/* Mobile: vertical rail down the left, numbered circles sitting on it.
   Desktop (≥960px): five columns with connector segments between the circles. */
.process-flow {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-top: 2.5rem;
  position: relative;
  padding-left: 3.5rem;
}
.process-flow::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  width: 1px;
  background: var(--cream-2);
}
.process-step { position: relative; }
.process-num {
  position: absolute;
  left: -3.5rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--plum);
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  padding-top: 0.35rem;
}
.process-step p { color: var(--ink-2); font-size: 0.97rem; }

@media (min-width: 960px) {
  .process-flow {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    padding-left: 0;
  }
  .process-flow::before { display: none; }
  .process-num { position: static; margin-bottom: 1rem; }
  .process-step h3 { padding-top: 0; }
  /* connector segment from this circle to the next one (spans the grid gap) */
  .process-step::before {
    content: "";
    position: absolute;
    top: 1.25rem;
    left: 3rem;
    right: -1.75rem;
    height: 1px;
    background: var(--cream-2);
  }
  .process-step:last-child::before { display: none; }
}

/* ---------- Care ---------- */
.care-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--cream-2);
}
.care-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--cream-2);
  transition: padding-left 0.3s ease;
}
.care-item:hover { padding-left: 0.75rem; }

.care-no {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--teal);
  line-height: 1;
}
.care-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
}
.care-item p { color: var(--ink-2); max-width: 56ch; }

/* ---------- Story ---------- */
.story {
  background: var(--plum);
  color: var(--cream);
  border-radius: 32px;
  margin: 3rem 0;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.story::after {
  content: "";
  position: absolute;
  right: -100px; bottom: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--teal-2), transparent 70%);
  border-radius: 50%;
  opacity: 0.4;
}
.story-inner { position: relative; max-width: 60ch; }
.story-body {
  color: var(--cream-2);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 1.5rem;
}

/* ---------- Visit ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 720px) { .visit-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.visit-card {
  padding: 2rem 1.75rem;
  background: var(--ivory);
  border-radius: 20px;
  border: 1px solid var(--cream-2);
}
.visit-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--plum);
}
.visit-card p { color: var(--ink-2); font-size: 0.98rem; line-height: 1.7; }
.visit-card a { text-decoration: none; }

/* ---------- About ---------- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 1.5rem;
  align-items: start;
}
@media (min-width: 880px) {
  .about-layout { grid-template-columns: 1.15fr 1fr; gap: 4.5rem; }
}

.about-narrative { max-width: 56ch; }
.about-lede {
  color: var(--ink-2);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.about-narrative > p { color: var(--ink-2); }
.about-narrative > p + p { margin-top: 1.25rem; }
.about-tagline,
.about-narrative > p.about-tagline {
  margin-top: 1.75rem;
  padding: 1.25rem 0 1.25rem 1.5rem;
  border-left: 2px solid var(--teal-2);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.35;
  color: var(--plum);
}

/* Founder checklist ("Individualised treatment plans", …) */
.about-checks { position: relative; }
.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.about-checklist li {
  position: relative;
  padding: 1.1rem 1.25rem 1.1rem 3rem;
  background: var(--ivory);
  border: 1px solid var(--cream-2);
  border-radius: 16px;
  font-weight: 500;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.about-checklist li:hover { transform: translateY(-2px); border-color: var(--plum-2); }
.about-checklist li::before {
  content: "✓";
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-weight: 700;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}
.expertise-list > li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--ivory);
  border-radius: 18px;
  border: 1px solid var(--cream-2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.expertise-list > li:hover { transform: translateY(-2px); border-color: var(--plum-2); }

.expertise-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.75rem;
  color: var(--teal);
  line-height: 1;
  padding-top: 0.15rem;
}
.expertise-list h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.expertise-list p { color: var(--ink-2); font-size: 0.97rem; line-height: 1.6; }

.about-callout {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 1.75rem;
  background: linear-gradient(135deg, var(--cream-2) 0%, var(--cream) 100%);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) {
  .about-callout {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2.25rem 2.5rem;
    align-items: center;
  }
}
.about-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(94,63,110,0.08), transparent 55%);
  pointer-events: none;
}
.callout-leaf {
  width: auto;
  height: 56px;
  flex-shrink: 0;
  opacity: 0.85;
}
.callout-body { position: relative; max-width: 60ch; }
.callout-body .kicker-callout { color: var(--teal); margin-bottom: 0.6rem; }
.callout-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.25;
  margin-bottom: 0.65rem;
  color: var(--ink);
}
.callout-body h3 em { font-style: italic; color: var(--plum); }
.callout-body p { color: var(--ink-2); font-size: 1rem; line-height: 1.65; margin-bottom: 0.9rem; }
.callout-body .link { font-size: 0.92rem; }

/* ---------- Photos ---------- */
.photos-blurb { color: var(--ink-2); max-width: 50ch; margin-bottom: 2.5rem; font-style: italic; font-family: "Cormorant Garamond", serif; font-size: 1.15rem; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 720px) { .photo-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.photo-tile {
  aspect-ratio: 4 / 3;
  padding: 0.65rem;
  background: var(--ivory);
  border-radius: 22px;
  border: 1px solid var(--cream-2);
  transition: transform 0.3s ease;
}
.photo-tile > div {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
}
.photo-tile > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
/* clinic-04 (logo wall) is tall relative to the 4:3 tile — keep the top in frame */
.photo-tile > img[src*="clinic-04"] { object-position: top; }
.photo-tile:hover { transform: translateY(-3px) rotate(-0.5deg); }

/* ---------- Careers ---------- */
.careers-blurb { color: var(--ink-2); max-width: 52ch; margin-bottom: 2.5rem; font-size: 1.02rem; }
.careers-blurb a { color: var(--plum); border-bottom: 1px solid var(--cream-2); }
.careers-list {
  list-style: none;
  border-top: 1px solid var(--cream-2);
}
.careers-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--cream-2);
  gap: 1rem;
  transition: padding-left 0.3s ease;
}
.careers-list li:hover { padding-left: 0.65rem; }
.careers-list span {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--plum);
}
.careers-list small {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-2);
}

/* ---------- Footer ---------- */
.foot {
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
  border-top: 1px solid var(--cream-2);
  background: var(--ivory);
}
.foot-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 700px) { .foot-inner { grid-template-columns: repeat(2, 1fr); gap: 3rem 2.5rem; } }
@media (min-width: 1040px) { .foot-inner { grid-template-columns: 1.6fr 1.1fr 1fr 0.9fr; } }

.foot-col-brand { max-width: 30ch; }
.foot-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.foot-leaf { width: 2rem; height: 2rem; }
.foot-brand-name {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--plum);
  line-height: 1.1;
}
.foot-brand-line {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.foot-address {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.6rem;
  align-items: start;
  text-decoration: none;
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.65;
  transition: color 0.25s ease;
}
.foot-address:hover { color: var(--plum); }
.foot-address .icon { width: 1.1rem; height: 1.1rem; margin-top: 0.2rem; }
.foot-address strong { color: var(--ink); font-weight: 600; }

.foot-heading {
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--plum);
  margin-bottom: 1.1rem;
}
html[lang^="zh"] .foot-heading { letter-spacing: 0.08em; }

.foot-contact { list-style: none; display: grid; gap: 0.7rem; margin-bottom: 1.5rem; }
.foot-contact li { display: flex; align-items: center; gap: 0.6rem; }
.foot-contact .icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.foot-contact a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.25s ease;
}
.foot-contact a:hover { color: var(--plum); }

.foot-hours { width: 100%; border-collapse: collapse; font-size: 0.88rem; color: var(--ink-2); }
.foot-hours td { padding: 0.3rem 0; vertical-align: top; }
.foot-hours td:last-child { text-align: right; color: var(--ink); white-space: nowrap; padding-left: 0.75rem; }

.foot-links { list-style: none; display: grid; gap: 0.6rem; }
.foot-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.foot-links a:hover { color: var(--plum); padding-left: 0.25rem; }

.foot-bar {
  max-width: 1320px;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid var(--cream-2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  align-items: center;
}
.foot-legal, .foot-meta {
  font-size: 0.8rem;
  color: var(--ink-2);
  letter-spacing: 0.03em;
}

/* ---------- Page-load reveal ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.eyebrow, .hero-title, .hero-sub, .hero-cta {
  animation: rise 1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero-title  { animation-delay: 0.08s; }
.hero-sub    { animation-delay: 0.18s; }
.hero-cta    { animation-delay: 0.28s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
