
:root {
  --linen:   #F8F3EA;
  --cream:   #EFE5D6;
  --sand:    #D4B895;
  --gold:    #B8956A;
  --cognac:  #7D5A3A;
  --cocoa:   #2B2018;
  --ink:     #1A1410;
  --muted:   #8a7a68;
  --line:    rgba(43,32,24,.08);
  --serif:    'Cormorant Garamond', 'Noto Serif JP', 'Noto Serif SC', 'Songti SC', 'STSong', 'Times New Roman', serif;
  --jp-serif: 'Noto Serif JP', 'Noto Serif SC', serif;
  --sans:     'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --container: 1340px;
  --r-lg: 32px;
  --r-md: 16px;
  --r-pill: 999px;
}
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin:0; background: var(--linen); color: var(--cocoa); font-family: var(--sans); font-size: 16px; line-height: 1.6; letter-spacing: .005em; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* TOPBAR */
.topbar { background: var(--cocoa); color: rgba(248,243,234,.85); font-size: 12px; letter-spacing: .04em; padding: 9px 0; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar a { color: rgba(248,243,234,.85); transition: color .15s; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--sand); }
.topbar svg { width: 14px; height: 14px; }
.topbar__dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(248,243,234,.3); display: inline-block; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 200; background: rgba(248,243,234,.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; position: relative; }
.nav__left { display: flex; align-items: center; gap: 24px; min-width: 0; }
.nav__icon--left { display: none; }
.nav__logo-wrap { order: -1; flex-shrink: 0; }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); color: var(--cocoa); transition: all .2s; }
.nav__icon:hover { background: var(--cream); color: var(--cognac); border-color: var(--sand); }
.nav__icon svg { width: 16px; height: 16px; }
.nav__logo { display: flex; align-items: center; gap: 14px; color: var(--cocoa); flex-shrink: 0; text-decoration: none; }
.nav__logo-text { font-family: var(--serif); font-size: 30px; font-weight: 500; letter-spacing: .015em; line-height: 1; display: flex; flex-direction: column; }
.nav__logo-tag { font-family: var(--sans); font-size: 9.5px; letter-spacing: .35em; text-transform: uppercase; color: var(--cognac); font-weight: 500; margin-top: 6px; line-height: 1.2; max-width: 180px; }
.nav__logo-img { display: none; height: 44px; width: auto; }
.nav__menu { display: flex; gap: 26px; align-items: center; }
.nav__menu-foot { display: none; }
.nav__menu > .has-drop { position: relative; }
.nav__menu a, .nav__menu .drop-trigger { font-size: 13px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--cocoa); position: relative; padding: 24px 0; transition: color .15s; cursor: pointer; display: inline-block; }
.nav__menu a::after { content: ''; position: absolute; left: 50%; bottom: 18px; height: 1px; width: 0; background: var(--cognac); transition: width .25s, left .25s; }
.nav__menu a:hover { color: var(--cognac); }
.nav__menu a:hover::after { width: 100%; left: 0; }
.nav__menu .is-current { color: var(--cognac); }
.nav__menu .is-current::after { width: 100%; left: 0; }
.dropdown { position: absolute; top: 100%; left: -20px; min-width: 280px; background: #fff; border-radius: var(--r-md); box-shadow: 0 12px 40px -8px rgba(43,32,24,.15), 0 1px 3px rgba(43,32,24,.06); padding: 16px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .2s; border: 1px solid var(--line); }
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 14px; font-size: 13.5px; text-transform: none; letter-spacing: .01em; font-weight: 400; color: var(--cocoa); border-radius: 8px; }
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--cream); color: var(--cognac); }
.dropdown a small { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; letter-spacing: 0; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; width: 38px; height: 38px; align-items: center; justify-content: center; cursor: pointer; background: transparent; border: none; z-index: 110; position: relative; padding: 0; margin-left: -8px; }
.nav__burger span { width: 22px; height: 1.5px; background: var(--cocoa); position: relative; transition: transform .25s, opacity .15s; }
.nav__burger span::before, .nav__burger span::after { content:''; position: absolute; left: 0; width: 22px; height: 1.5px; background: var(--cocoa); transition: transform .25s, top .25s; }
.nav__burger span::before { top: -7px; }
.nav__burger span::after { top: 7px; }
.nav__burger.is-open span { background: transparent; }
.nav__burger.is-open span::before { top: 0; transform: rotate(45deg); }
.nav__burger.is-open span::after { top: 0; transform: rotate(-45deg); }
body.nav-open { overflow: hidden; }

/* BUTTON */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 26px; border-radius: var(--r-pill); font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; border: 1.5px solid transparent; transition: all .2s; white-space: nowrap; }
.btn--primary { background: var(--cognac); color: var(--linen); }
.btn--primary:hover { background: var(--cocoa); transform: translateY(-1px); box-shadow: 0 12px 32px -8px rgba(43,32,24,.4); }
.btn--outline { background: transparent; color: var(--cocoa); border-color: var(--cocoa); }
.btn--outline:hover { background: var(--cocoa); color: var(--linen); }
.btn--ghost-light { background: rgba(248,243,234,.12); color: var(--linen); border: 1.5px solid rgba(248,243,234,.4); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { background: var(--linen); color: var(--cocoa); border-color: var(--linen); }
.btn--sm { padding: 10px 20px; font-size: 11.5px; }
.btn svg { width: 14px; height: 14px; }

/* SECTION COMMON */
.section-eyebrow { font-size: 11.5px; letter-spacing: .42em; text-transform: uppercase; color: var(--cognac); font-weight: 500; margin-bottom: 24px; display: inline-flex; align-items: center; gap: 14px; }
.section-eyebrow.is-centered::before, .section-eyebrow.is-centered::after { content: ''; width: 36px; height: 1px; background: var(--cognac); }
.section-title { font-family: var(--serif); font-size: clamp(36px, 4.5vw, 60px); font-weight: 400; line-height: 1.12; letter-spacing: -.012em; color: var(--cocoa); margin: 0 0 24px; }
.section-title em { font-style: italic; color: var(--cognac); }
.section-body { font-size: 16.5px; line-height: 1.72; color: var(--muted); max-width: 640px; }

/* HERO (large) */
.hero { position: relative; height: 100vh; min-height: 680px; max-height: 880px; color: var(--linen); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.78) saturate(.95); }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(165deg, rgba(26,20,16,.55) 0%, rgba(26,20,16,.2) 35%, rgba(26,20,16,.6) 100%); }
.hero__inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 28px; max-width: var(--container); margin: 0 auto; }
.hero__eyebrow { font-size: 11.5px; letter-spacing: .42em; text-transform: uppercase; color: var(--sand); font-weight: 500; margin-bottom: 28px; display: flex; align-items: center; gap: 14px; }
.hero__eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--sand); }
.hero__title { font-family: var(--serif); font-size: clamp(48px, 6.5vw, 92px); font-weight: 400; line-height: 1.06; letter-spacing: -.015em; margin: 0 0 22px; max-width: 940px; }
.hero__title em { font-style: italic; color: var(--sand); font-weight: 400; }
.hero__sub { font-size: clamp(15px, 1.25vw, 18px); line-height: 1.65; max-width: 560px; margin: 0 0 44px; color: rgba(248,243,234,.85); font-weight: 300; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__locations { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 28px; padding: 14px 32px; background: rgba(26,20,16,.4); backdrop-filter: blur(14px); border-radius: var(--r-pill); border: 1px solid rgba(248,243,234,.18); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(248,243,234,.85); }
.hero__locations span { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.hero__locations span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--sand); }
.hero__locations span.is-soon { opacity: .6; }
.hero__locations span.is-soon::before { background: rgba(248,243,234,.4); }

/* HERO CAROUSEL */
.hero--carousel { position: relative; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; pointer-events: none; display: flex; align-items: center; }
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide .hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.78) saturate(.95); }
.hero-slide .hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(165deg, rgba(26,20,16,.55) 0%, rgba(26,20,16,.2) 35%, rgba(26,20,16,.6) 100%); }
.hero-slide .hero__inner { position: relative; z-index: 2; width: 100%; padding: 0 28px; max-width: var(--container); margin: 0 auto; }
.hero-dots { position: absolute; bottom: 96px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 8px; align-items: center; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(248,243,234,.35); border: 1px solid rgba(248,243,234,.3); cursor: pointer; padding: 0; transition: all .35s; flex-shrink: 0; }
.hero-dot.is-active { background: var(--sand); border-color: var(--sand); width: 26px; border-radius: 4px; }
@media(max-width:768px){ .hero-dots { bottom: 80px; } }
.hero-slide--dark .hero__bg { filter: brightness(.52) saturate(.88) !important; }
.hero-slide--dark .hero__bg::after { background: linear-gradient(165deg, rgba(10,7,5,.72) 0%, rgba(10,7,5,.35) 40%, rgba(10,7,5,.68) 100%) !important; }
.hero-slide--bright .hero__bg { filter: brightness(.96) saturate(1.0) !important; }
.hero-slide--bright .hero__bg::after { background: linear-gradient(165deg, rgba(10,7,5,.52) 0%, rgba(10,7,5,.12) 45%, rgba(10,7,5,.48) 100%) !important; }

/* CLINIC GALLERY */
.clinic-gallery { padding: 64px 0; background: var(--linen); }
.clinic-gallery__head { text-align: center; margin-bottom: 32px; }
.clinic-gallery__strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 0 28px; max-width: var(--container); margin: 0 auto; }
.clinic-gallery__item { aspect-ratio: 3/4; border-radius: 16px; overflow: hidden; cursor: zoom-in; position: relative; }
.clinic-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; display: block; }
.clinic-gallery__item:hover img { transform: scale(1.04); }
.clinic-gallery__item:first-child { grid-column: 1 / -1; aspect-ratio: 21/9; }
.clinic-gallery__lightbox { position: fixed; inset: 0; background: rgba(10,7,5,.92); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.clinic-gallery__lightbox.is-open { opacity: 1; pointer-events: auto; }
.clinic-gallery__lightbox img { max-width: 92vw; max-height: 92vh; object-fit: contain; border-radius: 8px; }
.clinic-gallery__lightbox-close { position: absolute; top: 20px; right: 24px; color: rgba(248,243,234,.8); font-size: 32px; cursor: pointer; line-height: 1; background: none; border: none; }
@media(max-width:768px){
  .clinic-gallery__strip { grid-template-columns: repeat(2,1fr); padding: 0 16px; }
  .clinic-gallery__item:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
}

/* PAGE HERO (smaller, for subpages) */
.page-hero { position: relative; min-height: 460px; padding: 100px 0 80px; color: var(--linen); overflow: hidden; display: flex; align-items: center; }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.68) saturate(.95); }
.page-hero__bg::after { content:''; position: absolute; inset:0; background: linear-gradient(180deg, rgba(26,20,16,.6) 0%, rgba(26,20,16,.4) 60%, rgba(26,20,16,.7) 100%); }
.page-hero__inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 28px; width: 100%; }
.page-hero__crumb { font-size: 11.5px; letter-spacing: .25em; text-transform: uppercase; color: var(--sand); margin-bottom: 22px; display: flex; gap: 10px; align-items: center; }
.page-hero__crumb a { color: rgba(248,243,234,.7); }
.page-hero__crumb a:hover { color: var(--sand); }
.page-hero__crumb span { color: rgba(248,243,234,.45); }
.page-hero__title { font-family: var(--serif); font-size: clamp(40px, 5.5vw, 76px); font-weight: 400; line-height: 1.08; letter-spacing: -.012em; margin: 0 0 16px; max-width: 920px; }
.page-hero__title em { font-style: italic; color: var(--sand); }
.page-hero__sub { font-size: 17px; line-height: 1.65; max-width: 620px; margin: 0; color: rgba(248,243,234,.82); font-weight: 300; }

/* TRUST */
.trust { background: var(--cocoa); color: var(--linen); padding: 28px 0; }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; align-items: center; }
.trust__item { display: flex; flex-direction: column; gap: 6px; }
.trust__num { font-family: var(--serif); font-size: 38px; font-weight: 500; color: var(--sand); line-height: 1; }
.trust__label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(248,243,234,.7); }
.trust__divider { width: 1px; background: rgba(248,243,234,.2); height: 50px; justify-self: center; }

/* INTRO */
.intro { padding: 130px 0 110px; background: var(--linen); }
.intro__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: center; }
.intro__image { aspect-ratio: 4/5; border-radius: var(--r-lg); position: relative; overflow: hidden; background-size: cover; background-position: center; }
.intro__copy { padding-right: 20px; }
.intro__body { font-size: 17px; line-height: 1.75; color: var(--muted); margin: 0 0 16px; }
.intro__signature { font-family: var(--jp-serif); font-size: 14px; color: var(--cognac); margin-top: 36px; letter-spacing: .15em; }
.intro__signature small { display: block; color: var(--muted); font-size: 11px; letter-spacing: .25em; text-transform: uppercase; margin-top: 6px; font-family: var(--sans); }

/* SERVICES (grid of cards on homepage) */
.services { padding: 120px 0; background: var(--cream); }
.services__head { text-align: center; margin-bottom: 70px; }
.services__head .section-eyebrow { justify-content: center; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: #fff; border-radius: var(--r-md); overflow: hidden; box-shadow: 0 1px 3px rgba(43,32,24,.04), 0 16px 40px -20px rgba(43,32,24,.1); border: 1px solid rgba(212,184,149,.18); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 1px 3px rgba(43,32,24,.04), 0 24px 60px -16px rgba(43,32,24,.18); }
.service-card__img { aspect-ratio: 16/10; background: var(--cream) center/cover; }
.service-card__body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.service-card__num { font-family: var(--serif); font-size: 13px; color: var(--gold); letter-spacing: .12em; margin-bottom: 10px; }
.service-card__title { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--cocoa); margin: 0 0 12px; line-height: 1.25; }
.service-card__body p { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 0 0 22px; flex: 1; }
.service-card__price { font-family: var(--serif); font-size: 18px; color: var(--cognac); font-weight: 500; margin: 0 0 18px; padding-top: 14px; border-top: 1px dashed rgba(43,32,24,.12); }
.service-card__price small { font-family: var(--sans); font-size: 11px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; display: block; margin-bottom: 4px; font-weight: 500; }
.service-card__link { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--cognac); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.service-card__link svg { width: 14px; height: 14px; transition: transform .2s; }
.service-card:hover .service-card__link svg { transform: translateX(3px); }
.services__footer-cta { text-align: center; margin-top: 56px; }

/* SIGNATURE (Cellula-X dark) */
.signature { background: var(--cocoa); color: var(--linen); padding: 130px 0; position: relative; overflow: hidden; }
.signature::before { content: ''; position: absolute; right: -20%; top: -30%; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(184,149,106,.25) 0%, transparent 60%); }
.signature__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.signature__copy .section-eyebrow { color: var(--sand); }
.signature__copy .section-eyebrow::before, .signature__copy .section-eyebrow::after { background: var(--sand); }
.signature__copy .section-title { color: var(--linen); }
.signature__copy .section-title em { color: var(--sand); }
.signature__copy p { font-size: 17px; line-height: 1.75; color: rgba(248,243,234,.78); margin: 0 0 18px; }
.signature__features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 36px 0 40px; }
.signature__feature { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.55; color: rgba(248,243,234,.85); }
.signature__feature svg { width: 18px; height: 18px; color: var(--sand); flex: none; margin-top: 2px; }
.signature__image { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; background-size: cover; background-position: center; }

/* WHY */
.why { padding: 130px 0 110px; background: var(--linen); text-align: center; }
.why__head { margin-bottom: 70px; }
.why__head .section-eyebrow { justify-content: center; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: left; }
.pillar { padding: 36px 30px; background: #fff; border-radius: var(--r-md); border: 1px solid rgba(212,184,149,.2); }
.pillar__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--cognac); margin-bottom: 22px; }
.pillar__icon svg { width: 22px; height: 22px; }
.pillar__title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--cocoa); margin: 0 0 12px; line-height: 1.3; }
.pillar__body { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }

/* SPACES */
.space { padding: 120px 0; background: var(--cream); overflow: hidden; }
.space__head { text-align: center; margin-bottom: 70px; }
.space__head .section-eyebrow { justify-content: center; }
.space__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 320px 320px; gap: 16px; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.space__cell { position: relative; overflow: hidden; border-radius: var(--r-md); background: #ddd; }
.space__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.space__cell:hover img { transform: scale(1.05); }
.space__cell--tall { grid-row: span 2; border-radius: var(--r-lg); }

/* LOCATIONS */
.locations { padding: 130px 0; background: var(--cocoa); color: var(--linen); }
.locations__head { text-align: center; margin-bottom: 70px; }
.locations__head .section-eyebrow { color: var(--sand); justify-content: center; }
.locations__head .section-eyebrow::before, .locations__head .section-eyebrow::after { background: var(--sand); }
.locations__head .section-title { color: var(--linen); }
.locations__head .section-title em { color: var(--sand); }
.locations__head p { color: rgba(248,243,234,.75); max-width: 600px; margin: 0 auto; }
.locations__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.location-card { background: rgba(248,243,234,.04); border: 1px solid rgba(248,243,234,.12); border-radius: var(--r-md); padding: 32px 30px; transition: all .25s; display: flex; flex-direction: column; position: relative; min-height: 320px; }
.location-card:hover { background: rgba(248,243,234,.08); border-color: var(--sand); transform: translateY(-3px); }
.location-card__city { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--sand); margin-bottom: 10px; }
.location-card__name { font-family: var(--serif); font-size: 28px; font-weight: 500; margin: 0 0 16px; color: var(--linen); }
.location-card__addr, .location-card__hours { font-size: 14px; line-height: 1.6; color: rgba(248,243,234,.75); margin: 0 0 12px; }
.location-card__addr svg, .location-card__hours svg { width: 14px; height: 14px; color: var(--sand); display: inline-block; vertical-align: -2px; margin-right: 8px; }
.location-card__phone { font-size: 17px; font-weight: 500; color: var(--linen); margin-top: auto; padding-top: 22px; border-top: 1px solid rgba(248,243,234,.12); display: flex; align-items: center; gap: 8px; }
.location-card__phone svg { width: 16px; height: 16px; color: var(--sand); }
.location-card__note { font-size: 11.5px; color: var(--sand); margin-top: 4px; font-style: italic; }
.location-card__badge { position: absolute; top: 18px; right: 18px; padding: 4px 10px; background: rgba(184,149,106,.2); color: var(--sand); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; border-radius: var(--r-pill); border: 1px solid var(--sand); }

/* STORE CTA */
.store-cta { background: var(--cream); padding: 100px 0; }
.store-cta__inner { background: var(--linen); border-radius: var(--r-lg); padding: 80px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; box-shadow: 0 1px 3px rgba(43,32,24,.05), 0 30px 80px -30px rgba(43,32,24,.15); }
.store-cta h2 { font-family: var(--serif); font-size: 44px; line-height: 1.15; font-weight: 400; margin: 0 0 18px; color: var(--cocoa); }
.store-cta h2 em { font-style: italic; color: var(--cognac); }
.store-cta p { font-size: 16px; line-height: 1.7; color: var(--muted); margin: 0 0 32px; }
.store-cta__image { aspect-ratio: 1; background-size: cover; background-position: center; border-radius: var(--r-md); }

/* TESTIMONIAL */
.testimonials { padding: 130px 0; background: var(--linen); text-align: center; }
.testimonials__head { margin-bottom: 60px; }
.testimonials__head .section-eyebrow { justify-content: center; }
.quote { max-width: 880px; margin: 0 auto; font-family: var(--serif); font-size: clamp(24px, 2.8vw, 36px); line-height: 1.4; font-weight: 400; font-style: italic; color: var(--cocoa); position: relative; padding: 0 40px; }
.quote::before { content: '"'; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); font-size: 120px; color: var(--sand); line-height: 1; font-style: normal; opacity: .5; }
.quote__author { font-family: var(--sans); font-size: 13px; font-style: normal; letter-spacing: .2em; text-transform: uppercase; color: var(--cognac); margin-top: 36px; display: block; }

/* PRICE TABLE (for treatment subpages) */
.price-section { padding: 100px 0 60px; background: var(--linen); }
.price-section + .price-section { padding-top: 0; }
.price-section:last-of-type { padding-bottom: 120px; }
.price-cat { margin-bottom: 60px; }
.price-cat:last-child { margin-bottom: 0; }
.price-cat__head { margin-bottom: 32px; padding-bottom: 18px; border-bottom: 2px solid var(--cognac); display: flex; justify-content: space-between; align-items: end; gap: 20px; flex-wrap: wrap; }
.price-cat__title { font-family: var(--serif); font-size: clamp(28px, 3.2vw, 40px); font-weight: 500; color: var(--cocoa); margin: 0; line-height: 1.15; }
.price-cat__title small { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--cognac); margin-bottom: 8px; font-weight: 500; }
.price-cat__body { font-size: 14px; color: var(--muted); max-width: 500px; }
.price-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 50px; }
.price-list li { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 24px; padding: 18px 0; border-bottom: 1px dashed rgba(43,32,24,.12); }
.price-list__name { font-family: var(--serif); font-size: 18px; color: var(--cocoa); font-weight: 500; line-height: 1.3; }
.price-list__zh { display: block; font-family: var(--sans); font-size: 12.5px; color: var(--muted); margin-top: 4px; font-weight: 400; letter-spacing: .01em; }
.price-list__price { font-family: var(--serif); font-size: 18px; color: var(--cognac); font-weight: 600; white-space: nowrap; text-align: right; }
.price-list__price small { display: block; font-family: var(--sans); font-size: 10px; color: var(--muted); letter-spacing: .15em; text-transform: uppercase; margin-top: 2px; font-weight: 500; }
.price-note { font-size: 12.5px; color: var(--muted); font-style: italic; margin-top: 20px; }

/* BRAND LOGOS STRIP (for treatments page) */
.brands { background: var(--cream); padding: 70px 0; text-align: center; }
.brands h3 { font-size: 11.5px; letter-spacing: .35em; text-transform: uppercase; color: var(--cognac); font-weight: 600; margin: 0 0 30px; }
.brands__list { display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: center; max-width: 1100px; margin: 0 auto; }
.brands__list span { font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--cocoa); font-weight: 500; opacity: .7; transition: opacity .2s; }
.brands__list span:hover { opacity: 1; }

/* FOOTER */
.footer { background: var(--cocoa); color: rgba(248,243,234,.8); padding: 100px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 60px; margin-bottom: 70px; }
.footer__brand-name { font-family: var(--serif); font-size: 36px; font-weight: 500; color: var(--linen); line-height: 1; margin-bottom: 14px; }
.footer__brand-name span { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: .35em; text-transform: uppercase; color: var(--sand); margin-top: 8px; font-weight: 500; }
.footer__brand p { font-size: 14px; line-height: 1.7; color: rgba(248,243,234,.65); margin: 24px 0 28px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(248,243,234,.08); display: flex; align-items: center; justify-content: center; transition: background .2s; color: rgba(248,243,234,.8); }
.footer__social a:hover { background: var(--sand); color: var(--cocoa); }
.footer__social svg { width: 16px; height: 16px; }
.footer__wechat { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.footer__wechat img { width: 104px; height: 104px; border-radius: 8px; background: #fff; padding: 6px; object-fit: contain; flex: none; }
.footer__wechat-label { font-size: 13px; line-height: 1.5; color: rgba(248,243,234,.65); }
.footer__wechat-label strong { display: block; color: var(--linen); font-weight: 500; margin-bottom: 4px; font-size: 13.5px; }
.footer h4 { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--sand); margin: 0 0 22px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; color: rgba(248,243,234,.7); transition: color .15s; }
.footer ul a:hover { color: var(--sand); }
.footer__contact { font-size: 14px; line-height: 1.7; color: rgba(248,243,234,.7); }
.footer__contact strong { color: var(--linen); font-weight: 500; display: block; margin-top: 8px; }
.footer__contact .footer__phone { font-family: var(--serif); font-size: 22px; color: var(--linen); display: block; margin: 8px 0 14px; }
.footer__bottom { border-top: 1px solid rgba(248,243,234,.1); padding-top: 28px; display: flex; justify-content: space-between; gap: 24px; font-size: 12px; color: rgba(248,243,234,.5); letter-spacing: .04em; }
.footer__bottom a:hover { color: var(--sand); }
.footer__bottom-links { display: flex; gap: 24px; }

/* FAB */
.fab { position: fixed; bottom: 24px; right: 24px; z-index: 40; width: 60px; height: 60px; background: var(--cognac); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px -4px rgba(43,32,24,.4); cursor: pointer; transition: transform .2s; border: none; padding: 0; color: var(--linen); }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 26px; height: 26px; color: var(--linen); }

/* PROSE (for about/contact body content) */
.prose { padding: 100px 0; background: var(--linen); }
.prose__inner { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.8; color: var(--cocoa); padding: 0 28px; }
.prose__inner h2 { font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: 1.2; margin: 60px 0 20px; color: var(--cocoa); }
.prose__inner h2:first-child { margin-top: 0; }
.prose__inner h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin: 40px 0 14px; color: var(--cocoa); }
.prose__inner p { margin: 0 0 18px; color: var(--muted); }
.prose__inner p strong { color: var(--cocoa); font-weight: 600; }

/* LOCATION DETAIL */
.loc-detail { padding: 100px 0 60px; background: var(--linen); }
.loc-detail__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 70px; align-items: start; }
.loc-detail__info h2 { font-family: var(--serif); font-size: 38px; font-weight: 500; margin: 0 0 8px; color: var(--cocoa); }
.loc-detail__sub { font-size: 13px; color: var(--cognac); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 30px; font-weight: 600; }
.loc-detail__row { padding: 18px 0; border-bottom: 1px solid rgba(43,32,24,.08); display: grid; grid-template-columns: 130px 1fr; gap: 24px; align-items: start; }
.loc-detail__label { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--cognac); font-weight: 600; padding-top: 3px; }
.loc-detail__value { font-size: 16px; color: var(--cocoa); line-height: 1.6; }
.loc-detail__value strong { display: block; font-weight: 600; }
.loc-detail__value a { color: var(--cognac); text-decoration: underline; text-underline-offset: 3px; }
.loc-detail__map { aspect-ratio: 4/5; border-radius: var(--r-lg); background: var(--cream); box-shadow: 0 20px 50px -20px rgba(43,32,24,.2); position: relative; overflow: hidden; }
.loc-detail__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.loc-detail__alert { background: var(--cream); border-left: 4px solid var(--gold); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 18px 22px; margin-bottom: 28px; }
.loc-detail__alert strong { font-family: var(--serif); font-size: 18px; color: var(--cocoa); display: block; margin-bottom: 4px; }
.loc-detail__alert p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.55; }
.loc-cta-box { background: var(--cocoa); color: var(--linen); padding: 80px 0; text-align: center; }
.loc-cta-box h2 { font-family: var(--serif); font-size: 38px; font-weight: 400; margin: 0 0 14px; color: var(--linen); }
.loc-cta-box h2 em { font-style: italic; color: var(--sand); }
.loc-cta-box p { color: rgba(248,243,234,.7); margin: 0 0 28px; }

/* SCALP-specific: brand spotlight, step process, ritual */
.brand-spotlight { padding: 110px 0; background: var(--cream); }
.brand-spotlight__inner { max-width: var(--container); margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.brand-spotlight__image { aspect-ratio: 4/5; border-radius: var(--r-lg); background-size: cover; background-position: center; }
.brand-spotlight__logo { display: inline-flex; align-items: center; gap: 14px; font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--cocoa); margin: 18px 0 6px; letter-spacing: -.01em; }
.brand-spotlight__logo small { font-family: var(--sans); font-size: 12.5px; color: var(--cognac); font-weight: 500; letter-spacing: .15em; text-transform: uppercase; }
.brand-spotlight__tag { display: inline-block; padding: 5px 13px; background: var(--cognac); color: var(--linen); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; border-radius: var(--r-pill); margin-bottom: 26px; font-weight: 600; }
.brand-spotlight p { font-size: 16.5px; line-height: 1.75; color: var(--muted); margin: 0 0 18px; }
.brand-spotlight ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.brand-spotlight li { font-size: 14px; line-height: 1.5; color: var(--cocoa); display: flex; gap: 10px; align-items: flex-start; }
.brand-spotlight li svg { width: 18px; height: 18px; color: var(--cognac); flex: none; margin-top: 2px; }

/* PROCESS STEPS — 13-step scalp ritual */
.process { padding: 130px 0 110px; background: var(--linen); }
.process__head { text-align: center; max-width: 720px; margin: 0 auto 70px; padding: 0 28px; }
.process__head .section-eyebrow { justify-content: center; }
.process__head p { color: var(--muted); font-size: 16.5px; line-height: 1.7; margin: 18px auto 0; }
.process__grid { max-width: var(--container); margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { background: #fff; border-radius: var(--r-md); padding: 28px 26px; border: 1px solid rgba(212,184,149,.18); transition: all .2s; position: relative; }
.step:hover { border-color: var(--cognac); transform: translateY(-3px); box-shadow: 0 20px 50px -20px rgba(43,32,24,.15); }
.step__num { font-family: var(--serif); font-size: 13px; color: var(--gold); letter-spacing: .25em; margin-bottom: 14px; font-weight: 600; }
.step__char { font-family: var(--jp-serif); font-size: 48px; font-weight: 500; color: var(--cognac); line-height: 1; margin-bottom: 18px; }
.step__title { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--cocoa); margin: 0 0 10px; line-height: 1.3; }
.step__body { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.ritual-note { max-width: 920px; margin: 60px auto 0; padding: 30px 40px; background: var(--cream); border-radius: var(--r-lg); display: flex; gap: 32px; align-items: center; }
.ritual-note__icon { width: 60px; height: 60px; flex: none; border-radius: 50%; background: var(--cognac); color: var(--linen); display: flex; align-items: center; justify-content: center; font-family: var(--jp-serif); font-size: 28px; font-weight: 500; }
.ritual-note__text { font-size: 14.5px; line-height: 1.65; color: var(--cocoa); }
.ritual-note__text strong { font-family: var(--serif); font-size: 17px; color: var(--cocoa); font-weight: 500; display: block; margin-bottom: 4px; }

/* FLAGSHIP TREATMENTS — 3 highlighted cards */
.flagships { padding: 110px 0; background: var(--cream); }
.flagships__head { text-align: center; max-width: 760px; margin: 0 auto 60px; padding: 0 28px; }
.flagships__head .section-eyebrow { justify-content: center; }
.flagships__head p { color: var(--muted); font-size: 16.5px; line-height: 1.7; margin: 16px auto 0; }
.flagship-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.flagship-card { background: #fff; border-radius: var(--r-md); overflow: hidden; border: 1px solid rgba(212,184,149,.2); box-shadow: 0 1px 3px rgba(43,32,24,.04), 0 18px 50px -20px rgba(43,32,24,.1); display: flex; flex-direction: column; transition: all .25s; }
.flagship-card:hover { transform: translateY(-4px); box-shadow: 0 1px 3px rgba(43,32,24,.04), 0 28px 60px -16px rgba(43,32,24,.18); }
.flagship-card__img { aspect-ratio: 4/3; background: var(--cream) center/cover; }
.flagship-card__body { padding: 30px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.flagship-card__brand { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--cognac); font-weight: 600; margin-bottom: 8px; }
.flagship-card__title { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--cocoa); margin: 0 0 6px; line-height: 1.2; }
.flagship-card__zh { font-size: 12.5px; color: var(--muted); margin-bottom: 16px; letter-spacing: .04em; }
.flagship-card__body p { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 0 0 22px; flex: 1; }
.flagship-card__meta { display: flex; justify-content: space-between; align-items: end; padding-top: 18px; border-top: 1px dashed rgba(43,32,24,.12); }
.flagship-card__price { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--cognac); line-height: 1; }
.flagship-card__price small { display: block; font-family: var(--sans); font-size: 10.5px; color: var(--muted); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 4px; font-weight: 500; }
.flagship-card__cta { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--cognac); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.flagship-card__cta svg { width: 14px; height: 14px; transition: transform .2s; }
.flagship-card:hover .flagship-card__cta svg { transform: translateX(3px); }

/* PARTNERS — multi-brand showcase grid */
.partners { padding: 110px 0; background: var(--linen); }
.partners__head { text-align: center; max-width: 760px; margin: 0 auto 60px; padding: 0 28px; }
.partners__head .section-eyebrow { justify-content: center; }
.partners__head p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 16px auto 0; }
.partners__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: var(--container); margin: 0 auto; padding: 0 28px; border-top: 1px solid rgba(43,32,24,.1); border-left: 1px solid rgba(43,32,24,.1); }
.partner { padding: 38px 32px; border-bottom: 1px solid rgba(43,32,24,.1); border-right: 1px solid rgba(43,32,24,.1); background: var(--linen); transition: background .2s; }
.partner:hover { background: #fff; }
.partner__logo { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--cocoa); margin: 0 0 4px; letter-spacing: -.01em; }
.partner__from { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--cognac); font-weight: 600; margin-bottom: 18px; }
.partner__body { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* PRODUCT SETS GRID */
.product-sets { padding: 110px 0; background: var(--cream); }
.product-sets__head { text-align: center; max-width: 720px; margin: 0 auto 60px; padding: 0 28px; }
.product-sets__head .section-eyebrow { justify-content: center; }
.product-sets__head p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 16px auto 0; }
.set-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.set-card { background: #fff; padding: 32px 28px; border-radius: var(--r-md); border: 1px solid rgba(212,184,149,.2); transition: all .25s; }
.set-card:hover { border-color: var(--cognac); transform: translateY(-3px); }
.set-card__tag { display: inline-block; padding: 4px 10px; background: var(--cream); color: var(--cognac); font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; border-radius: var(--r-pill); margin-bottom: 14px; font-weight: 600; }
.set-card__name { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--cocoa); margin: 0 0 6px; line-height: 1.3; }
.set-card__zh { font-size: 12.5px; color: var(--muted); letter-spacing: .04em; margin-bottom: 16px; }
.set-card__body { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0 0 18px; }
.set-card__use { font-size: 12px; color: var(--cognac); letter-spacing: .08em; font-weight: 500; }

/* MOMENTS — real client treatment-in-progress gallery */
.moments { padding: 130px 0; background: var(--linen); }
.moments__head { text-align: center; max-width: 760px; margin: 0 auto 70px; padding: 0 28px; }
.moments__head .section-eyebrow { justify-content: center; }
.moments__head p { color: var(--muted); font-size: 17px; line-height: 1.7; margin: 18px auto 0; }
.moments__grid { display: grid; max-width: var(--container); margin: 0 auto; padding: 0 28px; gap: 20px; grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: 320px 240px 240px; grid-template-areas: 'a a b' 'a a c' 'd e c'; }
.moments__cell { border-radius: var(--r-md); overflow: hidden; position: relative; background: #ddd; }
.moments__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.moments__cell:hover img { transform: scale(1.04); }
.moments__cell--a { grid-area: a; border-radius: var(--r-lg); }
.moments__cell--b { grid-area: b; }
.moments__cell--c { grid-area: c; }
.moments__cell--d { grid-area: d; }
.moments__cell--e { grid-area: e; }
.moments__caption { position: absolute; left: 18px; bottom: 18px; padding: 7px 14px; background: rgba(43,32,24,.75); color: var(--linen); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; border-radius: var(--r-pill); backdrop-filter: blur(8px); }
.moments__footer { text-align: center; margin-top: 50px; font-size: 13.5px; color: var(--muted); font-style: italic; }

/* LASH SHOWCASE (also a generic before/after gallery) */
.lash-showcase { padding: 100px 0 80px; background: var(--cream); }
.lash-showcase__head { text-align: center; margin-bottom: 60px; max-width: 720px; margin-left: auto; margin-right: auto; padding: 0 28px; }
.lash-showcase__head .section-eyebrow { justify-content: center; }
.lash-showcase__head p { color: var(--muted); font-size: 16.5px; line-height: 1.7; margin: 16px auto 0; }
.lash-feature { max-width: var(--container); margin: 0 auto 40px; padding: 0 28px; }
.lash-feature__img { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 30px 80px -30px rgba(43,32,24,.25); border: 1px solid rgba(212,184,149,.18); }
.lash-feature__img img { width: 100%; height: auto; display: block; }
.lash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.lash-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 1080px; }
.lash-grid--one { grid-template-columns: 1fr; max-width: 560px; }
.lash-card { background: #fff; border-radius: var(--r-md); overflow: hidden; box-shadow: 0 16px 40px -20px rgba(43,32,24,.12); border: 1px solid rgba(212,184,149,.18); transition: transform .3s, box-shadow .3s; }
.lash-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -16px rgba(43,32,24,.22); }
.lash-card img { width: 100%; height: auto; display: block; }
.lash-card__body { padding: 20px 24px 26px; }
.lash-card__title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--cocoa); margin: 0 0 6px; }
.lash-card__sub { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--cognac); font-weight: 500; }
.lash-card__price { font-family: var(--serif); font-size: 17px; color: var(--cognac); font-weight: 500; margin: 10px 0 0; padding-top: 12px; border-top: 1px dashed rgba(43,32,24,.12); }
.lash-card__price small { font-family: var(--sans); font-size: 10.5px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }

/* CONTACT METHODS */
.contact-methods { padding: 100px 0 120px; background: var(--linen); }
.contact-methods__head { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; padding: 0 28px; }
.contact-methods__head .section-eyebrow { justify-content: center; }
.contact-methods__head p { color: var(--muted); font-size: 17px; line-height: 1.7; margin: 0; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.contact-card { background: #fff; border-radius: var(--r-md); border: 1px solid rgba(212,184,149,.25); padding: 44px 40px; display: flex; flex-direction: column; transition: all .25s; box-shadow: 0 1px 3px rgba(43,32,24,.04), 0 16px 40px -20px rgba(43,32,24,.08); }
.contact-card:hover { transform: translateY(-4px); border-color: var(--cognac); box-shadow: 0 1px 3px rgba(43,32,24,.04), 0 24px 60px -16px rgba(43,32,24,.15); }
.contact-card__num { font-family: var(--serif); font-size: 14px; color: var(--gold); letter-spacing: .15em; margin-bottom: 14px; }
.contact-card__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--cognac); margin-bottom: 26px; }
.contact-card__icon svg { width: 30px; height: 30px; }
.contact-card__title { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--cocoa); margin: 0 0 12px; line-height: 1.2; }
.contact-card__body { font-size: 15.5px; line-height: 1.7; color: var(--muted); margin: 0 0 26px; flex: 1; }
.contact-card__body strong { color: var(--cocoa); }
.contact-card__big { display: block; font-family: var(--serif); font-size: 34px; font-weight: 500; color: var(--cognac); letter-spacing: -.01em; margin: 12px 0 16px; }
.contact-card__sub { font-size: 12.5px; color: var(--muted); letter-spacing: .05em; }
.contact-card .btn { align-self: flex-start; margin-top: auto; }

/* MOBILE */
@media (max-width: 980px) {
  .topbar__left .topbar__locs, .topbar__right { display: none; }
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--linen); box-shadow: 0 2px 16px rgba(43,32,24,.07); }
  .nav__inner { padding: 10px 0; gap: 8px; min-height: 64px; }
  .nav__left { gap: 4px; order: 1; padding-left: 16px; }
  .nav__icon--left { display: inline-flex; }
  .nav__icon--right { display: none; }
  .nav__logo-wrap { order: 0; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
  .nav__logo-text { display: none; }
  .nav__logo-img { display: block; height: 44px; }
  .nav__right { order: 2; gap: 8px; }
  .nav__right .btn--primary { padding: 9px 14px; font-size: 11px; letter-spacing: .05em; }
  .nav__right .btn--primary svg { width: 14px; height: 14px; }
  .nav__shop { display: none; }
  .nav__icon { width: 38px; height: 38px; border: none; }
  .nav__icon:hover { background: transparent; }
  .nav__menu {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--linen);
    padding: 30px 36px 40px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s;
  }
  .nav__menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav__menu > a,
  .nav__menu .drop-trigger {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: .01em;
    color: var(--cocoa);
    padding: 22px 0;
    border-bottom: 1px solid rgba(184,149,106,.22);
    display: block;
    width: 100%;
    line-height: 1.15;
  }
  .nav__menu > a::after,
  .nav__menu .drop-trigger::after { display: none; }
  .has-drop { width: 100%; position: relative; }
  .has-drop .drop-trigger { padding-right: 40px; }
  .has-drop .drop-trigger::before {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    border-right: 1.5px solid var(--cognac);
    border-bottom: 1.5px solid var(--cognac);
    transform: rotate(45deg);
    transition: transform .25s;
  }
  .has-drop.is-open .drop-trigger::before {
    transform: rotate(-135deg);
    margin-top: -4px;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    display: none;
    transition: none;
    padding: 4px 0 22px 8px;
    min-width: 0;
    border-bottom: 1px solid rgba(184,149,106,.22);
  }
  .has-drop.is-open .dropdown { display: block; }
  .has-drop:hover .dropdown { opacity: 0; visibility: hidden; }
  .has-drop.is-open:hover .dropdown,
  .has-drop.is-open .dropdown { opacity: 1; visibility: visible; }
  .dropdown a {
    padding: 11px 0;
    font-size: 15px;
    font-family: var(--sans);
    font-weight: 400;
    color: var(--cocoa);
    border-radius: 0;
    background: transparent;
    letter-spacing: .01em;
  }
  .dropdown a small {
    display: block;
    margin-top: 3px;
    font-size: 11.5px;
    color: var(--muted);
    letter-spacing: .02em;
    font-weight: 400;
  }
  .nav__menu-foot {
    margin-top: auto;
    padding-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .nav__menu-foot__label {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .nav__menu-foot__phone {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--cognac);
    letter-spacing: .02em;
  }
  .nav__menu-foot__locs {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--cocoa);
    line-height: 1.7;
  }
  .nav__menu-foot__locs span { display: block; }
  .nav__menu-foot__social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
  }
  .nav__menu-foot__social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(184,149,106,.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cognac);
  }
  .nav__menu-foot__social svg { width: 16px; height: 16px; }
  .nav__burger { display: flex; }
  .intro__grid, .signature__inner, .store-cta__inner, .loc-detail__grid { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .store-cta__inner, .loc-detail__grid { padding: 32px; gap: 32px; }
  .loc-detail__grid { padding: 0; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .services__grid, .locations__grid, .contact-grid, .lash-grid, .set-grid, .flagship-grid { grid-template-columns: 1fr; }
  .partners__grid { grid-template-columns: 1fr 1fr; }
  .moments__grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 280px); grid-template-areas: 'a' 'b' 'c' 'd' 'e'; }
  .brand-spotlight__inner { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .ritual-note { flex-direction: column; text-align: center; gap: 18px; padding: 32px 24px; }
  .brand-spotlight ul { grid-template-columns: 1fr; }
  .contact-card { padding: 32px 28px; }
  .space__grid { grid-template-columns: 1fr; grid-template-rows: 240px 240px 240px 240px 240px; }
  .space__cell--tall { grid-row: span 1; }
  .trust__inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .trust__divider { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 12px; }
  .hero { min-height: 600px; }
  .price-list { grid-template-columns: 1fr; gap: 0; }
  .intro, .services, .signature, .why, .space, .locations, .testimonials { padding: 70px 0; }
  .store-cta, .prose, .loc-detail { padding: 60px 0; }
}
@media (max-width: 540px) {
  .pillars, .footer__grid { grid-template-columns: 1fr; }
}

/* ============ BILINGUAL SYSTEM ============ */
html.lang-en .zh-only { display: none !important; }
html.lang-zh .en-only { display: none !important; }
/* In Chinese mode, NEVER italic em — synthesised oblique on CJK chars looks broken.
   !important overrides all per-class em rules (cbd-hero__title em, section-title em, etc.) */
html.lang-zh em { font-style: normal !important; color: var(--cognac) !important; font-weight: 500; }
/* But preserve white em color in dark CBD hero — important for contrast */
html.lang-zh .cbd-hero__title em { color: #fff !important; }
/* In Chinese mode, prioritise Chinese-style fonts so 门/店/护/疗 render in PRC strokes, not Japanese kanji form */
html.lang-zh {
  --serif: 'Cormorant Garamond', 'Noto Serif SC', 'Songti SC', 'STSong', 'Noto Serif JP', 'Times New Roman', serif;
  --jp-serif: 'Noto Serif SC', 'Noto Serif JP', serif;
}
.lang-toggle-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 36px; padding: 0 12px; background: transparent; color: var(--cocoa); border: 1px solid var(--line); border-radius: 999px; font: 600 11.5px var(--sans); letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: all .18s; line-height: 1; }
.lang-toggle-btn:hover { background: var(--cream); color: var(--cognac); border-color: var(--sand); }
@media (max-width: 980px) {
  .lang-toggle-btn { min-width: 38px; height: 32px; padding: 0 10px; font-size: 10.5px; letter-spacing: .1em; }
}

/* ============ CBD OPENING LANDING PAGE ============ */
.promo-strap { background: var(--cocoa); color: var(--linen); text-align: center; padding: 11px 20px; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; }
.promo-strap strong { color: var(--sand); }

.cbd-hero { position: relative; min-height: 88vh; padding: 100px 24px 80px; display: flex; align-items: center; color: var(--linen); overflow: hidden; }
.cbd-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(180deg, rgba(43,32,24,.55) 0%, rgba(43,32,24,.78) 75%), url('/assets/img/YUKI-10-2400.jpg'); background-size: cover; background-position: center; z-index: 0; }
.cbd-hero__inner { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; text-align: center; }
.cbd-hero__eyebrow { display: inline-block; font-size: 11.5px; letter-spacing: .35em; text-transform: uppercase; color: var(--sand); margin-bottom: 22px; padding: 8px 18px; border: 1px solid rgba(212,184,149,.4); border-radius: 999px; font-weight: 500; }
.cbd-hero__title { font-family: var(--serif); font-size: clamp(44px, 7vw, 92px); font-weight: 400; line-height: 1.05; letter-spacing: -.015em; margin: 0 0 22px; text-shadow: 0 2px 28px rgba(0,0,0,.55); }
.cbd-hero__title em { font-style: italic; color: #fff; font-weight: 500; }
.cbd-hero__sub { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; max-width: 620px; margin: 0 auto 36px; color: rgba(248,243,234,.88); font-weight: 300; }
.cbd-hero__badge { display: inline-flex; align-items: baseline; gap: 6px; padding: 14px 28px; background: rgba(248,243,234,.08); border: 1px solid rgba(212,184,149,.35); border-radius: 999px; margin-bottom: 32px; backdrop-filter: blur(8px); }
.cbd-hero__badge-num { font-family: var(--serif); font-size: 38px; color: var(--sand); font-weight: 500; line-height: 1; }
.cbd-hero__badge-txt { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--linen); }
.cbd-hero__cta { display: inline-flex; align-items: center; gap: 12px; padding: 16px 34px; background: var(--linen); color: var(--cocoa); border-radius: 999px; font: 600 13px var(--sans); letter-spacing: .12em; text-transform: uppercase; text-decoration: none; transition: all .25s; border: 1.5px solid var(--linen); white-space: nowrap; }
.cbd-hero__cta:hover { background: var(--sand); border-color: var(--sand); color: var(--cocoa); transform: translateY(-2px); }
.cbd-hero__cta svg { width: 16px; height: 16px; flex-shrink: 0; stroke-width: 2; }
@media (max-width: 540px) { .cbd-hero__cta { padding: 15px 28px; font-size: 12px; letter-spacing: .1em; gap: 10px; } .cbd-hero__cta svg { width: 14px; height: 14px; } }
.cbd-hero__meta { display: flex; justify-content: center; gap: 28px; margin-top: 32px; font-size: 13px; color: rgba(248,243,234,.7); flex-wrap: wrap; }
.cbd-hero__meta span svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 6px; }

.offer-strip { background: var(--cream); padding: 70px 24px; }
.offer-strip__inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 760px) { .offer-strip__inner { grid-template-columns: 1fr; } }
.offer-card { background: #fff; border-radius: 16px; padding: 40px 36px; border: 1px solid var(--line); box-shadow: 0 18px 50px -20px rgba(43,32,24,.08); position: relative; }
.offer-card__label { font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--cognac); margin-bottom: 14px; font-weight: 600; }
.offer-card__big { font-family: var(--serif); font-size: clamp(54px, 6vw, 80px); font-weight: 400; line-height: 1; color: var(--cocoa); margin: 0 0 14px; }
.offer-card__big em { color: var(--cognac); font-style: italic; }
.offer-card__body { font-size: 15.5px; line-height: 1.65; color: var(--cocoa); margin: 0; }
.offer-card__note { font-size: 12px; color: var(--muted); margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--line); line-height: 1.55; }

.cbd-services { padding: 100px 24px; background: var(--linen); }
.cbd-services__head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.cbd-services__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 760px) { .cbd-services__grid { grid-template-columns: 1fr; } }
.svc-card { background: #fff; border-radius: 14px; padding: 38px 32px; border: 1px solid var(--line); }
.svc-card__num { font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--cognac); margin-bottom: 12px; font-weight: 600; }
.svc-card__title { font-family: var(--serif); font-size: 28px; font-weight: 500; margin: 0 0 12px; line-height: 1.18; }
.svc-card__title em { color: var(--cognac); font-style: italic; }
.svc-card__price { font-family: var(--serif); font-size: 22px; color: var(--cocoa); margin: 16px 0 12px; }
.svc-card__price small { color: var(--muted); font-family: var(--sans); font-size: 12px; text-decoration: line-through; margin-left: 10px; letter-spacing: .04em; }
.svc-card__body { font-size: 14.5px; line-height: 1.65; color: #4a3d2e; margin: 0; }
.svc-card__list { margin: 14px 0 0; padding-left: 18px; font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.svc-card__list li { margin: 2px 0; }

.cbd-location { padding: 100px 24px; background: var(--cocoa); color: var(--linen); }
.cbd-location__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 880px) { .cbd-location__inner { grid-template-columns: 1fr; gap: 40px; } }
.cbd-location__copy h2 { font-family: var(--serif); font-size: clamp(34px, 4vw, 50px); font-weight: 400; line-height: 1.12; margin: 14px 0 22px; color: var(--linen); letter-spacing: -.005em; }
.cbd-location__copy h2 em { font-style: italic; color: var(--sand); }
.cbd-location__copy .section-eyebrow { color: var(--sand); }
.cbd-location__addr { background: rgba(248,243,234,.08); border: 1px solid rgba(212,184,149,.18); border-radius: 12px; padding: 22px 24px; margin: 22px 0; }
.cbd-location__addr-line1 { font-family: var(--serif); font-size: 24px; margin: 0 0 4px; color: var(--linen); }
.cbd-location__addr-line2 { color: rgba(248,243,234,.7); font-size: 13.5px; margin: 0; letter-spacing: .04em; }
.cbd-location__details { font-size: 14.5px; line-height: 1.7; color: rgba(248,243,234,.8); }
.cbd-location__details strong { color: var(--linen); font-weight: 600; }
.cbd-location__map { aspect-ratio: 4/5; border-radius: 12px; background: var(--cream); overflow: hidden; box-shadow: 0 20px 50px -20px rgba(0,0,0,.4); }
.cbd-location__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) sepia(.18) saturate(.9); }

.cbd-faq { padding: 100px 24px; background: var(--linen); }
.cbd-faq__head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.cbd-faq__list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 22px 26px; font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--cocoa); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 26px; color: var(--cognac); font-weight: 300; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 26px 24px; font-size: 14.5px; line-height: 1.7; color: #4a3d2e; }
.faq-item__body a { color: var(--cognac); text-decoration: underline; text-decoration-color: rgba(184,149,106,.4); text-underline-offset: 3px; }

.cbd-cta { padding: 100px 24px 110px; background: var(--cream); text-align: center; }
.cbd-cta__inner { max-width: 720px; margin: 0 auto; }
.cbd-cta h2 { font-family: var(--serif); font-size: clamp(36px, 4.5vw, 58px); font-weight: 400; line-height: 1.12; margin: 0 0 18px; }
.cbd-cta h2 em { color: var(--cognac); font-style: italic; }
.cbd-cta p { font-size: 16px; color: var(--cocoa); margin: 0 0 32px; line-height: 1.65; }
.cbd-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Injection detail pages */
.detail-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.detail-list li { position: relative; padding-left: 24px; font-size: 15.5px; color: var(--cocoa); line-height: 1.5; }
.detail-list li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--cognac); }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--serif); font-size: 18px; color: var(--cocoa); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--cognac); flex: none; }
.faq[open] summary::after { content: "\2013"; }
.faq p { margin: 0 0 18px; font-size: 15px; color: var(--cocoa); line-height: 1.65; }
@media (max-width: 640px) { .detail-list { grid-template-columns: 1fr; } }
