/* Sonthuy Beauty — production site stylesheet.
   Real classes, real media queries (mobile-first cascade, desktop overrides above breakpoints).
   Tokens come from styles.css (design system). Keep hardcoded values out of here. */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-sans); background: var(--son-ivory); color: var(--son-body-ink); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--son-bronze); }
a:hover { color: var(--son-charcoal); }
h1, h2, h3, h4, p { margin: 0; text-wrap: pretty; }
button { font-family: var(--font-sans); }
::selection { background: var(--son-gold-wash); color: var(--son-ink); }

/* ---------- Layout utilities ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.container--read { max-width: var(--container-read); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--space-7) var(--gutter); }
.section--lg { padding: 132px var(--gutter); }
.section--tight { padding: 56px var(--gutter) 0; }
.section--divider-top { border-top: 1px solid var(--son-divider); }
.section--divider-bottom { border-bottom: 1px solid var(--son-divider); }
.bg-ink { background: var(--son-ink); }
.bg-ink-grad { background: linear-gradient(165deg, #11100F 0%, #171513 100%); }
.bg-ivory { background: var(--son-ivory); }
.bg-cream { background: var(--son-cream); }
.bg-linen { background: var(--son-linen); }
@media (max-width: 900px) {
  .section { padding: var(--space-7) var(--gutter); }
  .section--lg { padding: 64px var(--gutter); }
}
/* Mobile: tighten side gutters so content (maps, cards, text) uses more width */
@media (max-width: 600px) {
  :root { --gutter: 18px; }
  .request-form { padding: 24px; }
}
/* Mobile: 16px form fields prevent iOS Safari zoom-on-focus */
@media (max-width: 1024px) {
  input.field, select.field, textarea.field { font-size: 16px; }
}

/* ---------- Eyebrow ---------- */
.eyebrow { display: inline-block; font-size: var(--fs-eyebrow); font-weight: var(--fw-medium); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--son-bronze); }
.eyebrow--center { text-align: center; }

/* ---------- Badge ---------- */
.badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--son-gold-34); border-radius: var(--radius-sm); padding: 9px 16px; font-size: 11.5px; font-weight: var(--fw-semibold); letter-spacing: .1em; text-transform: uppercase; color: var(--son-espresso); background: rgba(195,154,99,.06); }
.badge .star { color: var(--son-bronze); }
.badge-stack { display: inline-flex; flex-direction: column; align-items: center; gap: 10px; }
.badge-stack img { height: 51px; width: auto; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; box-sizing: border-box; font-family: var(--font-sans); font-weight: var(--fw-semibold); letter-spacing: var(--ls-button); text-transform: uppercase; font-size: var(--fs-button); line-height: 1; border-radius: var(--radius-sm); border: 1px solid transparent; text-decoration: none; cursor: pointer; padding: 16px 30px; transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.btn--sm { padding: 13px 22px; font-size: 12px; }
.btn--primary { background: var(--son-bronze); color: var(--son-ink); }
.btn[disabled], .btn:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--son-bronze); box-shadow: 0 6px 18px rgba(195,154,99,.32); color: var(--son-ink); }
.btn--ink { background: var(--son-ink); color: var(--son-white); }
.btn--ink:hover, .btn--ink:focus-visible { background: #1e1b18; box-shadow: 0 6px 18px rgba(17,16,15,.28); color: var(--son-white); }
.btn--outline { background: transparent; color: var(--son-on-dark); border-color: var(--son-on-dark-40); font-weight: var(--fw-medium); }
.btn--outline:hover, .btn--outline:focus-visible { border-color: var(--son-bronze); background: rgba(226,208,181,.12); color: var(--son-card-ivory); }
.btn--outline-light { background: transparent; color: var(--son-charcoal); border-color: rgba(34,32,29,.4); font-weight: var(--fw-medium); }
.btn--outline-light:hover, .btn--outline-light:focus-visible { border-color: var(--son-bronze); background: rgba(195,154,99,.07); color: var(--son-charcoal); }
.btn--link { background: transparent; color: var(--son-bronze); padding: 0 0 4px; border-radius: 0; font-size: var(--fs-caption); border-bottom: none; }
.btn--link:hover, .btn--link:focus-visible { color: var(--son-charcoal); }
.btn--link-light { background: transparent; color: var(--son-charcoal); padding: 0 0 4px; border-radius: 0; font-size: var(--fs-caption); border-bottom: 1px solid var(--son-bronze); }
.btn--link-light:hover, .btn--link-light:focus-visible { color: var(--son-bronze); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-row--center { justify-content: center; }
/* Mobile tap-target floor (WCAG 2.5.5): solid buttons and blog filter chips >= 44px */
@media (max-width: 1024px) {
  .btn:not(.btn--link):not(.btn--link-light) { min-height: 44px; }
  [data-blog-filters] button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
}

/* ---------- Header / nav ---------- */
.announce-bar { background: var(--son-cream); color: var(--son-stone); display: flex; align-items: center; justify-content: center; min-height: 30px; padding: 5px 18px; font-size: 11.5px; line-height: 1.3; letter-spacing: .18em; text-transform: uppercase; text-align: center; border-bottom: 1px solid var(--son-divider); }
.site-header-wrap { position: sticky; top: 0; z-index: 50; }
.site-header { background: rgba(17,16,15,.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--son-gold-20); position: relative; }
.site-header__row { max-width: var(--container); margin: 0 auto; min-height: 66px; padding: 0 var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.logo-link { display: flex; align-items: center; background: none; border: none; padding: 0; flex: none; }
.logo-link img { height: 42px; width: auto; }
.primary-nav { flex: 1; display: none; align-items: center; justify-content: center; gap: 20px; list-style: none; margin: 0; padding: 0; }
.primary-nav a { position: relative; background: none; border: none; padding: 2px 0; font-family: var(--font-sans); font-size: 11.5px; font-weight: var(--fw-medium); letter-spacing: .15em; text-transform: uppercase; white-space: nowrap; text-decoration: none; color: var(--son-on-dark-72); transition: color .2s ease; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--son-bronze); }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 1px; background: var(--son-bronze); transform: scaleX(0); opacity: 0; transition: transform .28s ease, opacity .28s ease; }
.primary-nav a[aria-current="page"] { color: var(--son-bronze); }
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); opacity: 1; }
.header-cta { display: none; flex: none; gap: 10px; }
.header-cta .btn { font-size: 11px; letter-spacing: .14em; padding: 11px 14px; }
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle-label { display: flex; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; cursor: pointer; flex: none; position: absolute; right: var(--gutter); top: 11px; z-index: 2; }
.nav-toggle-label span { width: 24px; height: 1.5px; background: var(--son-ivory); transition: transform .26s ease, opacity .26s ease; }
.nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-nav { display: block; border-top: 0 solid var(--son-gold-14); background: rgba(17,16,15,.98); padding: 0 var(--gutter); max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.mobile-nav a { display: block; width: 100%; text-align: left; padding: 16px 0; border-bottom: 1px solid var(--son-gold-14); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--son-on-dark-72); text-decoration: none; font-family: var(--font-sans); background: none; border-left: none; border-right: none; border-top: none; }
.mobile-nav a[aria-current="page"] { color: var(--son-bronze); }
.mobile-nav .btn { width: 100%; margin-top: 22px; justify-content: center; text-align: center; padding-left: 24px; padding-right: 24px; }
.nav-toggle:checked ~ .mobile-nav { max-height: 640px; padding: 8px var(--gutter) 24px; border-top-width: 1px; }
@media (min-width: 1180px) {
  .primary-nav { display: flex; }
  .header-cta { display: flex; align-items: center; }
  .nav-toggle-label { display: none; }
  .mobile-nav { display: none; }
}

/* ---------- Hero patterns ---------- */
.hero { position: relative; overflow: hidden; }
.hero__mono { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); height: 360px; width: auto; opacity: .07; pointer-events: none; z-index: 0; }
.hero__content { position: relative; max-width: var(--container-read); margin: 0 auto; text-align: center; }
.hero--split { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 480px; }
.hero--split .hero__copy { padding: 84px 56px 84px var(--gutter); display: flex; flex-direction: column; justify-content: center; }
.hero--split .hero__media { position: relative; overflow: hidden; background: #000; }
.hero--split .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero--split { grid-template-columns: 1fr; min-height: 0; }
  .hero--split .hero__copy { padding: 48px var(--gutter) 40px; order: 2; }
  .hero--split .hero__media { min-height: 260px; order: 1; }
}
.back-link { display: inline-block; background: none; border: none; cursor: pointer; color: #B7B2AA; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 22px; font-family: var(--font-sans); text-decoration: none; padding: 0; }
.back-link:hover, .back-link:focus-visible, .back-link:hover a, .back-link a:hover { text-decoration: underline; text-underline-offset: 3px; color: var(--son-bronze) !important; }

/* ---------- Our Story full-bleed hero (image left, copy right) ---------- */
.story-hero { min-height: 460px; display: flex; align-items: center; }
.story-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.story-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,16,15,.8) 0%, rgba(17,16,15,.34) 12%, rgba(17,16,15,0) 26%), linear-gradient(90deg, rgba(17,16,15,.45) 0%, rgba(17,16,15,0) 24%, rgba(17,16,15,0) 46%, rgba(17,16,15,.4) 66%, rgba(17,16,15,.68) 100%); }
.story-hero__mono { left: 50%; right: auto; top: 50%; transform: translate(-50%,-50%); height: 340px; opacity: .12; z-index: 0; }
.story-hero__copy > *:not(.story-hero__mono) { position: relative; z-index: 1; }
.story-hero__inner { position: relative; width: 100%; padding: 64px var(--gutter); }
.story-hero__copy { max-width: 500px; margin-left: auto; position: relative; }
.story-hero__copy .back-link { display: block; }
.story-hero__copy .btn-row { margin-top: 34px; }
@media (max-width: 900px) {
  .story-hero { display: block; }
  .story-hero__media { position: static; width: 100%; height: 300px; object-position: 12% 26%; }
  .story-hero__scrim { display: none; }
  .story-hero__mono { display: none; }
  .story-hero__inner { padding: 40px var(--gutter) 46px; }
  .story-hero__copy { max-width: none; margin-left: 0; }
  .story-hero__copy h1 { font-size: 34px; }
}

/* ---------- Reusable full-bleed page hero (Son photo + scrim + copy) ---------- */
.page-hero { position: relative; overflow: hidden; min-height: 460px; display: flex; align-items: center; }
.page-hero > .back-link, .story-hero > .back-link { position: absolute; top: 32px; left: calc(2 * var(--gutter) + max(0px, (100% - 2 * var(--gutter) - var(--container)) / 2)); z-index: 3; margin: 0; }
.page-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; }
.page-hero__scrim { position: absolute; inset: 0; }
.page-hero--right .page-hero__scrim { background: linear-gradient(180deg, rgba(17,16,15,.8) 0%, rgba(17,16,15,.34) 12%, rgba(17,16,15,0) 26%), linear-gradient(270deg, rgba(17,16,15,.95) 0%, rgba(17,16,15,.9) 30%, rgba(17,16,15,.64) 50%, rgba(17,16,15,.26) 68%, rgba(17,16,15,0) 88%); }
.page-hero--left .page-hero__scrim { background: linear-gradient(180deg, rgba(17,16,15,.8) 0%, rgba(17,16,15,.34) 12%, rgba(17,16,15,0) 26%), linear-gradient(90deg, rgba(17,16,15,.95) 0%, rgba(17,16,15,.9) 30%, rgba(17,16,15,.64) 50%, rgba(17,16,15,.26) 68%, rgba(17,16,15,0) 88%); }
/* Light-background heroes: dark band reaches only ~38% across, then reveals the airy backdrop */
.page-hero--light.page-hero--right .page-hero__scrim { background: linear-gradient(270deg, rgba(17,16,15,.95) 0%, rgba(17,16,15,.9) 26%, rgba(17,16,15,.48) 35%, rgba(17,16,15,0) 42%); }
.page-hero--light.page-hero--left .page-hero__scrim { background: linear-gradient(90deg, rgba(17,16,15,.95) 0%, rgba(17,16,15,.9) 26%, rgba(17,16,15,.48) 35%, rgba(17,16,15,0) 42%); }
.page-hero--light .page-hero__copy { max-width: 440px; }
.page-hero__inner { position: relative; width: 100%; padding: 60px var(--gutter); }
.page-hero__copy { max-width: 520px; position: relative; }
.page-hero--right .page-hero__copy { margin-left: auto; }
/* Monogram watermark, centered directly behind the hero copy */
.page-hero__mono { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); height: 340px; width: auto; opacity: .08; z-index: 0; pointer-events: none; }
.page-hero--left .page-hero__mono { left: 45%; }
.page-hero__copy > *:not(.page-hero__mono) { position: relative; z-index: 1; }
.page-hero__copy h1 { color: var(--son-card-ivory); font-size: var(--fs-heading); line-height: var(--lh-heading); font-weight: var(--fw-semibold); letter-spacing: var(--ls-heading); margin-top: 14px; }
.page-hero__copy > p { margin: 22px 0 0; color: var(--son-on-dark-72); font-size: var(--fs-lead); line-height: var(--lh-lead); }
.page-hero__copy .btn-row { margin-top: 32px; }
@media (max-width: 900px) {
  .page-hero { display: block; min-height: 0; }
  .page-hero__media { position: static; width: 100%; height: 300px; }
  .page-hero__scrim { display: none; }
  .page-hero__mono { display: none; }
  .page-hero__inner { padding: 38px var(--gutter) 42px; }
  .page-hero__copy { max-width: none; margin-left: 0; }
  .page-hero__copy h1 { font-size: 32px; }
}

/* ---------- Split hero (image one side, copy the other) ---------- */
.split-hero { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; padding: 0; min-height: min(58vh, 500px); }
.split-hero__media { position: relative; overflow: hidden; }
.split-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.split-hero__copy { padding: 64px clamp(28px, 5vw, 68px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; color: var(--son-on-dark-72); position: relative; }
.split-hero__copy > *:not(.hero__mono) { position: relative; z-index: 1; }
.split-hero__copy .back-link { position: absolute; top: 32px; left: clamp(28px, 5vw, 68px); margin: 0; z-index: 2; }
.split-hero__copy .eyebrow { display: block; }
.split-hero__copy h1 { margin: 14px 0 0; color: var(--son-card-ivory); font-size: 38px; line-height: 1.15; font-weight: var(--fw-semibold); letter-spacing: var(--ls-heading); }
.split-hero__copy > p { margin: 18px 0 0; max-width: 46ch; color: var(--son-on-dark-72); font-size: 17px; line-height: var(--lh-lead); }
@media (max-width: 860px) {
  .split-hero { grid-template-columns: 1fr; min-height: 0; }
  .split-hero__media { height: 280px; }
  .split-hero__copy { padding: 40px var(--gutter) 44px; }
  .split-hero__copy h1 { font-size: 30px; }
}

/* ---------- Intro / section heading ---------- */
.intro { max-width: var(--container-read); margin: 0 auto; text-align: center; }
.intro h2 { color: var(--son-espresso); font-size: var(--fs-heading); line-height: var(--lh-heading); font-weight: var(--fw-semibold); letter-spacing: var(--ls-heading); }
.intro--dark h2 { color: var(--son-card-ivory); }
.intro p { margin: 20px 0 0; color: var(--son-stone); font-size: 17px; line-height: var(--lh-lead); }
.intro--dark p { color: var(--son-on-dark-72); }
@media (max-width: 700px) { .intro h2 { font-size: 28px; } }

/* ---------- Cards ---------- */
.card { background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); padding: 32px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-2px); border-color: var(--son-bronze); box-shadow: 0 14px 30px rgba(23,20,18,.07); }
.card--dark { background: var(--son-ink-card); border-color: var(--son-gold-26); color: var(--son-on-dark-72); }
.card--dark:hover { border-color: var(--son-bronze); }
.card--flat:hover { transform: none; box-shadow: none; }

/* Service card (home category tiles) */
.service-card { position: relative; display: block; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--son-gold-20); text-decoration: none; background: var(--son-ink); }
.service-card__img { aspect-ratio: 4/5; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.service-card:hover .service-card__img { transform: scale(1.02); }
.service-card__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,16,15,.92) 0%, rgba(17,16,15,.35) 55%, rgba(17,16,15,.05) 100%); }
.service-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; }
.service-card__eyebrow { display: block; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--son-bronze); font-weight: var(--fw-semibold); margin-bottom: 8px; }
.service-card__title { color: var(--son-card-ivory); font-size: 21px; font-weight: var(--fw-semibold); line-height: 1.25; margin: 0 0 8px; }
.service-card__desc { color: var(--son-on-dark-72); font-size: 14px; line-height: 1.55; margin: 0 0 12px; max-width: 320px; }
.service-card__meta { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--son-on-dark-60); margin-bottom: 10px; }
.service-card__link { color: var(--son-bronze); font-size: 12px; font-weight: var(--fw-semibold); letter-spacing: .1em; text-transform: uppercase; }

/* Gallery image tiles — scale on hover, echoing the home service cards */
.gallery-grid > div { position: relative; }
.gallery-grid > div img { transition: transform .3s ease; }
.gallery-grid > div:hover img { transform: scale(1.03); }

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; border: 1px solid var(--son-divider); border-radius: var(--radius-none); overflow: hidden; background: var(--son-cream); }
.stat-strip--dark { background: linear-gradient(165deg, #11100F 0%, #171513 100%); border-color: var(--son-gold-14); }
.stat-strip__item { padding: 30px 24px; text-align: center; border-left: 1px solid var(--son-divider); }
.stat-strip--dark .stat-strip__item { border-left-color: var(--son-gold-14); }
.stat-strip__item:first-child { border-left: none; }
.stat-strip__value { display: block; font-size: var(--fs-title); font-weight: var(--fw-semibold); color: var(--son-espresso); }
.stat-strip--dark .stat-strip__value { color: var(--son-card-ivory); }
.stat-strip__label { color: var(--son-stone); font-size: 13.5px; }
.stat-strip--dark .stat-strip__label { color: var(--son-on-dark-66); }
@media (max-width: 720px) {
  .stat-strip { grid-template-columns: 1fr 1fr !important; }
  .stat-strip__item:nth-child(2n+1) { border-left: none; }
  .stat-strip__item:nth-child(n+3) { border-top: 1px solid var(--son-divider); }
  .stat-strip--dark .stat-strip__item:nth-child(n+3) { border-top-color: var(--son-gold-14); }
}
/* Stat cards: separate button-like cells with hover highlight (our-story) */
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-cards .stat-strip__item { border: 1px solid var(--son-divider); border-radius: var(--radius-md); background: var(--son-white); padding: 34px 24px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.stat-cards .stat-strip__item:hover { transform: translateY(-2px); border-color: var(--son-bronze); box-shadow: 0 14px 30px rgba(23,20,18,.07); }
@media (max-width: 720px) { .stat-cards { grid-template-columns: 1fr 1fr; } }

/* ---------- Rating block ---------- */
.rating { border: 1px solid var(--son-gold-26); border-radius: var(--radius-md); padding: 34px; text-align: center; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.rating:hover { border-color: var(--son-bronze); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(17,16,15,.34); }
.rating__score { color: var(--son-bronze); font-size: 42px; font-weight: var(--fw-semibold); letter-spacing: -.02em; line-height: 1; }
.rating__name { margin: 10px 0 2px; color: var(--son-card-ivory); font-size: 18px; font-weight: var(--fw-semibold); }
.rating__meta { margin: 0; color: var(--son-on-dark-60); font-size: 14px; }

/* ---------- Grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 28px; align-items: start; }
/* Alternating card heights on the home services row: 1 & 3 taller, 2 & 4 shorter */
.grid-auto .service-card__img { height: auto; }
.grid-auto .service-card:nth-child(odd) .service-card__img { aspect-ratio: 4 / 5.5; }
.grid-auto .service-card:nth-child(even) .service-card__img { aspect-ratio: 4 / 5.1; }
@media (max-width: 700px) { .grid-auto { align-items: stretch; } .grid-auto .service-card__img { aspect-ratio: 4 / 5; } }
@media (max-width: 900px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- FAQ (native <details>, zero JS) ---------- */
.faq { border-top: 1px solid var(--son-divider); }
.faq details { border-bottom: 1px solid var(--son-divider); }
.faq summary { list-style: none; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; cursor: pointer; padding: 24px 18px; font-size: 18px; font-weight: var(--fw-semibold); color: var(--son-charcoal); transition: background .2s ease, box-shadow .2s ease, color .2s ease; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover, .faq summary:focus-visible { background: rgba(195,154,99,.06); box-shadow: inset 4px 0 0 var(--son-bronze); color: var(--son-bronze); }
.faq details[open] summary { color: var(--son-espresso); }
.faq summary::after { content: "+"; flex: none; color: var(--son-bronze); font-size: 20px; line-height: 1; margin-top: -2px; }
.faq details[open] summary::after { content: "–"; }
.faq .faq__answer { margin: 0; padding: 0 18px 24px; max-width: 640px; color: var(--son-cocoa); font-size: 15.5px; line-height: 1.7; }
@media (max-width: 700px) { .faq summary { font-size: 16px; padding: 20px 16px; } .faq .faq__answer { padding: 0 16px 24px; } }

/* ---------- Forms ---------- */
.field-label { display: block; color: var(--son-charcoal); font-size: 11px; font-weight: var(--fw-semibold); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.field { width: 100%; box-sizing: border-box; font-family: var(--font-sans); font-size: 15px; padding: 13px 15px; background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-sm); color: var(--son-espresso); transition: border-color .22s ease; }
.field:focus { outline: none; border-color: var(--son-bronze); }
/* Keyboard focus gets a clearly visible ring (WCAG 2.4.7); pointer focus keeps the subtle border. */
.field:focus-visible { outline: 2px solid var(--son-bronze); outline-offset: 2px; }
.studio-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.studio-pick input { position: absolute; opacity: 0; pointer-events: none; }
.studio-pick label { display: block; padding: 13px; cursor: pointer; text-align: center; font-family: var(--font-sans); font-size: 13px; font-weight: var(--fw-semibold); border-radius: var(--radius-sm); border: 1px solid var(--son-divider); background: var(--son-white); color: var(--son-espresso); transition: border-color .22s ease, background .22s ease; }
.studio-pick input:checked + label { border-color: var(--son-bronze); background: var(--son-gold-14); }
.studio-pick label:hover { border-color: var(--son-bronze); }
.studio-pick input:focus-visible + label { outline: 2px solid var(--son-bronze); outline-offset: 2px; }

/* ---------- Footer ---------- */
.site-footer { font-family: var(--font-sans); background: var(--son-obsidian); color: var(--son-on-dark-72); border-top: 1px solid var(--son-gold-14); }
.footer-grid { max-width: var(--container); margin: 0 auto; padding: 104px var(--gutter) 0; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 48px; }
.footer-brand__mark { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.footer-brand__mark img { width: 34px; height: 42px; object-fit: contain; }
.footer-brand__mark span { color: var(--son-ivory); font-size: 14px; font-weight: var(--fw-semibold); letter-spacing: .32em; text-transform: uppercase; }
.footer-brand p { max-width: 300px; font-size: 14.5px; line-height: var(--lh-body); color: var(--son-on-dark-60); }
.footer-badge { margin-top: 22px; display: inline-flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-badge .badge { color: var(--son-on-dark); border-color: var(--son-gold-26); }
.footer-badge img { height: 51px; width: auto; }
.footer-head { margin: 0 0 16px; color: var(--son-ivory); font-size: 12px; font-weight: var(--fw-semibold); letter-spacing: .18em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; font-size: 14px; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: var(--son-on-dark-72); text-decoration: none; font-size: 14px; transition: color .2s ease; }
.footer-links a:hover { color: var(--son-bronze); text-decoration: underline; }
.footer-contact p { font-size: 13.5px; line-height: 1.6; color: var(--son-on-dark-66); margin: 0 0 16px; }
.footer-contact strong { color: var(--son-ivory); font-weight: var(--fw-semibold); }
.footer-contact a { color: var(--son-bronze); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-social { margin: 48px auto 0; padding: 0 var(--gutter); display: flex; justify-content: center; position: relative; }
.footer-social::after { content: ""; position: absolute; top: calc(50% + 20px); transform: translateY(-50%); right: max(8px, calc((100% - var(--container)) / 2)); width: 120px; height: 120px; background: var(--son-ivory); -webkit-mask: url("assets/logos/monogram-bronze.png") center / contain no-repeat; mask: url("assets/logos/monogram-bronze.png") center / contain no-repeat; opacity: .09; pointer-events: none; }
.footer-social__grid { border-top: 1px solid var(--son-gold-14); padding: 30px var(--gutter) 0; display: flex; justify-content: center; gap: clamp(56px, 11vw, 168px); text-align: center; }
.footer-social__name { color: var(--son-ivory); font-size: 12px; font-weight: var(--fw-semibold); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 12px; }
.footer-social__links { display: flex; gap: 20px; justify-content: center; }
.footer-social__links a { color: var(--son-bronze); text-decoration: none; font-size: 13px; font-weight: var(--fw-semibold); letter-spacing: .06em; }
.footer-social__links a:hover { text-decoration: underline; }
.footer-bottom { max-width: var(--container); margin: 40px auto 0; padding: 22px var(--gutter) 30px; border-top: 1px solid var(--son-gold-14); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--son-on-dark-60); }
.footer-bottom a { color: var(--son-on-dark-60); text-decoration: none; }
.footer-bottom a:hover { color: var(--son-bronze); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-social__grid { flex-direction: column; align-items: center; gap: 24px; }
}
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; padding-top: 64px; }
}

/* ---------- Home page ---------- */
.home-hero { min-height: min(80vh, 680px); display: flex; align-items: center; }
.home-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 74% 24%; filter: saturate(1.06) contrast(1.03); }
.home-hero__scrim { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(17,16,15,.93) 0%,rgba(17,16,15,.8) 30%,rgba(17,16,15,.42) 53%,rgba(17,16,15,0) 75%); }
.home-hero__inner { position: relative; width: 100%; padding: 64px var(--gutter); }
.home-hero__copy { max-width: 588px; position: relative; }
.home-hero__kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.home-hero__kicker span:last-child { font-size: 12px; font-weight: var(--fw-medium); letter-spacing: .26em; text-transform: uppercase; color: var(--son-bronze); }
.home-hero__line { width: 34px; height: 1px; background: var(--son-bronze); flex: none; display: inline-block; }
.home-hero__copy h1 { color: var(--son-card-ivory); max-width: 560px; font-size: clamp(33px, 3.1vw, 44px); line-height: 1.08; font-weight: var(--fw-semibold); }
.home-hero__copy > p { margin: 26px 0 0; max-width: 486px; color: var(--son-on-dark-72); font-size: 17.5px; line-height: var(--lh-lead); }
.home-hero__copy .btn-row { margin-top: 38px; }
.home-hero__tags { display: flex; align-items: center; flex-wrap: wrap; row-gap: 10px; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--son-gold-14); font-size: 11px; font-weight: var(--fw-medium); letter-spacing: .2em; text-transform: uppercase; color: var(--son-on-dark-66); }
.home-hero__foot { margin: 32px 0 0; max-width: 420px; color: var(--son-on-dark-60); font-size: 13px; line-height: 1.7; }
@media (max-width: 900px) {
  .home-hero { display: block; }
  .home-hero__media { position: static; width: 100%; height: 340px; object-position: 70% 14%; }
  .home-hero__scrim { display: none; }
  .home-hero__inner { padding: 32px var(--gutter) 48px; }
  .home-hero__copy { max-width: none; }
  .home-hero__copy h1 { font-size: 30px; line-height: 1.12; }
}
.home-hero-mobile-wrap { position: relative; height: 340px; overflow: hidden; display: none; }
@media (max-width: 900px) { .home-hero-mobile-wrap { display: block; } .home-hero-desktop-media { display: none; } }
@media (min-width: 901px) { .home-hero-mobile-wrap { display: none; } }

.studio-band { position: relative; overflow: hidden; text-align: center; }
.studio-band__copy { position: relative; max-width: 640px; margin: 0 auto; }
.studio-band p { color: var(--son-espresso); font-size: 23px; line-height: 1.55; margin: 0; }
.studio-band__tag { display: block; margin-top: 22px; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--son-bronze); font-weight: var(--fw-medium); }
@media (max-width: 700px) { .studio-band p { font-size: 19px; } }

.location-card { background: var(--son-white); border: 1px solid var(--son-card-ivory); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 18px 44px rgba(17,16,15,.08); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.location-card:hover { transform: translateY(-2px); border-color: var(--son-bronze); box-shadow: 0 24px 54px rgba(17,16,15,.12); }
.location-card__mark { position: relative; background: linear-gradient(150deg, var(--son-card-ivory), var(--son-taupe)); padding: 44px 34px; border-bottom: 1px solid var(--son-divider); display: flex; flex-direction: column; align-items: center; text-align: center; }
.location-card__mark img { height: 74px; width: auto; margin-bottom: 18px; }
.location-card__mark .eyebrow-tiny { display: block; font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--son-stone); font-weight: 600; margin-bottom: 8px; padding-left: .34em; }
.location-card__mark .shortname { display: block; font-size: 26px; letter-spacing: -.01em; color: var(--son-espresso); font-weight: 600; }
.location-card__body { padding: 38px 42px; display: flex; flex-direction: column; flex: 1; }
.location-card__area { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--son-bronze); font-weight: 600; }
.location-card__label { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--son-stone); font-weight: 600; margin-bottom: 6px; }
.location-card__best { margin: 22px 0 0; color: var(--son-cocoa); font-size: 15px; line-height: var(--lh-body); }
.location-card__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 11px; }
.location-card__chips span { font-size: 12px; color: var(--son-charcoal); border: 1px solid var(--son-divider); border-radius: var(--radius-sm); padding: 5px 11px; white-space: nowrap; }
.location-card__addr { margin: 22px 0 24px; padding-top: 16px; border-top: 1px solid var(--son-divider); font-size: 12.5px; color: var(--son-stone); line-height: 1.6; }
@media (max-width: 700px) { .location-card__mark, .location-card__body { padding: 30px 28px; } }

.gallery-tile { position: relative; display: block; text-decoration: none; grid-column: span 2; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-md); border: 1px solid var(--son-gold-20); }
.gallery-tile--wide { grid-column: span 3; aspect-ratio: 2.3/1; }
.gallery-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-tile:hover img { transform: scale(1.02); }
.gallery-tile__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,16,15,.85) 0%, rgba(17,16,15,.18) 52%, rgba(17,16,15,0) 100%); }
.gallery-tile__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 22px 24px; }
.gallery-tile__cat { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--son-bronze); font-weight: 600; margin-bottom: 7px; }
.gallery-tile__name { font-size: 17px; font-weight: 600; color: var(--son-card-ivory); line-height: 1.25; }
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-tile, .gallery-tile--wide { grid-column: auto; } .gallery-tile--wide { aspect-ratio: 2.3/1; } }

.journey-card { display: flex; flex-direction: column; border-radius: var(--radius-md); padding: 30px 26px; background: var(--son-ink-card); border: 1px solid var(--son-gold-26); transition: border-color .25s ease, transform .3s ease, box-shadow .3s ease; }
.journey-card:hover { border-color: var(--son-bronze); transform: translateY(-2px); box-shadow: 0 24px 54px rgba(17,16,15,.34); }
.journey-card--accent { background: linear-gradient(160deg, rgba(195,154,99,.12), rgba(195,154,99,0)); border-color: rgba(195,154,99,.5); }
.journey-card__step { color: var(--son-bronze); font-size: 13px; font-weight: 600; letter-spacing: .1em; }
.journey-card h3 { margin: 14px 0 10px; color: var(--son-card-ivory); font-size: var(--fs-subtitle); font-weight: 600; line-height: var(--lh-title); }
.journey-card p { margin: 0 0 22px; color: var(--son-on-dark-72); font-size: 14.5px; line-height: var(--lh-body); }
.journey-card a, .journey-card__cta { margin-top: auto; font-size: var(--fs-caption); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--son-bronze); text-decoration: none; align-self: flex-start; }
.journey-card--accent .journey-card__cta { align-self: stretch; text-align: center; color: var(--son-ink); background: var(--son-bronze); padding: 13px 16px; border-radius: var(--radius-sm); }

.meet-son { display: grid; grid-template-columns: 1fr 1.12fr; gap: 76px; align-items: start; }
.meet-son__portrait { position: relative; }
.meet-son__portrait::before { content: ""; position: absolute; inset: 26px -26px -26px 26px; background: var(--son-taupe); border-radius: 3px; }
.meet-son__portrait::after { content: ""; position: absolute; inset: 12px -12px -12px 12px; border: 1px solid var(--son-bronze); border-radius: 3px; }
.meet-son__portrait img { position: relative; width: 100%; border-radius: 3px; box-shadow: 0 30px 70px rgba(17,16,15,.22); }
.meet-son__name { margin-top: 32px; padding-left: 2px; }
.meet-son__name strong { display: block; font-size: 20px; font-weight: 600; color: var(--son-espresso); letter-spacing: -.01em; }
.meet-son__name span { display: block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--son-bronze); font-weight: 600; margin-top: 6px; }
.meet-son__copy h2 { font-size: 44px; line-height: 1.1; margin-bottom: 26px; }
.meet-son__copy p { margin: 0 0 18px; max-width: 540px; color: var(--son-cocoa); font-size: 17px; line-height: 1.72; }
.meet-son__timeline { border-left: 1px solid var(--son-divider); padding-left: 30px; display: grid; gap: 24px; margin: 8px 0 40px; }
.meet-son__timeline-item { position: relative; display: grid; grid-template-columns: 96px 1fr; gap: 24px; align-items: baseline; }
.meet-son__timeline-item::before { content: ""; position: absolute; left: -33.5px; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--son-bronze); box-shadow: 0 0 0 4px var(--son-cream); }
.meet-son__timeline-item .y { font-size: 13.5px; font-weight: 700; letter-spacing: .08em; color: var(--son-bronze); text-transform: uppercase; }
.meet-son__timeline-item .t { font-size: 16px; color: var(--son-espresso); line-height: 1.55; }
@media (max-width: 900px) {
  .meet-son { grid-template-columns: 1fr; gap: 44px; }
  .meet-son__copy h2 { font-size: 30px; }
  .meet-son__timeline-item { grid-template-columns: 72px 1fr; gap: 16px; }
}

.family-band { position: relative; overflow: hidden; }
.family-band__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 64px; align-items: start; position: relative; }
.family-band h2 { font-size: 32px; line-height: 1.18; }
.family-band p { max-width: 560px; color: var(--son-cocoa); font-size: 17px; line-height: 1.72; margin: 0; }
.family-band__meta { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--son-divider); display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--son-stone); font-weight: 500; }
@media (max-width: 900px) { .family-band__grid { grid-template-columns: 1fr; gap: 28px; } .family-band h2 { font-size: 26px; } }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: start; }
.faq-layout .intro-col p { margin: 22px 0 0; max-width: 320px; color: var(--son-stone); font-size: 15px; line-height: 1.65; }
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; gap: 36px; } }

.learn-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.learn-card { flex: 0 1 300px; text-align: left; text-decoration: none; background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.learn-card:hover { transform: translateY(-2px); border-color: var(--son-bronze); box-shadow: 0 14px 30px rgba(23,20,18,.07); }
.learn-card strong { display: block; color: var(--son-espresso); font-size: 16px; font-weight: 600; line-height: 1.3; }
.learn-card span.sub { display: block; margin-top: 5px; color: var(--son-stone); font-size: 13px; line-height: 1.45; }
.learn-card .arrow { flex: none; color: var(--son-bronze); font-size: 16px; }
@media (max-width: 700px) { .learn-card { flex: 1 1 100%; } }

.client-love-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .client-love-grid { grid-template-columns: 1fr; } }

/* ---------- Studio / location detail card (Locations + Contact) ---------- */
.studio-card { background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.studio-card:hover { transform: translateY(-2px); border-color: var(--son-bronze); box-shadow: 0 14px 30px rgba(23,20,18,.07); }
.studio-card__logo { height: 176px; background: var(--son-ink); display: flex; align-items: center; justify-content: center; padding: 26px 34px; }
.studio-card__logo img { max-height: 108px; max-width: 88%; object-fit: contain; }
.studio-card__body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.studio-card__desc { margin: 8px 0 20px; color: var(--son-stone); font-size: 15px; line-height: var(--lh-body); }
.studio-card__meta { padding: 18px 0; border-top: 1px solid var(--son-divider); border-bottom: 1px solid var(--son-divider); margin: 0 0 20px; display: grid; gap: 8px; color: var(--son-cocoa); font-size: 14px; }
.studio-card__meta .phone { color: var(--son-bronze); font-weight: 600; text-decoration: none; }
.studio-card__hours-head { color: var(--son-bronze); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.studio-card__hours { margin: 0 0 20px; display: grid; gap: 4px; }
.hours-row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--son-cocoa); }
.studio-card__qr { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 16px; padding: 16px 12px; background: var(--son-linen); border-radius: var(--radius-sm); text-align: center; }
.studio-card__qr img { width: 192px; height: 192px; object-fit: contain; border-radius: 4px; background: #fff; padding: 2px; }
.studio-card__qr span { color: var(--son-stone); font-size: 12.5px; line-height: 1.5; }
.studio-card__map { margin-top: 20px; border-top: 1px solid var(--son-divider); padding-top: 20px; }
.studio-card__map iframe { display: block; width: 100%; height: 220px; border: 0; border-radius: var(--radius-sm); }
@media (max-width: 700px) { .grid-2.studio-grid { grid-template-columns: 1fr; } }

/* ---------- Contact page ---------- */
.fresha-panel { max-width: 680px; margin: 0 auto; background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); padding: 32px; }
.fresha-pick { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 16px 10px; background: var(--son-linen); border-radius: var(--radius-sm); text-align: center; }
.fresha-pick img { width: 228px; height: 228px; object-fit: contain; background: #fff; border-radius: 4px; padding: 2px; max-width: 100%; }
.request-panel { max-width: 560px; margin: 0 auto; }
.request-form { background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); padding: 36px; display: grid; gap: 22px; }
.request-form[hidden] { display: none; }
.request-confirm { background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); padding: 44px; text-align: center; }
.request-confirm .star-lg { color: var(--son-bronze); font-size: 34px; }

/* ---------- Story / editorial rows ---------- */
.story-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-row--reverse .story-row__text { order: 2; }
.story-row--reverse .story-row__media { order: 1; }
.story-row__text h2 { font-size: 34px; line-height: 1.15; margin: 0 0 22px; color: var(--son-espresso); font-weight: 600; letter-spacing: var(--ls-heading); }
.story-row__text p { margin: 0 0 18px; color: var(--son-cocoa); font-size: 17px; line-height: 1.72; }
.story-row__text p:last-child { margin-bottom: 0; }
.story-row__media img { width: 100%; border-radius: 4px; display: block; box-shadow: 0 24px 60px rgba(17,16,15,.18); }
@media (max-width: 900px) {
  .story-row { grid-template-columns: 1fr; gap: 32px; }
  .story-row--reverse .story-row__text, .story-row--reverse .story-row__media { order: unset; }
}
.quote-band { text-align: center; position: relative; overflow: hidden; }
.quote-band__inner { max-width: 640px; margin: 0 auto; }
.quote-band__rule { display: block; width: 40px; height: 1px; background: var(--son-bronze); margin: 0 auto 26px; }
.quote-band p { color: var(--son-espresso); font-size: 25px; line-height: 1.5; font-weight: 500; letter-spacing: -.01em; margin: 0; }
.quote-band--dark p { color: var(--son-card-ivory); }
@media (max-width: 700px) { .quote-band p { font-size: 20px; } }

.timeline { max-width: 640px; margin: 0 auto; border-left: 1px solid var(--son-divider); padding-left: 34px; display: grid; gap: 30px; }
.timeline-item { position: relative; display: grid; grid-template-columns: 110px 1fr; gap: 28px; align-items: baseline; }
.timeline-item::before { content: ""; position: absolute; left: -38px; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--son-bronze); box-shadow: 0 0 0 4px var(--son-cream); }
.timeline-item .y { font-size: 13px; font-weight: 700; letter-spacing: .08em; color: var(--son-bronze); text-transform: uppercase; }
.timeline-item .t { font-size: 16px; color: var(--son-espresso); line-height: 1.6; }
@media (max-width: 900px) { .timeline-item { grid-template-columns: 84px 1fr; gap: 16px; } }

.two-studio-card { background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); padding: 34px 32px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.two-studio-card:hover { transform: translateY(-2px); border-color: var(--son-bronze); box-shadow: 0 14px 30px rgba(23,20,18,.07); }
.two-studio-card .opened { color: var(--son-bronze); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.two-studio-card h3 { color: var(--son-espresso); font-size: 23px; font-weight: 600; line-height: var(--lh-title); margin: 0; }
.two-studio-card .area { margin-top: 6px; color: var(--son-stone); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.two-studio-card p { margin: 16px 0 0; color: var(--son-cocoa); font-size: 15px; line-height: 1.65; }

/* ---------- Policies / Prep list pages ---------- */
.policy-row { display: grid; grid-template-columns: .5fr 1fr; gap: 48px; padding: 32px 0; border-top: 1px solid var(--son-divider); }
.policy-row:first-child { border-top: none; }
.policy-row h2 { margin: 0; color: var(--son-espresso); font-size: 23px; font-weight: 600; letter-spacing: -.01em; }
.policy-row p { margin: 0 0 14px; color: var(--son-cocoa); font-size: 15.5px; line-height: 1.7; }
.policy-row ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 13px; }
.policy-row ul li { display: flex; gap: 13px; align-items: flex-start; color: var(--son-cocoa); font-size: 15px; line-height: 1.65; }
.policy-row ul li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--son-bronze); margin-top: 9px; }
.policy-row .note { margin-top: 16px; color: var(--son-stone); font-size: 13.5px; line-height: 1.6; font-style: italic; }
@media (max-width: 900px) { .policy-row { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; } }

.prep-card { background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); padding: 32px 30px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.prep-card:hover { transform: translateY(-2px); border-color: var(--son-bronze); box-shadow: 0 14px 30px rgba(23,20,18,.07); }
.prep-card h3 { margin: 0 0 18px; color: var(--son-espresso); font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.prep-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.prep-card ul li { display: flex; gap: 12px; color: var(--son-cocoa); font-size: 14.5px; line-height: 1.55; }
.prep-card ul li::before { content: "★"; color: var(--son-bronze); flex: none; }

/* ---------- Careers ---------- */
.value-card, .role-card { background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.value-card:hover, .role-card:hover { transform: translateY(-2px); border-color: var(--son-bronze); box-shadow: 0 14px 30px rgba(23,20,18,.07); }
.value-card { padding: 30px 28px; display: flex; flex-direction: column; gap: 10px; }
.value-card .num { color: var(--son-bronze); font-size: 13px; font-weight: 600; letter-spacing: .1em; }
.value-card h3 { margin: 0; color: var(--son-espresso); font-size: 18px; font-weight: 600; line-height: var(--lh-title); }
.value-card p { margin: 0; color: var(--son-stone); font-size: 14.5px; line-height: 1.65; }
.role-card { padding: 26px 30px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.role-card h3 { margin: 0; color: var(--son-espresso); font-size: 20px; font-weight: 600; line-height: var(--lh-title); display: inline; }
.role-card .studio-tag { color: var(--son-bronze); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-left: 14px; }
.role-card p { margin: 10px 0 0; max-width: 560px; color: var(--son-stone); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 900px) { .role-card { flex-direction: column; align-items: flex-start; } }

/* ---------- Academy ---------- */
.instructor-media { position: relative; max-width: 420px; margin: 0 auto; }
.instructor-media__wrap { position: relative; padding-bottom: 22%; }
.instructor-media img.primary { width: 76%; display: block; border-radius: var(--radius-md); box-shadow: 0 26px 56px rgba(17,16,15,.32); position: relative; z-index: 2; }
.instructor-media img.secondary { width: 56%; display: block; border-radius: var(--radius-md); box-shadow: 0 20px 44px rgba(17,16,15,.28); position: absolute; right: 0; bottom: 0; z-index: 1; border: 6px solid var(--son-ivory); }
.credential-chip { font-size: 11.5px; font-weight: 600; letter-spacing: .06em; color: var(--son-bronze); background: rgba(195,154,99,.1); border: 1px solid var(--son-gold-26); border-radius: var(--radius-sm); padding: 8px 14px; display: inline-block; }
.course-card { background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); padding: 34px 32px; display: flex; flex-direction: column; gap: 16px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.course-card:hover { transform: translateY(-2px); border-color: var(--son-bronze); box-shadow: 0 14px 30px rgba(23,20,18,.07); }
.course-card h3 { margin: 0 0 6px; color: var(--son-espresso); font-size: 21px; font-weight: 600; letter-spacing: -.01em; }
.course-card .meta { color: var(--son-bronze); font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.course-card p.desc { margin: 0; color: var(--son-cocoa); font-size: 15px; line-height: 1.65; }
.course-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.course-card ul li { display: flex; align-items: flex-start; gap: 10px; color: var(--son-cocoa); font-size: 14px; line-height: 1.5; }
.course-card ul li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--son-bronze); margin-top: 7px; }
.course-card__foot { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--son-divider); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.course-card__price { color: var(--son-espresso); font-size: 20px; font-weight: 600; }
.why-card { background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); padding: 28px 24px; }
.why-card .num-badge { width: 34px; height: 34px; border-radius: 50%; background: rgba(195,154,99,.12); border: 1px solid var(--son-gold-26); display: flex; align-items: center; justify-content: center; color: var(--son-bronze); font-size: 13px; font-weight: 700; margin-bottom: 16px; }
.why-card h3 { margin: 0 0 8px; color: var(--son-espresso); font-size: 16.5px; font-weight: 600; line-height: 1.3; }
.why-card p { margin: 0; color: var(--son-stone); font-size: 14px; line-height: 1.6; }
.why-card { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.why-card:hover { transform: translateY(-2px); border-color: var(--son-bronze); box-shadow: 0 14px 30px rgba(23,20,18,.07); }
.grid-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-why { grid-template-columns: 1fr 1fr; } }
.academy-stats { grid-template-columns: repeat(4, 1fr) !important; border-left: 1px solid var(--son-divider); border-right: 1px solid var(--son-divider); border-top: none; border-bottom: none; border-radius: 0; }
.enroll-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: start; }
.enroll-intro .enroll-points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.enroll-intro .enroll-points li { display: flex; align-items: flex-start; gap: 12px; color: var(--son-cocoa); font-size: 15px; line-height: 1.55; }
.enroll-intro .enroll-points li::before { content: "\2605"; color: var(--son-bronze); flex: none; font-size: 13px; line-height: 1.5; }
.enroll-contact { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--son-divider); }
.enroll-contact__label { margin: 0 0 12px; color: var(--son-charcoal); font-size: 11px; font-weight: var(--fw-semibold); letter-spacing: .14em; text-transform: uppercase; }
.enroll-contact p { margin: 0 0 6px; color: var(--son-cocoa); font-size: 14.5px; line-height: 1.5; }
.enroll-contact a { color: var(--son-charcoal); text-decoration: none; border-bottom: 1px solid var(--son-divider); }
.enroll-contact a:hover { color: var(--son-bronze); border-bottom-color: var(--son-bronze); }
.field-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.enroll-error { margin: 0; color: #8a2f22; font-size: 13px; line-height: 1.5; background: rgba(138,47,34,.06); border: 1px solid rgba(138,47,34,.24); border-radius: var(--radius-sm); padding: 11px 14px; }
@media (max-width: 900px) { .enroll-layout { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- ImagePro technology (Deep Skin Imaging Analysis) ---------- */
.imagepro-devices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: end; }
.imagepro-shot { margin: 0; }
.imagepro-shot img { width: 100%; height: auto; max-height: 380px; object-fit: contain; display: block; }
.imagepro-screens { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.imagepro-screen { margin: 0; }
.imagepro-screen img { width: 100%; height: auto; display: block; border-radius: var(--radius-md); border: 1px solid var(--son-gold-26); }
.imagepro-screen figcaption { margin-top: 12px; text-align: center; color: var(--son-on-dark-60); font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.imagepro-note { margin: 30px 0 0; text-align: center; color: var(--son-on-dark-40); font-size: 12.5px; }
@media (max-width: 900px) { .imagepro-devices { grid-template-columns: 1fr 1fr; } .imagepro-screens { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .imagepro-devices { grid-template-columns: 1fr; } }

/* ---------- Facial (skin-care) treatment page: elevated hero + two-column body ---------- */
.hero-rule { display: block; width: 54px; height: 2px; background: var(--son-bronze); margin: 24px auto 4px; }
.facial-body { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: start; max-width: var(--container-narrow); margin: 0 auto; }
.facial-body__aside { background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); padding: 30px; position: sticky; top: 100px; }
@media (max-width: 900px) { .facial-body { grid-template-columns: 1fr; gap: 36px; } .facial-body__aside { position: static; } }

/* ---------- Printable aftercare guides (Prep & Aftercare) ---------- */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1040px; margin: 0 auto; }
.guide-card { display: block; text-decoration: none; background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); overflow: hidden; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.guide-card:hover { border-color: var(--son-bronze); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(23,20,18,.08); }
.guide-card img { width: 100%; height: auto; display: block; border-bottom: 1px solid var(--son-divider); }
.guide-card__label { display: block; padding: 16px 18px; }
.guide-card__label strong { display: block; color: var(--son-espresso); font-size: 14px; font-weight: 600; }
.guide-card__label span { display: block; margin-top: 5px; color: var(--son-bronze); font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 900px) { .guide-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Lightbox (aftercare guides & any [data-lightbox] link) ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 40px; background: rgba(13,12,11,.92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s ease; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 900px); max-height: 90vh; width: auto; height: auto; display: block; border-radius: var(--radius-md); box-shadow: 0 30px 80px rgba(0,0,0,.5); background: var(--son-card-ivory); transform: scale(.98); transition: transform .28s cubic-bezier(.22,1,.36,1); }
.lightbox.is-open img { transform: scale(1); }
.lightbox__close { position: absolute; top: 22px; right: 26px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--son-on-dark-40); border-radius: var(--radius-sm); color: var(--son-on-dark); font-size: 20px; line-height: 1; cursor: pointer; transition: border-color .2s ease, color .2s ease; }
.lightbox__close:hover { border-color: var(--son-bronze); color: var(--son-bronze); }
@media (max-width: 560px) { .guide-grid { grid-template-columns: 1fr; } }

/* ---------- Service category pages ---------- */
.service-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.service-hero__media { align-self: start; }
.service-hero__copy .back-link { position: absolute; top: -24px; left: 0; margin: 0; z-index: 2; }
.service-hero__copy .btn-row { margin-top: 30px; }
.service-hero__media img { width: 100%; max-width: 88%; margin-left: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius-md); box-shadow: 0 24px 60px rgba(17,16,15,.18); display: block; }
.hero > .back-link { position: absolute !important; top: 32px !important; left: calc(2 * var(--gutter) + max(0px, (100% - 2 * var(--gutter) - var(--container)) / 2)) !important; z-index: 3; margin: 0 !important; }
.hero[style="padding:56px var(--gutter)"] { min-height: 460px; }
.hero[style="padding:56px var(--gutter)"]:has(> .hero__content) { display: flex; flex-direction: column; justify-content: center; }
.service-hero__copy { position: relative; }
.service-hero__copy > *:not(.hero__mono):not(.back-link) { position: relative; z-index: 1; }
@media (max-width: 900px) { .service-hero { grid-template-columns: 1fr; gap: 32px; } .service-hero__media img { max-width: 100%; margin-left: 0; } }
.fact-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--son-divider); border-radius: var(--radius-md); overflow: hidden; margin-top: 30px; background: var(--son-white); }
.fact-strip__item { padding: 18px 16px; border-left: 1px solid var(--son-divider); text-align: center; transition: background .2s ease; }
.fact-strip__item:hover { background: rgba(195,154,99,.12); }
.fact-strip__item:first-child { border-left: none; }
.fact-strip__item .k { display: block; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--son-stone); margin-bottom: 6px; }
.fact-strip__item .v { display: block; font-size: 14.5px; font-weight: 600; color: var(--son-espresso); }
@media (max-width: 700px) { .fact-strip { grid-template-columns: 1fr 1fr; } .fact-strip__item:nth-child(2n+1) { border-left: none; } .fact-strip__item:nth-child(n+3) { border-top: 1px solid var(--son-divider); } }
/* Fill pricing / price-list tables: row hover highlight (matches FAQ) */
div[style*="gap:1px"][style*="background:var(--son-divider)"] > div { transition: background .2s ease, box-shadow .2s ease, color .2s ease; }
div[style*="gap:1px"][style*="background:var(--son-divider)"] > div:hover { background: #F3ECDE !important; box-shadow: inset 4px 0 0 var(--son-bronze); color: var(--son-bronze) !important; }
div[style*="gap:1px"][style*="background:var(--son-divider)"] > div:hover strong { color: var(--son-bronze) !important; }

/* ---------- Services overview: More Services (add-on) cards ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.addon-card { display: flex; flex-direction: column; height: 100%; background: var(--son-charcoal); border: 1px solid var(--son-gold-26); border-radius: var(--radius-md); padding: 28px 26px; text-decoration: none; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.addon-card:hover { transform: translateY(-2px); border-color: var(--son-bronze); box-shadow: 0 16px 34px rgba(17,16,15,.24); }
.addon-card .addon-card__eyebrow { font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--son-bronze); font-weight: 600; margin-bottom: 12px; }
.addon-card h3 { margin: 0 0 10px; color: var(--son-card-ivory); font-size: 18px; font-weight: 600; line-height: var(--lh-title); }
.addon-card p { margin: 0 0 18px; color: var(--son-on-dark-72); font-size: 14px; line-height: var(--lh-body); }
.addon-card__link { margin-top: auto; font-size: var(--fs-caption); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--son-bronze); }
.addon-extra { margin-top: 12px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--son-bronze); text-decoration: none; }
.addon-extra:hover { text-decoration: underline; }
@media (max-width: 960px) { .addon-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .addon-grid { grid-template-columns: 1fr; } }

/* ---------- Services overview: decision (goal) rows ---------- */
.goal-list { border-top: 1px solid var(--son-divider); }
.goal-row { display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px; align-items: start; padding: 28px 22px; border-bottom: 1px solid var(--son-divider); text-decoration: none; transition: background .2s ease, box-shadow .2s ease; }
.goal-row:hover { background: rgba(195,154,99,.06); box-shadow: inset 4px 0 0 var(--son-bronze); }
.goal-row__goal { color: var(--son-espresso); font-size: 21px; font-weight: 600; letter-spacing: -.01em; line-height: 1.3; transition: color .2s ease; }
.goal-row:hover .goal-row__goal { color: var(--son-bronze); }
.goal-row__studio { margin-top: 9px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--son-bronze); font-weight: 600; }
.goal-row__rec { margin: 0 0 12px; color: var(--son-cocoa); font-size: 15.5px; line-height: 1.65; }
.goal-row__cta { font-size: var(--fs-caption); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--son-bronze); }
@media (max-width: 760px) { .goal-row { grid-template-columns: 1fr; gap: 10px; } .goal-row__goal { font-size: 18px; } }

/* ---------- Services overview: the Sonthuy standard (dark, numbered) ---------- */
.standard-grid { max-width: 880px; margin: 56px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.standard-item { padding: 28px 18px; border-top: 1px solid var(--son-gold-14); display: flex; gap: 18px; align-items: baseline; transition: background .25s ease; }
.standard-item:hover { background: rgba(226,208,181,.12); }
.standard-item .n { flex: none; font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--son-bronze); }
.standard-item h3 { margin: 0 0 8px; color: var(--son-card-ivory); font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.standard-item p { margin: 0; color: var(--son-on-dark-66); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 760px) { .standard-grid { grid-template-columns: 1fr; margin-top: 36px; } .standard-item:last-child { border-bottom: 1px solid var(--son-gold-14); } }

.step-list { display: grid; gap: 20px; }
.step-card { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 24px 16px; margin: 0 -16px; border-top: 1px solid var(--son-divider); border-radius: var(--radius-sm); transition: background-color .18s ease; }
.step-card:first-child { border-top: none; }
.step-card:hover { background-color: var(--son-gold-14); }
.step-card .n { color: var(--son-bronze); font-size: 20px; font-weight: 700; }
.step-card h3 { margin: 0 0 6px; color: var(--son-espresso); font-size: 17px; font-weight: 600; }
.step-card p { margin: 0; color: var(--son-cocoa); font-size: 14.5px; line-height: 1.6; }

.treatment-card { background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); padding: 26px; display: flex; flex-direction: column; gap: 10px; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.treatment-card:hover { transform: translateY(-2px); border-color: var(--son-bronze); box-shadow: 0 14px 30px rgba(23,20,18,.07); }
.treatment-card h3 { margin: 0; color: var(--son-espresso); font-size: 18px; font-weight: 600; }
.treatment-card .best { color: var(--son-bronze); font-size: 11.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.treatment-card p { margin: 0; color: var(--son-stone); font-size: 14px; line-height: 1.55; }
.treatment-card .meta-row { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--son-divider); display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--son-cocoa); }
.treatment-card .meta-row strong { color: var(--son-espresso); font-size: 17px; }

.who-band { background: var(--son-cream); border-radius: var(--radius-md); padding: 40px 44px; }
.who-band h2 { margin: 0 0 16px; color: var(--son-espresso); font-size: 26px; font-weight: 600; }
.who-band p { margin: 0 0 14px; color: var(--son-cocoa); font-size: 15.5px; line-height: 1.7; }

.compare-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-col { background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); padding: 26px; }
.compare-col.is-uv { border-color: var(--son-bronze); background: rgba(195,154,99,.05); }
.compare-col { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.compare-col:hover { transform: translateY(-2px); border-color: var(--son-bronze); box-shadow: 0 14px 30px rgba(23,20,18,.07); }
.compare-col h3 { margin: 0 0 14px; color: var(--son-espresso); font-size: 16px; font-weight: 600; }
.compare-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.compare-col li { display: flex; gap: 10px; color: var(--son-cocoa); font-size: 14px; line-height: 1.5; }
.compare-col li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--son-bronze); margin-top: 7px; }
@media (max-width: 700px) { .compare-cols { grid-template-columns: 1fr; } }

.testimonial-card { background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); padding: 28px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.testimonial-card:hover { transform: translateY(-2px); border-color: var(--son-bronze); box-shadow: 0 14px 30px rgba(23,20,18,.07); }
.testimonial-card p.quote { margin: 0 0 16px; color: var(--son-cocoa); font-size: 15px; line-height: 1.65; font-style: italic; }
.testimonial-card .who { color: var(--son-espresso); font-size: 13.5px; font-weight: 600; }
.testimonial-card .src { color: var(--son-stone); font-size: 12.5px; }
/* Review card — shared starred component (class prefix hs- retained from its original Head Spa origin; now used on Head Spa, Services overview, and any page showing individual client reviews) */
.hs-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.hs-review { border-radius: var(--radius-md); padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; height: 100%; transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.hs-review:hover { transform: translateY(-2px); }
.hs-review--dark { background: var(--son-ink); border: 1px solid var(--son-gold-26); }
.hs-review--dark:hover { border-color: var(--son-bronze); box-shadow: 0 18px 40px rgba(17,16,15,.34); }
.hs-review--light { background: var(--son-white); border: 1px solid var(--son-divider); }
.hs-review--light:hover { border-color: var(--son-bronze); box-shadow: 0 16px 34px rgba(17,16,15,.12); }
.hs-review__head { display: flex; align-items: center; gap: 12px; }
.hs-review__avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; flex: none; }
.hs-review__name { font-size: 15px; font-weight: 600; }
.hs-review__meta, .hs-review__when { font-size: 12.5px; }
.hs-review__rating { display: flex; align-items: center; gap: 10px; }
.hs-review__stars { color: var(--son-bronze); letter-spacing: 2px; font-size: 14px; }
.hs-review__text { font-size: 14.5px; line-height: 1.66; margin: 0; }
.hs-review__src { margin-top: auto; padding-top: 4px; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--son-bronze); }
.hs-review--dark .hs-review__name { color: var(--son-card-ivory); }
.hs-review--dark .hs-review__meta, .hs-review--dark .hs-review__when { color: var(--son-on-dark-60); }
.hs-review--dark .hs-review__text { color: var(--son-on-dark-72); }
.hs-review--dark .hs-review__avatar { background: var(--son-charcoal); color: var(--son-card-ivory); }
.hs-review--light .hs-review__name { color: var(--son-espresso); }
.hs-review--light .hs-review__meta, .hs-review--light .hs-review__when { color: var(--son-stone); }
.hs-review--light .hs-review__text { color: var(--son-cocoa); }
.hs-review--light .hs-review__avatar { background: var(--son-taupe); color: var(--son-espresso); }
@media (max-width: 820px) { .hs-reviews { grid-template-columns: 1fr; } }
.review-links { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 8px; }
.review-links a { font-size: 13px; font-weight: 600; color: var(--son-bronze); text-decoration: none; }
.review-links a:hover { text-decoration: underline; }
/* Review links: two centered stacked columns (Brows & Lash | Hair & Skin) */
.review-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 40px; max-width: 620px; margin: 28px auto 0; }
.review-col { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.review-col a { font-size: 13px; font-weight: 600; color: var(--son-bronze); text-decoration: none; }
.review-col a:hover { text-decoration: underline; }
@media (max-width: 560px) { .review-cols { grid-template-columns: 1fr; gap: 20px; } }

/* Services overview: category cards with Best for / Available at meta (design-section version) */
.svc-cat-grid { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.svc-cat-card { display: flex; flex-direction: column; text-decoration: none; background: linear-gradient(165deg, #11100F 0%, #171513 100%); border: 1px solid var(--son-gold-26); border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 22px 54px rgba(17,16,15,.26); transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease; }
.svc-cat-card:hover { border-color: var(--son-bronze); transform: translateY(-2px); box-shadow: 0 30px 64px rgba(17,16,15,.42); }
.svc-cat-card__imgwrap { position: relative; height: 248px; overflow: hidden; background: var(--son-taupe); }
.svc-cat-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.svc-cat-card:hover .svc-cat-card__img { transform: scale(1.02); }
.svc-cat-card__imgwrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,16,15,.62) 0%, rgba(17,16,15,.12) 48%, rgba(17,16,15,0) 100%); }
.svc-cat-card__body { padding: 40px 40px 36px; display: flex; flex-direction: column; flex: 1; }
.svc-cat-card__eyebrow { font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--son-bronze); font-weight: 600; margin-bottom: 13px; }
.svc-cat-card__title { margin: 0 0 10px; color: var(--son-card-ivory); font-size: 26px; font-weight: 600; line-height: var(--lh-title); }
.svc-cat-card__desc { margin: 0 0 18px; color: var(--son-on-dark-72); font-size: 14.5px; line-height: var(--lh-body); }
.svc-cat-card__meta { padding-top: 15px; border-top: 1px solid var(--son-gold-14); margin-bottom: 20px; display: grid; gap: 12px; }
.svc-cat-card__meta .k { display: block; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--son-bronze); font-weight: 600; margin-bottom: 4px; }
.svc-cat-card__meta .v { font-size: 13px; line-height: 1.5; color: var(--son-on-dark-66); }
.svc-cat-card__link { margin-top: auto; font-size: var(--fs-caption); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--son-bronze); transition: color .2s ease, transform .25s ease; }
.svc-cat-card:hover .svc-cat-card__link { transform: translateX(4px); }
@media (max-width: 1000px) { .svc-cat-grid { grid-template-columns: 1fr; gap: 24px; } .svc-cat-card__body { padding: 32px 28px 30px; } .svc-cat-card__imgwrap { height: 212px; } }

.healing-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.healing-stats .item { text-align: center; background: var(--son-white); border: 1px solid var(--son-divider); border-radius: var(--radius-md); padding: 20px 14px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.healing-stats .item:hover { transform: translateY(-2px); border-color: var(--son-bronze); box-shadow: 0 14px 30px rgba(23,20,18,.07); }
.healing-stats .item .k { display: block; font-size: 11px; color: var(--son-stone); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.healing-stats .item .v { display: block; font-size: 16px; font-weight: 600; color: var(--son-espresso); }
@media (max-width: 700px) { .healing-stats { grid-template-columns: 1fr; } }

.correction-note { border: 1px dotted var(--son-bronze); border-radius: var(--radius-md); padding: 24px 26px; background: rgba(195,154,99,.06); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.correction-note:hover { transform: translateY(-2px); background: var(--son-gold-14); box-shadow: 0 14px 30px rgba(23,20,18,.07); }
.correction-note h3 { margin: 0 0 10px; color: var(--son-espresso); font-size: 17px; font-weight: 600; }
.correction-note p { margin: 0 0 14px; color: var(--son-cocoa); font-size: 14.5px; line-height: 1.6; }

/* ---------- Misc ---------- */
.gallery-grid-full { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .gallery-grid-full { grid-template-columns: repeat(2, 1fr); } }
.mono-bg { position: absolute; pointer-events: none; user-select: none; opacity: .1; }
.divider-dot { color: var(--son-bronze); margin: 0 12px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--son-bronze); color: var(--son-ink); padding: 12px 20px; z-index: 100; font-weight: 600; }
.skip-link:focus { left: 16px; top: 16px; }

/* Read-more toggle button: hidden on desktop; revealed only on phones (see mobile block). */
.mreadmore-btn { display: none; align-items: center; gap: 6px; margin-top: 14px; background: none; border: 0; padding: 0; cursor: pointer; font-family: var(--font-sans); font-size: var(--fs-caption); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--son-bronze); }
.mreadmore-btn:hover { color: var(--son-charcoal); }

/* ============================================================
   MOBILE-ONLY REFINEMENTS — phones (max-width:600px).
   Nothing here affects desktop or tablet (>600px).
   ============================================================ */
@media (max-width: 600px) {
  /* --- Heroes: shorter imagery + tighter type/padding so they don't fill the screen --- */
  .home-hero__media { height: 216px; }
  .home-hero__inner { padding: 26px var(--gutter) 32px; }
  .home-hero__copy h1 { font-size: 26px; }
  .home-hero__copy > p { font-size: 15.5px; margin-top: 16px; }
  .home-hero__tags { margin-top: 26px; padding-top: 20px; }
  .home-hero__foot { margin-top: 20px; }

  .page-hero__media { height: 200px; }
  .page-hero__inner { padding: 26px var(--gutter) 30px; }
  .page-hero__copy h1 { font-size: 27px; }

  .story-hero__media { height: 216px; }
  .story-hero__inner { padding: 28px var(--gutter) 32px; }
  .story-hero__copy h1 { font-size: 28px; }

  .split-hero__media { height: 208px; }
  .split-hero__copy { padding: 28px var(--gutter) 32px; }
  .split-hero__copy h1 { font-size: 26px; }

  /* Service-category / detail hero (dark, 56px padding): drop the 460px floor */
  .hero[style="padding:56px var(--gutter)"] { min-height: 0; padding-top: 34px !important; padding-bottom: 34px !important; }
  .service-hero { gap: 22px; }
  /* Cap the large inline hero headings on phones (desktop keeps its size) */
  .service-hero__copy h1 { font-size: 28px !important; }
  .hero__content h1 { font-size: 27px !important; }

  /* --- Trust bar (home stat strip): cut heavy side padding + vertically center each cell so no big empty gap --- */
  .stat-strip__item { padding: 26px 16px !important; display: flex; flex-direction: column; justify-content: center; align-items: center; }
  .stat-strip__label { max-width: none !important; }

  /* --- Footer: keep Explore + Services side-by-side (2 cols) to shorten the page --- */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }

  /* --- Mobile "Read more" expander: clamp long copy; full text stays in the DOM (SEO/GEO/AEO safe) --- */
  [data-readmore] { overflow: hidden; max-height: 11em; transition: max-height .4s ease; }
  [data-readmore].is-open { max-height: 240em; }
  .mreadmore-btn { display: inline-flex; }
}

/* ---------- Scroll / load reveal (JS-driven — see site.js) ----------
   The .reveal class is added by JS only, so with no JS nothing is hidden and crawlers/readers
   get the full content. Quiet-luxury motion: opacity + small rise, ~800ms, cubic-bezier(.22,1,.36,1).
   prefers-reduced-motion keeps everything visible with no transition (JS also opts out entirely). */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-revealed {
  opacity: 1;
  transform: none;
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.is-revealed { opacity: 1; transform: none; transition: none; }
}
