/* ==========================================================================
   MAYBLE K-BEAUTY CONCIERGE — SEOUL
   style.css — Base setup: design tokens, reset, typography, layout, components
   Static HTML + CSS + Vanilla JS · Mobile-first (375 / 768 / 1200)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS (CSS Custom Properties)
   -------------------------------------------------------------------------- */
:root {
  /* Gold accents */
  --gold:            #8B7355;   /* main */
  --gold-light:      #C9A96E;   /* lighter */
  --gold-soft:       #E5D9C7;   /* tints / hairlines on warm bg */

  /* Backgrounds */
  --bg:              #FAF9F6;   /* cream white (page) */
  --bg-warm:         #F5F0EB;   /* warm beige (alternating sections) */
  --bg-card:         #F8F5F1;   /* card surface */

  /* Text */
  --text-heading:    #1A1A1A;
  --text-body:       #3D3D3D;
  --text-sub:        #6B6B6B;
  --text-on-gold:    #FFFFFF;

  /* Lines */
  --border:          #E8E2DA;

  /* Aliases — `--color-*` naming kept in sync with the tokens above */
  --color-gold:      var(--gold);
  --color-gold-light:var(--gold-light);
  --color-bg:        var(--bg);
  --color-bg-warm:   var(--bg-warm);
  --color-bg-card:   var(--bg-card);
  --color-border:    var(--border);
  --color-heading:   var(--text-heading);
  --color-text:      var(--text-body);
  --color-sub:       var(--text-sub);

  /* Typography */
  --font-display:    "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:       "Noto Sans", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Type scale (fluid via clamp where it helps) */
  --fs-hero:    clamp(2.75rem, 6vw, 4.5rem);   /* big display */
  --fs-h1:      clamp(2.25rem, 4.5vw, 3.25rem);
  --fs-h2:      clamp(1.75rem, 3.5vw, 2.5rem);
  --fs-h3:      clamp(1.35rem, 2.4vw, 1.75rem);
  --fs-lead:    clamp(1.05rem, 1.6vw, 1.25rem);
  --fs-body:    1rem;
  --fs-small:   0.875rem;
  --fs-eyebrow: 0.8125rem;

  --lh-tight:   1.15;
  --lh-snug:    1.35;
  --lh-body:    1.7;

  --ls-eyebrow: 0.22em;   /* letterspacing for uppercase labels */
  --ls-display: 0.01em;

  /* Spacing scale */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;

  /* Layout */
  --container:        1200px;
  --container-narrow: 820px;
  --gutter:           1.25rem;

  /* Radius */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Shadows — soft luxury */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow:    0 6px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);

  /* Motion */
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur:       0.3s;

  /* Z-index */
  --z-nav:       100;
  --z-float:     90;
  --z-overlay:   200;
}

/* --------------------------------------------------------------------------
   2. RESET / NORMALIZE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* offset for sticky nav when jumping to anchors */
  scroll-padding-top: 88px;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-body);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; background: none; border: none; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

ul, ol { list-style: none; padding: 0; }

p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: var(--lh-tight);
  color: var(--text-heading);
  letter-spacing: var(--ls-display);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); }
h4 { font-size: 1.15rem; font-weight: 600; }

p { max-width: 68ch; }

.lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: var(--text-body);
}

/* Eyebrow / uppercase label with the brand star */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: "\2726"; /* ✦ */ color: var(--gold-light); font-size: 1em; }

.text-sub { color: var(--text-sub); }
.text-center { text-align: center; }

/* Display hero heading helper */
.display {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: var(--ls-display);
  color: var(--text-heading);
}

/* Decorative gold divider */
.divider {
  width: 56px;
  height: 1px;
  background: var(--gold-light);
  border: 0;
  margin: var(--space-md) 0;
}
.divider.is-center { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-xl); }
.section--alt { background-color: var(--bg-warm); }

@media (min-width: 768px) {
  .section { padding-block: var(--space-2xl); }
}

.section-head { margin-bottom: var(--space-lg); }
.section-head.is-center { text-align: center; }
.section-head.is-center .divider { margin-inline: auto; }

/* Responsive grid utility */
.grid { display: grid; gap: var(--space-md); }
@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.stack > * + * { margin-top: var(--space-sm); }

/* --------------------------------------------------------------------------
   5. COMPONENTS — Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.9em;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--text-on-gold);
}
.btn--primary:hover { background: #75603F; box-shadow: var(--shadow); }
.btn--ghost {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--ghost:hover { background: var(--gold); color: var(--text-on-gold); }
.btn--block { width: 100%; }

/* Card */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* --------------------------------------------------------------------------
   6. COMPONENT — Site Nav  (injected by components.js)
   -------------------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-nav.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(250, 249, 246, 0.95);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  height: 72px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Brand / logo */
.site-nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45em;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-heading);
  white-space: nowrap;
}
.site-nav__brand .star { color: var(--gold-light); font-size: 0.9em; }
.site-nav__brand small {
  font-family: var(--font-body);
  font-size: 0.5em;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Desktop links */
.site-nav__links {
  display: none;
  align-items: center;
  gap: var(--space-md);
}
.site-nav__link {
  position: relative;
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-body);
  padding-block: 0.5em;
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] { color: var(--gold); }
.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after { width: 100%; }

.site-nav__actions { display: flex; align-items: center; gap: var(--space-sm); }
.site-nav__cta { display: none; }

/* Hamburger */
.site-nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
}
.site-nav__toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--text-heading);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.site-nav.is-open .site-nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-nav.is-open .site-nav__toggle span:nth-child(2) { opacity: 0; }
.site-nav.is-open .site-nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.site-nav__mobile {
  position: fixed;
  inset: 72px 0 auto 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: var(--space-md) var(--gutter) var(--space-lg);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  z-index: var(--z-nav);
}
.site-nav.is-open .site-nav__mobile { opacity: 1; visibility: visible; transform: translateY(0); }
.site-nav__mobile .site-nav__link {
  display: block;
  padding-block: 0.9em;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
}
.site-nav__mobile .btn { margin-top: var(--space-md); }

@media (min-width: 1024px) {
  .site-nav__links { display: flex; }
  .site-nav__cta { display: inline-flex; }
  .site-nav__toggle { display: none; }
  .site-nav__mobile { display: none; }
}

/* --------------------------------------------------------------------------
   7. COMPONENT — Language switcher  (injected by components.js)
   -------------------------------------------------------------------------- */
.lang-switch { position: relative; }
.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.45em 0.85em;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-body);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.lang-switch__btn:hover { border-color: var(--gold-light); color: var(--gold); }
.lang-switch__btn .chev { transition: transform var(--dur) var(--ease); font-size: 0.7em; }
.lang-switch.is-open .lang-switch__btn .chev { transform: rotate(180deg); }
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.lang-switch.is-open .lang-switch__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-switch__item {
  display: flex;
  align-items: center;
  gap: 0.6em;
  width: 100%;
  padding: 0.6em 0.75em;
  font-size: var(--fs-small);
  text-align: left;
  border-radius: var(--radius-sm);
  color: var(--text-body);
}
.lang-switch__item:hover { background: var(--bg-warm); color: var(--gold); }
.lang-switch__item[aria-current="true"] { color: var(--gold); font-weight: 600; }
.lang-switch__item .flag { font-size: 1.1em; }

/* --------------------------------------------------------------------------
   8. COMPONENT — Floating messenger  (injected by components.js)
   -------------------------------------------------------------------------- */
.floating-msg {
  position: fixed;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  z-index: var(--z-float);
  display: flex;
  flex-direction: column;       /* top: consult, middle: list, bottom: toggle */
  align-items: flex-end;
  gap: 12px;
}
/* Persistent "Free Consultation" CTA — always visible above the messenger */
.floating-msg__consult {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.8em 1.3em;
  background: var(--gold);
  color: var(--text-on-gold);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  white-space: nowrap;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.floating-msg__consult:hover { background: #75603F; transform: translateY(-2px); color: var(--text-on-gold); }
.floating-msg__consult-star { color: var(--gold-light); }
.floating-msg__toggle {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--text-on-gold);
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.floating-msg__toggle:hover { background: #75603F; transform: translateY(-2px); }
.floating-msg__toggle svg { width: 26px; height: 26px; }
.floating-msg.is-open .floating-msg__toggle .icon-chat { display: none; }
.floating-msg__toggle .icon-close { display: none; }
.floating-msg.is-open .floating-msg__toggle .icon-close { display: block; }

.floating-msg__list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height var(--dur) var(--ease), opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.floating-msg.is-open .floating-msg__list { max-height: 320px; opacity: 1; transform: translateY(0); }

.floating-msg__item {
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  padding: 0.7em 1.1em 0.7em 0.85em;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-heading);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.floating-msg__item:hover { transform: translateX(-2px); box-shadow: var(--shadow); }
.floating-msg__item .dot {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.85em;
}
.floating-msg__item[data-channel="wechat"]   .dot { background: #09B83E; }
.floating-msg__item[data-channel="line"]      .dot { background: #06C755; }
.floating-msg__item[data-channel="whatsapp"]  .dot { background: #25D366; }
.floating-msg__item[data-channel="email"]     .dot { background: var(--gold); }

/* --------------------------------------------------------------------------
   9. COMPONENT — Footer  (injected by components.js)
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding-block: var(--space-xl) var(--space-lg);
  margin-top: var(--space-2xl);
}
.site-footer__grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}
.site-footer__brand .site-nav__brand { font-size: 1.6rem; }
.site-footer__tagline {
  margin-top: var(--space-sm);
  color: var(--text-sub);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  max-width: 32ch;
}
.site-footer__col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.site-footer__col a { display: block; padding-block: 0.35em; color: var(--text-body); font-size: var(--fs-small); }
.site-footer__col a:hover { color: var(--gold); }
.site-footer__bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-size: var(--fs-small);
  color: var(--text-sub);
}
.site-footer__bottom a { color: var(--text-sub); }
.site-footer__bottom a:hover { color: var(--gold); }

@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .site-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* --------------------------------------------------------------------------
   10. Reveal-on-scroll (progressive enhancement; JS adds .is-in)
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* Accessibility helper */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Prevent body scroll when mobile drawer open */
body.is-locked { overflow: hidden; }

/* Simplified Chinese — add Noto Sans SC to the font stacks.
   Latin (e.g. "MAYBLE") still renders in Cormorant; CJK falls back to Noto Sans SC. */
html[lang="zh"] {
  --font-body: "Noto Sans SC", "Noto Sans", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-display: "Cormorant Garamond", "Noto Sans SC", "PingFang SC", Georgia, serif;
}
/* Chinese reads better with slightly looser tracking on display type */
html[lang="zh"] .hero__logo { letter-spacing: 0.14em; }
html[lang="zh"] .eyebrow { letter-spacing: 0.16em; }

/* Japanese — add Noto Sans JP to the font stacks.
   Latin (e.g. "MAYBLE") still renders in Cormorant; CJK falls back to Noto Sans JP. */
html[lang="ja"] {
  --font-body: "Noto Sans JP", "Noto Sans", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-display: "Cormorant Garamond", "Noto Sans JP", "Hiragino Mincho ProN", Georgia, serif;
}
html[lang="ja"] .hero__logo { letter-spacing: 0.14em; }
html[lang="ja"] .eyebrow { letter-spacing: 0.14em; }

/* ==========================================================================
   11. HOME PAGE SECTIONS
   ========================================================================== */

/* ---- 11.1 Hero (full screen) ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--gutter);
  overflow: hidden;
  /* Temporary gradient — swap for a background image later */
  background:
    radial-gradient(120% 90% at 50% 0%, #FFFFFF 0%, var(--bg) 38%, var(--bg-warm) 100%),
    linear-gradient(160deg, rgba(201,169,110,0.10) 0%, rgba(139,115,85,0.05) 55%, rgba(245,240,235,0) 100%);
}
/* Soft marble-like sheen overlays */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 50% at 18% 22%, rgba(201,169,110,0.14), transparent 70%),
    radial-gradient(45% 55% at 82% 78%, rgba(139,115,85,0.10), transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 760px; }
.hero__star {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: var(--space-md);
  animation: mayble-float 5s var(--ease) infinite;
}
.hero__logo {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--text-heading);
  text-indent: 0.14em; /* compensate trailing letter-spacing */
}
.hero__sub {
  margin-top: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
}
.hero__slogan {
  margin: var(--space-md) auto 0;
  max-width: 26ch;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--text-body);
}
.hero__cta { margin-top: var(--space-lg); }

/* Scroll-down arrow */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 4vh, 40px);
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll svg { width: 22px; height: 22px; animation: mayble-bounce 2s var(--ease) infinite; }

@keyframes mayble-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}
@keyframes mayble-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-8px) rotate(8deg); }
}

/* ---- 11.2 Icon (gold line) shared by pillars / why / journey ---- */
.icon-line {
  width: 48px; height: 48px;
  color: var(--gold);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px; height: 76px;
  margin-bottom: var(--space-sm);
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold-soft);
}
.section--alt .icon-circle { background: #fff; }

/* ---- 11.3 Pillars (3 col) ---- */
.pillar { text-align: center; }
.pillar h3 { margin-bottom: var(--space-xs); }
.pillar p { margin-inline: auto; }

/* ---- 11.4 Why cards (4 col -> 2x2 on mobile) ---- */
.why-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card { text-align: center; }
.why-card .icon-circle { width: 64px; height: 64px; }
.why-card .icon-line { width: 38px; height: 38px; }
.why-card h4 { margin-bottom: 0.4em; font-size: 1.05rem; }
.why-card p { font-size: var(--fs-small); }

/* Gold banner */
.banner-gold {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--text-on-gold);
  text-align: center;
  box-shadow: var(--shadow);
}
.banner-gold p {
  max-width: none;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.banner-gold strong { font-weight: 600; }

/* ---- 11.5 Journey steps ---- */
.journey {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
  counter-reset: step;
}
.journey__step {
  position: relative;
  text-align: center;
  padding: var(--space-md);
}
.journey__num {
  counter-increment: step;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  margin-bottom: var(--space-sm);
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  background: var(--bg);
}
.journey__num::before { content: counter(step, decimal-leading-zero); }
.section--alt .journey__num { background: #fff; }
.journey__step h4 { margin-bottom: 0.3em; font-size: 1.1rem; }
.journey__step p { font-size: var(--fs-small); margin-inline: auto; max-width: 24ch; }

/* Connector arrow between steps */
.journey__step::after {
  content: "";
  position: absolute;
  color: var(--gold-light);
}
/* Vertical (mobile): arrow points down between stacked steps */
.journey__step:not(:last-child)::after {
  left: 50%;
  bottom: calc(-1 * var(--space-md) / 2);
  width: 1px; height: var(--space-md);
  background: var(--gold-soft);
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .journey { grid-template-columns: repeat(4, 1fr); align-items: start; }
  /* Horizontal: arrow points right, sits across the gap */
  .journey__step:not(:last-child)::after {
    left: auto;
    right: calc(-1 * var(--space-md) / 2 - 4px);
    top: 32px;
    bottom: auto;
    width: 18px; height: 18px;
    background: none;
    transform: translateY(-50%) rotate(45deg);
    border-top: 1.5px solid var(--gold-light);
    border-right: 1.5px solid var(--gold-light);
  }
}

/* ---- 11.6 CTA section ---- */
.cta-final { text-align: center; }
.cta-final h2 { margin-bottom: var(--space-md); }
.cta-final .btn { margin-top: var(--space-sm); }
.cta-channels {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.cta-channels a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-heading);
  font-weight: 700;
  font-size: var(--fs-small);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), color var(--dur) var(--ease);
}
.cta-channels a:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--gold); }
.cta-channels a svg { width: 24px; height: 24px; }

/* Staggered reveal helper */
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ==========================================================================
   12. INNER PAGES — header, forms, accordion, contact, prose
   ========================================================================== */

/* ---- 12.1 Page header ---- */
.page-header {
  padding: calc(var(--space-xl) + 72px) var(--gutter) var(--space-xl);
  text-align: center;
  background:
    radial-gradient(120% 100% at 50% 0%, #FFFFFF 0%, var(--bg) 45%, var(--bg-warm) 100%);
}
.page-header__inner { max-width: var(--container-narrow); margin-inline: auto; }
.page-header h1 { font-size: var(--fs-h1); }
.page-header .lead { margin: var(--space-sm) auto 0; }
@media (min-width: 768px) {
  .page-header { padding-top: calc(var(--space-2xl) + 72px); }
}

/* ---- 12.2 Forms ---- */
.form { display: grid; gap: var(--space-md); }
.form-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.4em; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: 0.02em;
}
.field label .req { color: var(--gold); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85em 1em;
  font-size: var(--fs-body);
  color: var(--text-body);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%238B7355' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18);
}
.field input::placeholder,
.field textarea::placeholder { color: #B5ADA3; }

/* Form status message */
.form-status {
  margin-top: var(--space-xs);
  padding: 0.9em 1.1em;
  border-radius: var(--radius);
  font-size: var(--fs-small);
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: #EEF6EE; color: #2F6B33; border: 1px solid #CFE6CF; }
.form-status.is-error   { background: #FBEDED; color: #9B2C2C; border: 1px solid #F0CFCF; }

/* ---- 12.3 Contact layout ---- */
.contact-layout {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .contact-layout { grid-template-columns: 1.2fr 0.8fr; align-items: start; } }

/* Messenger channel cards */
.channels { display: grid; gap: var(--space-sm); }
.channel {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.channel:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.channel__icon {
  flex: none;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
}
.channel__icon[data-c="wechat"]  { background: #09B83E; }
.channel__icon[data-c="line"]    { background: #06C755; }
.channel__icon[data-c="whatsapp"]{ background: #25D366; }
.channel__icon[data-c="kakao"]   { background: #FEE500; color: #3C1E1E; }
.channel__body { display: flex; flex-direction: column; }
.channel__body strong { color: var(--text-heading); font-size: var(--fs-body); }
.channel__body span { font-size: var(--fs-small); color: var(--text-sub); }

/* QR cards — one row per channel (icon + label + QR), matches the brand card */
.qr-list { display: grid; gap: var(--space-sm); }
.qr-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
a.qr-card { transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
a.qr-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--gold-light); }
.qr-card__label { display: flex; align-items: center; gap: 0.65em; flex: 1; min-width: 0; }
.qr-card__icon {
  flex: none;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
}
.qr-card__icon[data-c="wechat"]   { background: #09B83E; }
.qr-card__icon[data-c="line"]     { background: #06C755; }
.qr-card__icon[data-c="whatsapp"] { background: #25D366; }
.qr-card__text strong { display: block; color: var(--text-heading); font-size: var(--fs-body); }
.qr-card__text span { font-size: var(--fs-small); color: var(--text-sub); }
.qr-card__qr {
  flex: none;
  width: 92px; height: 92px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.qr-card__qr img { width: 100%; height: 100%; object-fit: contain; }
.qr-card__qr .ph { font-size: 0.7rem; line-height: 1.3; color: var(--text-sub); text-align: center; padding: 6px; }

/* WeChat QR placeholder */
.qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xs);
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.qr-box__img {
  width: 180px; height: 180px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px dashed var(--gold-soft);
  border-radius: var(--radius);
  color: var(--text-sub);
  font-size: var(--fs-small);
}
.qr-box__img img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--radius); }

/* ---- 12.4 Map embed (responsive) ---- */
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---- 12.5 Accordion (FAQ) ---- */
.accordion {
  max-width: var(--container-narrow);
  margin-inline: auto;
  border-top: 1px solid var(--border);
}
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-md) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--text-heading);
  transition: color var(--dur) var(--ease);
}
.accordion__trigger:hover { color: var(--gold); }
.accordion__icon {
  flex: none;
  position: relative;
  width: 20px; height: 20px;
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1.5px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__item.is-open .accordion__icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(0); }

.accordion__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur) var(--ease);
}
.accordion__panel-inner { padding: 0 0 var(--space-md); }
.accordion__panel-inner p { color: var(--text-body); max-width: 70ch; }

/* ---- 12.6 Prose (legal / privacy) ---- */
.prose { max-width: var(--container-narrow); margin-inline: auto; }
.prose h2 {
  font-size: var(--fs-h3);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.2rem; margin-top: var(--space-md); margin-bottom: var(--space-xs); }
.prose p { margin-bottom: var(--space-sm); }
.prose ul { margin: 0 0 var(--space-sm); padding-left: 1.25em; list-style: disc; }
.prose ul li { margin-bottom: 0.4em; padding-left: 0.25em; }
.prose ul li::marker { color: var(--gold-light); }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.prose .meta { color: var(--text-sub); font-size: var(--fs-small); }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-sm) 0 var(--space-md);
  font-size: var(--fs-small);
}
.prose th, .prose td {
  text-align: left;
  padding: 0.7em 0.9em;
  border: 1px solid var(--border);
  vertical-align: top;
}
.prose th { background: var(--bg-warm); font-weight: 600; color: var(--text-heading); }

/* ==========================================================================
   13. NAV DROPDOWN  (Treatments menu)
   ========================================================================== */
.site-nav__item { position: relative; display: inline-flex; align-items: center; }
.nav-chev { font-size: 0.62em; margin-left: 0.4em; transition: transform var(--dur) var(--ease); }

/* Hover bridge so the dropdown stays open across the gap */
.site-nav__item.has-children::after {
  content: "";
  position: absolute;
  left: -8px; right: -8px;
  top: 100%;
  height: 14px;
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 230px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  z-index: var(--z-nav);
}
.site-nav__item.has-children:hover .site-nav__dropdown,
.site-nav__item.has-children:focus-within .site-nav__dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.site-nav__item.has-children:hover .nav-chev,
.site-nav__item.has-children:focus-within .nav-chev { transform: rotate(180deg); }

.site-nav__drop-link {
  display: block;
  padding: 0.65em 0.85em;
  font-size: var(--fs-small);
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.site-nav__drop-link:hover,
.site-nav__drop-link[aria-current="page"] { background: var(--bg-warm); color: var(--gold); }

/* Mobile submenu */
.site-nav__submenu { padding-left: var(--space-md); border-left: 1px solid var(--gold-soft); margin-left: 2px; }
.site-nav__mobile .site-nav__sublink { font-size: 0.95rem; color: var(--text-sub); }
.site-nav__mobile .site-nav__sublink[aria-current="page"] { color: var(--gold); }

/* ==========================================================================
   14. TREATMENTS PAGES
   ========================================================================== */

/* ---- 14.1 Category cards (treatments.html) ---- */
.cat-grid { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
@media (min-width: 768px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }

.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-card__img {
  aspect-ratio: 4 / 3;
  display: flex; align-items: flex-end;
  padding: var(--space-md);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  /* gradient placeholder — swap for a real image later */
  background: linear-gradient(150deg, var(--gold-light) 0%, var(--gold) 100%);
}
.cat-card__img--facial   { background: linear-gradient(150deg, #D9C3A5 0%, #8B7355 100%); }
.cat-card__img--antiage  { background: linear-gradient(150deg, #CBB68F 0%, #9C7E55 100%); }
.cat-card__img--body     { background: linear-gradient(150deg, #C2A87E 0%, #7C6647 100%); }
.cat-card__body { display: flex; flex-direction: column; gap: var(--space-xs); padding: var(--space-lg); flex: 1; }
.cat-card__body h3 { margin: 0; }
.cat-card__body p { color: var(--text-sub); font-size: var(--fs-small); flex: 1; }
.cat-card__more {
  display: inline-flex; align-items: center; gap: 0.4em;
  margin-top: var(--space-xs);
  font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.04em;
  color: var(--gold);
}
.cat-card__more::after { content: "\2192"; transition: transform var(--dur) var(--ease); }
.cat-card:hover .cat-card__more::after { transform: translateX(4px); }

/* ---- 14.2 Treatment intro (detail pages) ---- */
.treatment-intro { max-width: var(--container-narrow); }
.treatment-intro .lead { margin-top: var(--space-sm); }

/* ---- 14.3 Procedure cards + spec rows ---- */
.proc-list { display: grid; gap: var(--space-md); }
.proc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.proc-card h3 { margin-bottom: 0.3em; }
.proc-card__desc { color: var(--text-sub); margin-bottom: var(--space-md); }
.proc-specs {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
}
@media (min-width: 600px) { .proc-specs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .proc-specs.proc-specs--4 { grid-template-columns: repeat(4, 1fr); } }
.spec { display: flex; flex-direction: column; gap: 0.2em; }
.spec__label {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.spec__value { font-size: var(--fs-small); color: var(--text-heading); font-weight: 500; }

/* ---- 14.4 Before / After gallery (placeholder grid) ---- */
.ba-gallery {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .ba-gallery { grid-template-columns: repeat(3, 1fr); } }
.ba-item {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  border: 1px dashed var(--gold-soft);
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-card) 100%);
  color: var(--text-sub);
  font-size: var(--fs-small);
  letter-spacing: 0.06em;
}
.ba-note { margin-top: var(--space-sm); font-size: var(--fs-small); color: var(--text-sub); text-align: center; }

/* ---- 14.5 Breadcrumb ---- */
.breadcrumb { font-size: var(--fs-small); color: var(--text-sub); margin-bottom: var(--space-sm); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.4em; color: var(--border); }

/* ==========================================================================
   15. JOURNEY PAGE — detailed vertical timeline + concierge cards
   ========================================================================== */
.timeline {
  position: relative;
  max-width: var(--container-narrow);
  margin-inline: auto;
}
/* vertical spine, aligned to the marker centre (32px) */
.timeline::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--gold-light), var(--gold-soft));
}
.timeline__step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-xl);
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__marker {
  position: relative;
  z-index: 1;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold);
  color: var(--gold);
}
.section--alt .timeline__marker { background: #fff; }
.timeline__marker svg { width: 30px; height: 30px; }
.timeline__content { padding-top: 4px; }
.timeline__step-label {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
}
.timeline__content h3 { margin: 0.15em 0 0.5em; }
.timeline__content ul { display: grid; gap: 0.45em; }
.timeline__content li {
  position: relative;
  padding-left: 1.4em;
  color: var(--text-body);
  font-size: var(--fs-small);
}
.timeline__content li::before {
  content: "\2726"; /* ✦ */
  position: absolute; left: 0; top: 0.05em;
  color: var(--gold-light);
  font-size: 0.8em;
}

/* ==========================================================================
   16. ABOUT PAGE — mission, team, partner logos
   ========================================================================== */

/* Mission statement */
.mission-quote {
  max-width: 40ch;
  margin: 0 auto var(--space-lg);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.3;
  color: var(--text-heading);
}
.mission-quote em { font-style: italic; color: var(--gold); }

/* Team profile cards */
.team-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.team-card__avatar {
  width: 110px; height: 110px;
  margin: 0 auto var(--space-sm);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold-soft);
  background: linear-gradient(150deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.1rem;
  letter-spacing: 0.04em;
}
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card__role {
  margin-bottom: var(--space-xs);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.team-card h4 { font-size: 1.15rem; margin-bottom: 0.2em; }
.team-card p { font-size: var(--fs-small); color: var(--text-sub); }

/* Partner clinic logos (placeholder boxes) */
.logo-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
.logo-box {
  aspect-ratio: 3 / 2;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-sub);
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
}
.logo-box img { max-width: 70%; max-height: 60%; object-fit: contain; }

/* ==========================================================================
   17. ENHANCEMENTS — trust banner, footer reg, nav Book Now, lead profile,
       related treatments, category tags, quick inquiry form
   ========================================================================== */

/* ---- 17.1 Government-registered trust banner (below hero) ---- */
.trust-banner {
  background: var(--bg-warm);
  border-block: 1px solid var(--gold-soft);
  padding-block: var(--space-md);
}
.trust-banner__inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  text-align: left;
}
.trust-banner__shield { flex: none; width: 44px; height: 44px; color: var(--gold); }
.trust-banner__shield svg { width: 100%; height: 100%; }
.trust-banner__text { display: flex; flex-direction: column; gap: 0.15em; }
.trust-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--text-heading);
  line-height: 1.3;
}
.trust-banner__meta { font-size: var(--fs-small); color: var(--text-sub); }
.trust-banner__meta strong { color: var(--gold); font-weight: 600; }
@media (max-width: 600px) {
  .trust-banner__inner { flex-direction: column; text-align: center; gap: var(--space-sm); }
}

/* ---- 17.2 Footer registration line ---- */
.site-footer__reg {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
  color: var(--text-sub);
}
.site-footer__reg + .site-footer__bottom { margin-top: var(--space-sm); padding-top: var(--space-sm); border-top: 0; }

/* ---- 17.3 Nav Book Now (distinct from menu) ---- */
.site-nav__booknow { box-shadow: 0 2px 10px rgba(139, 115, 85, 0.28); }

/* ---- 17.4 Lead profile (Medical Director, featured) ---- */
.lead-profile {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
  align-items: center;
  max-width: var(--container-narrow);
  margin: 0 auto var(--space-lg);
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 700px) { .lead-profile { grid-template-columns: 150px 1fr; align-items: start; } }
.lead-profile__avatar {
  width: 130px; height: 130px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold-soft);
  background: linear-gradient(150deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.4rem;
}
.lead-profile__avatar img { width: 100%; height: 100%; object-fit: cover; }
.lead-profile__role {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.lead-profile h3 { margin: 0.15em 0 var(--space-sm); }
.lead-profile ul { display: grid; gap: 0.5em; }
.lead-profile li {
  position: relative;
  padding-left: 1.4em;
  font-size: var(--fs-small);
  color: var(--text-body);
}
.lead-profile li::before {
  content: "\2726"; position: absolute; left: 0; top: 0.1em;
  color: var(--gold-light); font-size: 0.8em;
}

/* ---- 17.5 Category card representative-treatment tags ---- */
.cat-card__tags {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ---- 17.6 Related treatments (2-up) ---- */
.related-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
  max-width: var(--container-narrow);
  margin-inline: auto;
}
@media (min-width: 600px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- 17.7 Home quick inquiry form (in CTA section) ---- */
.quick-form {
  max-width: 560px;
  margin: var(--space-lg) auto 0;
  text-align: left;
}
.quick-form .form-grid { gap: var(--space-sm); }
.quick-form .btn { width: 100%; margin-top: var(--space-xs); }
.cta-final .quick-form + .cta-channels { margin-top: var(--space-lg); }

/* ==========================================================================
   18. JOURNEY — service tiers (Always Included vs Optional Add-ons)
   ========================================================================== */
.svc-part + .svc-part { margin-top: var(--space-2xl); }
.svc-head { text-align: center; margin-bottom: var(--space-lg); }
.svc-head__label {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
}
.svc-head__sub { margin: 0.6em auto 0; max-width: 52ch; font-size: var(--fs-small); color: var(--text-sub); }

.svc-grid { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
@media (min-width: 680px)  { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-grid--3 { grid-template-columns: repeat(3, 1fr); }
                             .svc-grid--5 { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  display: flex; flex-direction: column; gap: 0.45em;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.svc-card__icon {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin-bottom: 0.25em;
}
.svc-card__icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.svc-card h4 { margin: 0; font-size: 1.1rem; }
.svc-card p { margin: 0; flex: 1; font-size: var(--fs-small); color: var(--text-sub); }

/* Always included — warm bg, gold check */
.svc-card--included { background: var(--bg-warm); border: 1px solid var(--gold-soft); }
.svc-card--included .svc-card__icon { background: var(--gold); color: #fff; }

/* Optional add-ons — white bg, gold line icon, "Ask about this" */
.svc-card--optional { background: #fff; border: 1px solid var(--border); }
.svc-card--optional .svc-card__icon { background: var(--bg-warm); color: var(--gold); border: 1px solid var(--gold-soft); }
.svc-card--optional .svc-card__icon svg { stroke-width: 1.6; }
.svc-card__ask {
  margin-top: 0.4em;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.svc-cta { text-align: center; margin-top: var(--space-xl); }
.svc-cta p { margin: 0 auto var(--space-sm); max-width: 46ch; }
