/*
 * SKINARI premium public experience
 *
 * This final cascade layer intentionally owns only customer-facing visual
 * presentation. Product behavior, security controls, booking routing and
 * canonical service data remain in their existing modules.
 */

/* --------------------------------------------------------------------------
   1. Brand tokens and foundation
   -------------------------------------------------------------------------- */

:root {
  --color-primary: #49352d;
  --color-primary-light: #765b4d;
  --color-primary-dark: #241815;
  --color-accent: #9d774d;
  --color-accent-light: #d4b98e;
  --color-bg: #f6efe7;
  --color-bg-alt: #eadfd3;
  --color-card: #fffaf4;
  --color-text: #211816;
  --color-text-light: #483a34;
  --color-text-muted: #715f56;
  --color-border: rgba(73, 53, 45, 0.18);
  --color-white: #fffaf4;
  --color-overlay: rgba(27, 18, 15, 0.62);
  --premium-espresso: #1c1311;
  --premium-ink: #211816;
  --premium-cream: #f6efe7;
  --premium-ivory: #fffaf4;
  --premium-stone: #ded0c2;
  --premium-taupe: #9a867a;
  --premium-bronze: #9d774d;
  --premium-bronze-ink: #76513a;
  --premium-champagne: #d4b98e;
  --premium-on-dark: #fffaf4;
  --premium-on-dark-muted: rgba(255, 250, 244, 0.74);
  --premium-on-dark-subtle: rgba(255, 250, 244, 0.58);
  --premium-line: rgba(73, 53, 45, 0.18);
  --premium-line-light: rgba(255, 250, 244, 0.2);
  --font-heading: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', serif;
  --font-body: 'Montserrat', 'Avenir Next', 'Segoe UI', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: clamp(2rem, 3vw, 3rem);
  --space-xl: clamp(3.5rem, 6vw, 6rem);
  --space-2xl: clamp(5.5rem, 10vw, 9rem);
  --space-xxl: clamp(7rem, 12vw, 11rem);
  --radius-sm: 2px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --shadow-sm: 0 1px 0 rgba(36, 24, 21, 0.04);
  --shadow-md: 0 18px 55px rgba(46, 31, 26, 0.09);
  --shadow-lg: 0 30px 90px rgba(32, 20, 17, 0.14);
  --shadow-hover: 0 24px 70px rgba(32, 20, 17, 0.15);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-micro: 180ms;
  --duration-normal: 360ms;
  --duration-cinematic: 780ms;
  --content-wide: 1240px;
  --content-reading: 760px;
  color-scheme: light;
}

html {
  scroll-padding-top: 104px;
  background: var(--premium-cream);
}

body {
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 10% 8%, rgba(212, 185, 142, 0.11), transparent 25rem),
    var(--premium-cream);
  color: var(--premium-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  content: '';
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.52'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

::selection {
  color: var(--premium-ivory);
  background: var(--color-primary-light);
}

img,
video {
  max-width: 100%;
}

a {
  text-underline-offset: 0.24em;
}

h1,
h2,
h3,
h4 {
  color: var(--premium-ink);
  font-family: var(--font-heading);
  font-weight: 500;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.15rem, 7vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

h2,
.section-title {
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
}

p,
li {
  color: var(--color-text-light);
}

em {
  font-family: var(--font-heading);
  font-weight: 400;
}

.container {
  width: min(var(--content-wide), calc(100% - clamp(2rem, 8vw, 8rem)));
  max-width: var(--content-wide);
}

.section-padding {
  padding-block: var(--space-2xl);
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  color: #76513a;
  font-family: var(--font-body);
  font-size: 0.69rem;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-subtitle::before {
  width: 2.4rem;
  height: 1px;
  content: '';
  background: currentColor;
  opacity: 0.72;
}

.text-center .section-subtitle::before {
  display: none;
}

.section-description {
  max-width: 43rem;
  margin: 1.6rem auto 0;
  color: var(--color-text-muted);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.85;
}

.divider {
  width: 4rem;
  height: 1px;
  margin-block: 1.65rem;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--premium-bronze), transparent);
}

.text-center .divider {
  margin-inline: auto;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--premium-bronze);
  outline-offset: 4px;
  box-shadow: 0 0 0 5px rgba(212, 185, 142, 0.2);
}

/* --------------------------------------------------------------------------
   2. Buttons, links and motion
   -------------------------------------------------------------------------- */

.btn {
  min-height: 48px;
  padding: 0.92rem 1.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform var(--duration-micro) var(--ease-premium),
    color var(--duration-micro) ease,
    background-color var(--duration-micro) ease,
    border-color var(--duration-micro) ease,
    box-shadow var(--duration-normal) ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  border: 1px solid var(--premium-espresso);
  background: var(--premium-espresso);
  color: var(--premium-on-dark);
  box-shadow: none;
}

.btn-primary:hover {
  border-color: var(--color-primary-light);
  background: var(--color-primary-light);
  color: var(--premium-on-dark);
  box-shadow: 0 12px 30px rgba(36, 24, 21, 0.16);
}

.btn-outline {
  border: 1px solid rgba(73, 53, 45, 0.48);
  background: transparent;
  color: var(--premium-ink);
}

.btn-outline:hover {
  border-color: var(--premium-ink);
  background: var(--premium-ink);
  color: var(--premium-ivory);
}

.btn-light {
  border: 1px solid var(--premium-on-dark);
  background: var(--premium-on-dark);
  color: var(--premium-espresso);
}

.btn-light:hover {
  border-color: var(--premium-champagne);
  background: var(--premium-champagne);
  color: var(--premium-espresso);
}

.btn-outline-light {
  border: 1px solid rgba(255, 250, 244, 0.56);
  background: rgba(255, 250, 244, 0.035);
  color: var(--premium-on-dark);
}

.btn-outline-light:hover {
  border-color: var(--premium-on-dark);
  background: rgba(255, 250, 244, 0.12);
  color: var(--premium-on-dark);
}

.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 1;
  transform: none;
}

.reveal-ready .section-padding .fade-in:not(.visible) {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-ready .section-padding .fade-in-left:not(.visible) {
  opacity: 0;
  transform: translateX(-28px);
}

.reveal-ready .section-padding .fade-in-right:not(.visible) {
  opacity: 0;
  transform: translateX(28px);
}

.reveal-ready .section-padding :where(.fade-in, .fade-in-left, .fade-in-right) {
  transition:
    opacity var(--duration-cinematic) var(--ease-premium),
    transform var(--duration-cinematic) var(--ease-premium);
}

/* --------------------------------------------------------------------------
   3. Header and full-screen mobile navigation
   -------------------------------------------------------------------------- */

.header {
  height: 92px;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition:
    height var(--duration-normal) var(--ease-premium),
    background-color var(--duration-normal) ease,
    border-color var(--duration-normal) ease,
    box-shadow var(--duration-normal) ease;
}

.header.scrolled {
  height: 76px;
  border-bottom-color: rgba(73, 53, 45, 0.13);
  background: rgba(247, 241, 234, 0.91);
  box-shadow: 0 8px 32px rgba(42, 28, 23, 0.055);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

body[data-editorial-family] .header:not(.header-transparent) {
  border-bottom-color: rgba(73, 53, 45, 0.13);
  background: rgba(247, 241, 234, 0.94);
  box-shadow: 0 8px 32px rgba(42, 28, 23, 0.055);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

body[data-editorial-family] .header:not(.header-transparent) .nav-links a { color: var(--premium-ink); }
body[data-editorial-family] .header:not(.header-transparent) .logo-image { filter: brightness(0) saturate(100%); }

.header .container {
  width: min(var(--content-wide), calc(100% - clamp(2rem, 7vw, 7rem)));
}

.header .logo,
.footer-brand .logo {
  position: relative;
  z-index: 2;
}

.header .logo-image {
  width: 136px;
  height: auto;
  object-fit: contain;
}

.header.scrolled .logo-image {
  width: 124px;
  filter: brightness(0) saturate(100%);
}

.header.header-transparent:not(.scrolled) .logo-image {
  filter: brightness(0) invert(1);
}

.nav-links {
  gap: clamp(1.45rem, 2.4vw, 2.8rem);
}

.nav-links a {
  padding-block: 0.75rem;
  color: var(--premium-on-dark);
  font-size: 0.68rem;
  font-weight: 550;
  letter-spacing: 0.16em;
}

.header.scrolled .nav-links a {
  color: var(--premium-ink);
}

.nav-links a::after {
  bottom: 0.25rem;
  height: 1px;
  background: currentColor;
  transform-origin: left;
}

.nav-links a:hover,
.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
  color: var(--premium-bronze);
}

.hamburger {
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 244, 0.3);
  border-radius: 50%;
}

.header.scrolled .hamburger {
  border-color: var(--premium-line);
}

.hamburger span {
  position: absolute;
  width: 19px;
  height: 1px;
  margin: 0;
}

.hamburger span:nth-child(1) { transform: translateY(-6px); }
.hamburger span:nth-child(3) { transform: translateY(6px); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); }

.header nav {
  margin-left: auto;
}

.theme-switcher {
  position: relative;
  z-index: 1004;
  margin-left: clamp(0.65rem, 1.4vw, 1.25rem);
}

.theme-switcher-toggle {
  display: inline-flex;
  min-width: 92px;
  min-height: 44px;
  padding: 0.35rem 0.55rem;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  border: 1px solid rgba(255, 250, 244, 0.34);
  border-radius: 999px;
  background: rgba(28, 19, 17, 0.12);
  color: var(--premium-on-dark);
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    background-color var(--duration-micro) ease,
    border-color var(--duration-micro) ease,
    color var(--duration-micro) ease,
    transform var(--duration-micro) var(--ease-premium),
    box-shadow var(--duration-micro) ease;
}

.theme-switcher-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 250, 244, 0.62);
  background: rgba(28, 19, 17, 0.28);
}

.header.scrolled .theme-switcher-toggle,
.theme-switcher--floating .theme-switcher-toggle {
  border-color: var(--premium-line);
  background: var(--premium-ivory);
  color: var(--premium-ink);
  box-shadow: 0 10px 32px rgba(28, 19, 17, 0.1);
}

.theme-switcher-symbol {
  display: inline-grid;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  place-items: center;
  opacity: 0.62;
  transition: opacity var(--duration-micro) ease;
}

.theme-switcher-symbol svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.theme-switcher-track {
  position: relative;
  width: 34px;
  height: 18px;
  flex: 0 0 34px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.82;
}

.theme-switcher-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  transition: transform var(--duration-normal) var(--ease-premium);
}

.theme-switcher[data-resolved-theme='dark'] .theme-switcher-thumb {
  transform: translateX(16px);
}

.theme-switcher[data-resolved-theme='light'] .theme-switcher-symbol--sun,
.theme-switcher[data-resolved-theme='dark'] .theme-switcher-symbol--moon {
  opacity: 1;
}

.theme-switcher-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.theme-switcher--floating {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 4000;
  margin: 0;
}

@media (max-width: 768px) {
  .theme-switcher {
    margin-right: 0.45rem;
    margin-left: auto;
  }

  .theme-switcher-toggle {
    width: 86px;
    min-width: 86px;
    height: 44px;
    min-height: 44px;
    padding: 0;
  }

  .theme-switcher--floating {
    margin: 0;
  }
}

/* --------------------------------------------------------------------------
   4. Cinematic home hero
   -------------------------------------------------------------------------- */

.hero {
  min-height: 100svh;
  height: auto;
  background: var(--premium-espresso);
}

.hero-bg {
  inset: 0;
  overflow: hidden;
}

.hero-bg::before {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(20, 12, 10, 0.79) 0%, rgba(20, 12, 10, 0.5) 44%, rgba(20, 12, 10, 0.1) 76%),
    linear-gradient(180deg, rgba(15, 9, 8, 0.28), transparent 35%, rgba(15, 9, 8, 0.46));
  backdrop-filter: none;
}

.hero-poster,
.hero-video {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  filter: saturate(0.72) sepia(0.12) contrast(1.08);
}

.hero-video {
  opacity: 0;
  transition: opacity 700ms ease;
  animation: premiumHeroDrift 18s ease-in-out infinite alternate;
}

.hero-video.is-playing {
  opacity: 1;
}

.hero-overlay {
  z-index: 3;
  background:
    radial-gradient(circle at 72% 26%, rgba(212, 185, 142, 0.18), transparent 23rem),
    linear-gradient(180deg, rgba(25, 15, 12, 0.06), rgba(25, 15, 12, 0.28));
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(var(--content-wide), calc(100% - clamp(2rem, 8vw, 8rem)));
  max-width: none;
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(9.5rem, 18vh, 13rem) 0 clamp(5rem, 10vh, 8rem);
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-logo-image {
  width: clamp(150px, 14vw, 205px);
  height: auto;
  margin: 0 0 clamp(2.3rem, 5vh, 4rem);
  opacity: 1;
  filter: brightness(0) invert(1);
  animation: premiumLogoSettle 680ms var(--ease-premium) both;
}

.hero-content h1 {
  max-width: 880px;
  margin: 0;
  color: var(--premium-on-dark);
  font-size: clamp(3.4rem, 7.3vw, 7.5rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.048em;
  text-align: left;
  text-shadow: 0 3px 30px rgba(18, 10, 8, 0.22);
  opacity: 1;
  transform: none;
  animation: premiumTitleSettle 900ms 80ms var(--ease-premium) both;
}

.hero-title-kicker {
  display: block;
  max-width: 35rem;
  margin-bottom: 1.1rem;
  color: var(--premium-champagne);
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 1vw, 0.78rem);
  font-weight: 550;
  line-height: 1.5;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-title-display {
  display: block;
}

.hero-title-display em {
  color: #f0d8b4;
  font-weight: 300;
}

.atmosphere-greeting {
  order: -1;
}

.hero-content .hero-tagline {
  max-width: 42rem;
  margin: 1.7rem 0 0;
  color: rgba(255, 250, 244, 0.78);
  font-size: clamp(0.96rem, 1.35vw, 1.12rem);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  text-align: left;
  opacity: 1;
  transform: none;
  animation: premiumSupportReveal 700ms 180ms var(--ease-premium) both;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 2.15rem;
  animation: premiumSupportReveal 700ms 260ms var(--ease-premium) both;
}

.hero-actions .btn {
  min-width: 190px;
  opacity: 1;
  transform: none;
  animation: none;
}

.hero::after {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: 3rem;
  z-index: 4;
  content: 'SCROLL  /  DISCOVER';
  color: rgba(255, 250, 244, 0.62);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}

@keyframes premiumHeroDrift {
  from { transform: scale(1.02) translate3d(-0.3%, 0, 0); }
  to { transform: scale(1.065) translate3d(0.5%, -0.6%, 0); }
}

@keyframes premiumLogoSettle {
  from { transform: translateY(-10px); }
  to { transform: translateY(0); }
}

@keyframes premiumTitleSettle {
  from { transform: translateY(18px); }
  to { transform: translateY(0); }
}

@keyframes premiumSupportReveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   5. Editorial page heroes and section rhythm
   -------------------------------------------------------------------------- */

.page-hero {
  min-height: clamp(430px, 56vw, 650px);
  padding: clamp(9rem, 14vw, 12rem) 0 clamp(5rem, 8vw, 8rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(212, 185, 142, 0.2), transparent 24rem),
    radial-gradient(circle at 8% 110%, rgba(157, 119, 77, 0.22), transparent 29rem),
    var(--premium-espresso);
  color: var(--premium-on-dark);
  text-align: left;
}

.page-hero::before {
  inset: auto 8vw -48% auto;
  width: clamp(260px, 40vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(212, 185, 142, 0.18);
  border-radius: 50%;
  background: transparent;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  margin-inline: auto;
  text-align: left;
}

.page-hero .text-center {
  text-align: left;
}

.page-hero .section-subtitle {
  color: var(--premium-champagne);
}

.page-hero h1 {
  max-width: 960px;
  margin: 0;
  color: var(--premium-on-dark);
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.page-hero p {
  max-width: 48rem;
  margin: 1.8rem 0 0;
  color: rgba(255, 250, 244, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.8;
}

.page-hero .divider {
  margin-inline: 0;
  background: var(--premium-champagne);
}

.page-hero .hero-actions {
  margin-top: 2.25rem;
}

.about,
.services-preview,
.pricing-snapshot,
.testimonials,
.matchmaker,
.instagram-section,
#blog-posts,
#gift-cards,
.policy-section {
  position: relative;
  overflow: clip;
}

.about,
.pricing-snapshot,
#blog-posts,
#gift-cards,
.policy-section {
  background: var(--premium-ivory);
}

.services-preview,
.virtual-brow,
.instagram-section {
  background: var(--premium-cream);
}

/* --------------------------------------------------------------------------
   6. Founder editorial profile
   -------------------------------------------------------------------------- */

.about {
  padding-block: var(--space-xxl);
}

.about-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(3.5rem, 8vw, 9rem);
  align-items: center;
}

.about-content {
  position: relative;
  max-width: 650px;
  padding-left: clamp(0rem, 4vw, 4rem);
}

.about-content::before {
  position: absolute;
  top: 0.2rem;
  bottom: 0.4rem;
  left: 0;
  width: 1px;
  content: '';
  background: linear-gradient(180deg, var(--premium-champagne), transparent 88%);
}

.about-content h2 {
  margin-bottom: 2rem;
  font-size: clamp(3.1rem, 5.5vw, 5.6rem);
}

.about-content p {
  max-width: 61ch;
  font-size: 1rem;
  line-height: 1.85;
}

.bio-text p:not(:first-child) {
  margin-top: 1.15rem;
}

.btn-read-more {
  display: inline-flex;
  min-height: 44px;
  padding: 0.65rem 0;
  align-items: center;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--premium-bronze-ink);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-read-more:hover {
  color: var(--premium-ink);
}

.founder-philosophy {
  margin: 2.1rem 0 0;
  padding: 1.7rem 0 0;
  border-top: 1px solid var(--premium-line);
  color: var(--premium-ink);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
  font-style: italic;
  line-height: 1.2;
}

.founder-philosophy span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--premium-bronze);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.25rem;
  border-top: 1px solid var(--premium-line);
}

.about-feature {
  min-height: 84px;
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid var(--premium-line);
  gap: 0.75rem;
}

.about-feature:nth-child(odd) {
  padding-right: 1.5rem;
}

.about-feature-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--premium-bronze);
  font-size: 0.68rem;
}

.about-feature span {
  color: var(--color-text-light);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.55;
}

.about-image {
  min-height: min(760px, 72vw);
  border-radius: 0 0 48% 0;
  overflow: visible;
}

.about-image::before {
  position: absolute;
  inset: -1.2rem 1.4rem 1.2rem -1.4rem;
  z-index: -1;
  content: '';
  border: 1px solid rgba(157, 119, 77, 0.45);
  border-radius: 0 0 48% 0;
}

.about-image::after {
  inset: auto -2.5rem -2.5rem auto;
  width: 9rem;
  height: 9rem;
  border: 1px solid rgba(157, 119, 77, 0.35);
  border-radius: 50%;
  background: rgba(212, 185, 142, 0.1);
  box-shadow: none;
}

.about-image img {
  height: 100%;
  border-radius: 0 0 48% 0;
  object-fit: cover;
  object-position: center 24%;
  box-shadow: var(--shadow-lg);
}

.play-philosophy-btn {
  margin-top: 2rem;
  border: 0;
  border-bottom: 1px solid var(--premium-line);
  border-radius: 0;
  padding: 0.8rem 0;
  background: transparent;
  color: var(--premium-ink);
  box-shadow: none;
}

.play-philosophy-btn:hover {
  border-color: var(--premium-bronze);
  background: transparent;
  color: var(--premium-bronze);
  transform: none;
}

.play-philosophy-btn .play-icon {
  background: var(--premium-ink);
  color: var(--premium-ivory);
}

/* --------------------------------------------------------------------------
   7. Guided consultation / AI surfaces
   -------------------------------------------------------------------------- */

.skin-scanner {
  padding-block: var(--space-2xl);
  background:
    radial-gradient(circle at 85% 22%, rgba(212, 185, 142, 0.2), transparent 22rem),
    var(--premium-espresso);
}

.scanner-card {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
  column-gap: clamp(2rem, 8vw, 8rem);
  min-height: 540px;
  padding: clamp(3rem, 7vw, 6.5rem);
  border: 1px solid var(--premium-line-light);
  border-radius: 0;
  background: rgba(255, 250, 244, 0.035);
  box-shadow: none;
  color: var(--premium-on-dark);
  isolation: isolate;
}

.scanner-card::before {
  position: absolute;
  right: clamp(2rem, 7vw, 7rem);
  top: 50%;
  width: min(30vw, 350px);
  aspect-ratio: 1;
  content: '';
  border: 1px solid rgba(212, 185, 142, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 250, 244, 0.12), transparent 9%),
    radial-gradient(circle, rgba(212, 185, 142, 0.08), transparent 62%);
  box-shadow:
    0 0 0 32px rgba(212, 185, 142, 0.025),
    0 0 0 64px rgba(212, 185, 142, 0.02);
  transform: translateY(-50%);
  animation: consultationOrbit 9s ease-in-out infinite alternate;
  z-index: -1;
}

.scanner-card::after {
  position: absolute;
  right: clamp(3rem, 9vw, 9rem);
  bottom: clamp(2.5rem, 6vw, 5rem);
  content: 'PRIVATE  /  GUIDED  /  NON-MEDICAL';
  color: rgba(255, 250, 244, 0.52);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.scanner-card > :not(.scanner-privacy) {
  grid-column: 1;
}

.scanner-card .section-subtitle {
  color: var(--premium-champagne);
}

.scanner-card .section-title {
  max-width: 650px;
  color: var(--premium-on-dark);
  font-size: clamp(3rem, 5.2vw, 5.5rem);
}

.scanner-card .section-description {
  max-width: 570px;
  margin: 1.5rem 0 0;
  color: rgba(255, 250, 244, 0.69);
}

.scanner-cta-btn {
  width: fit-content;
  margin-top: 2.25rem;
  border-color: var(--premium-champagne);
  background: var(--premium-champagne);
  color: var(--premium-espresso);
  animation: none;
}

.scanner-cta-btn:hover {
  border-color: var(--premium-on-dark);
  background: var(--premium-on-dark);
  color: var(--premium-espresso);
}

.scanner-privacy {
  grid-column: 1 / -1;
  align-self: end;
  justify-content: flex-start;
  max-width: 850px;
  margin-top: 3.25rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--premium-line-light);
  color: rgba(255, 250, 244, 0.55);
  font-size: 0.72rem;
  line-height: 1.7;
  text-align: left;
}

.scanner-privacy a {
  color: var(--premium-on-dark);
}

.scanner-consent-dialog,
.scanner-panel {
  border: 1px solid rgba(157, 119, 77, 0.38);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0, rgba(212, 185, 142, 0.14), transparent 18rem),
    var(--premium-ivory);
  box-shadow: var(--shadow-lg);
}

.scanner-consent-dialog::backdrop,
.scanner-backdrop {
  background: rgba(22, 13, 11, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.scanner-upload-fallback-ui {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 4vw, 3.5rem);
  border: 1px dashed rgba(157, 119, 77, 0.46);
  background: rgba(246, 239, 231, 0.55);
}

.scanner-upload-icon {
  color: var(--premium-bronze);
}

.scanner-photo-frame,
.scanner-camera-preview {
  border-radius: var(--radius-md);
}

.scanner-sweep {
  background: var(--premium-champagne);
  box-shadow: 0 0 18px rgba(212, 185, 142, 0.82);
}

.score-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
}

.result-card {
  border: 0;
  border-left: 1px solid var(--premium-bronze);
  border-radius: 0;
  background: var(--premium-cream);
}

@keyframes consultationOrbit {
  from { transform: translateY(-50%) rotate(-3deg) scale(0.98); }
  to { transform: translateY(-50%) rotate(4deg) scale(1.025); }
}

/* --------------------------------------------------------------------------
   8. Signature services and service canvas
   -------------------------------------------------------------------------- */

.services-preview {
  padding-block: var(--space-xxl);
}

.featured-services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.4vw, 2.25rem);
  margin-top: clamp(3rem, 6vw, 5.5rem);
}

.featured-services-grid .service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(220px, 1fr);
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--premium-line);
  border-radius: 0;
  background: var(--premium-ivory);
  box-shadow: none;
}

.featured-services-grid .service-card:nth-child(1),
.featured-services-grid .service-card:nth-child(4) {
  grid-column: span 7;
}

.featured-services-grid .service-card:nth-child(2),
.featured-services-grid .service-card:nth-child(3) {
  grid-column: span 5;
  grid-template-columns: 1fr;
}

.featured-services-grid .service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(157, 119, 77, 0.54);
  box-shadow: var(--shadow-md);
}

.featured-services-grid .service-card-image {
  position: relative;
  height: 100%;
  min-height: 250px;
}

.featured-services-grid .service-card-image > img {
  filter: saturate(0.78) sepia(0.06) contrast(1.04);
  object-position: center;
}

.featured-services-grid .service-card:nth-child(2) .service-card-image > img {
  object-position: 56% center;
}

.featured-services-grid .service-card-image::after {
  position: absolute;
  inset: 1rem;
  z-index: 1;
  pointer-events: none;
  content: '';
  border: 1px solid rgba(255, 250, 244, 0.32);
}

.featured-services-grid .service-card-image > div {
  position: relative;
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 250, 244, 0.26), transparent 24%),
    linear-gradient(150deg, #bba17e, #705649);
  color: rgba(255, 250, 244, 0.88);
}

.featured-services-grid .service-card-image > div::before {
  position: absolute;
  inset: 1rem;
  content: '';
  border: 1px solid rgba(255, 250, 244, 0.28);
}

.featured-services-grid .service-card-image > div::after {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  content: 'SKINARI  /  SIGNATURE';
  color: rgba(255, 250, 244, 0.62);
  font-family: var(--font-body);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
}

.featured-services-grid .service-card-body {
  padding: clamp(1.7rem, 3.2vw, 3rem);
}

.featured-services-grid .service-card-body h3 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.featured-services-grid .service-card-body p {
  line-height: 1.75;
}

.service-directory-grid,
#local-service-guides .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid var(--premium-line);
}

.service-directory-grid .service-card,
#local-service-guides .service-card {
  position: relative;
  min-height: 250px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-right: 1px solid var(--premium-line);
  border-bottom: 1px solid var(--premium-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-directory-grid .service-card:nth-child(3n),
#local-service-guides .service-card:nth-child(3n) {
  border-right: 0;
}

.service-directory-grid .service-card:hover,
#local-service-guides .service-card:hover {
  z-index: 1;
  transform: none;
  background: rgba(212, 185, 142, 0.1);
  box-shadow: none;
}

.service-directory-grid .service-card-body,
#local-service-guides .service-card-body {
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.service-directory-grid .service-card-body h3,
#local-service-guides .service-card-body h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.05rem);
}

.service-directory-grid .service-card-body .btn,
#local-service-guides .service-card-body .btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.6rem 0;
  border-width: 0 0 1px;
  color: var(--premium-bronze);
}

.service-directory-grid .service-card-body .btn:hover,
#local-service-guides .service-card-body .btn:hover {
  background: transparent;
  color: var(--premium-ink);
}

.service-map-section {
  background:
    radial-gradient(circle at 16% 32%, rgba(212, 185, 142, 0.16), transparent 22rem),
    var(--premium-espresso);
  color: var(--premium-on-dark);
}

.service-map-section :where(.section-title, .section-description) {
  color: var(--premium-on-dark);
}

.service-map-section .section-description {
  color: rgba(255, 250, 244, 0.66);
}

.service-map-section .section-subtitle {
  color: var(--premium-champagne);
}

.service-map-wrap {
  border: 1px solid var(--premium-line-light);
  border-radius: 0;
  background: rgba(255, 250, 244, 0.035);
  box-shadow: none;
}

.service-map-figure-frame {
  border-radius: 0;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.service-map-card,
.service-map-mobile-panel {
  border: 1px solid rgba(212, 185, 142, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(31, 21, 18, 0.88);
  color: var(--premium-on-dark);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.service-map-card :where(h4, p),
.service-map-mobile-panel :where(h4, p) {
  color: var(--premium-on-dark);
}

.service-menu {
  background: var(--premium-ivory);
}

.snapshot-grid {
  gap: 0;
  margin-top: 3.5rem;
  border-block: 1px solid var(--premium-line);
}

.snapshot-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 0;
  border-right: 1px solid var(--premium-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.snapshot-card:last-child {
  border-right: 0;
}

.snapshot-from {
  color: var(--premium-bronze);
  font-size: 1rem;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   9. Social proof, matchmaker, rewards and supporting sections
   -------------------------------------------------------------------------- */

.testimonials {
  background: var(--premium-stone);
}

.reviews-grid {
  place-items: center;
  margin-top: 2.5rem;
}

.reviews-grid--sources {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.trust-source {
  display: flex;
  width: 100%;
  min-height: 300px;
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid var(--premium-line);
  color: var(--premium-ink);
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.trust-source--rating {
  background:
    radial-gradient(circle at 86% 12%, rgba(212, 185, 142, 0.35), transparent 13rem),
    var(--premium-ivory);
}

.trust-source--google {
  color: var(--premium-on-dark);
  background:
    radial-gradient(circle at 14% 10%, rgba(212, 185, 142, 0.18), transparent 14rem),
    var(--premium-espresso);
}

.trust-source:hover {
  border-color: var(--premium-bronze);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.trust-source-eyebrow {
  margin-bottom: auto;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-source-mark {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  margin-right: 0.55rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0;
  vertical-align: middle;
}

.trust-source-mark--fresha { background: #d9f36e; color: #17372d; border-color: transparent; }
.trust-source-mark--google { background: var(--premium-ivory); color: #3c4043; border-color: transparent; }

.trust-source-stars {
  margin-top: 2rem;
  color: var(--premium-bronze);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
}

.trust-source-score,
.trust-source-title {
  display: block;
  margin: 2.5rem 0 0.8rem;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.9;
}

.trust-source-score small {
  display: block;
  margin-top: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.trust-source-copy {
  max-width: 34rem;
  color: inherit;
  font-size: 0.86rem;
  line-height: 1.65;
  opacity: 0.82;
}

.trust-source-action {
  display: inline-flex;
  min-height: 44px;
  margin-top: 1.25rem;
  border-top: 1px solid currentColor;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.matchmaker-card {
  padding: clamp(3rem, 8vw, 7rem);
  border: 1px solid var(--premium-line);
  border-radius: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(212, 185, 142, 0.24), transparent 20rem),
    var(--premium-ivory);
  box-shadow: none;
}

.studio-trust {
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
  border-block: 1px solid var(--premium-line-light);
  background: var(--premium-espresso);
  color: var(--premium-on-dark);
}

.studio-trust > .container {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.studio-trust-intro h2 {
  margin-top: 1rem;
  color: var(--premium-on-dark);
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  line-height: 0.92;
}

.studio-trust-intro .section-subtitle { color: #ead5b4; }

.studio-trust-grid { border-top: 1px solid var(--premium-line-light); }
.studio-trust-item {
  display: grid;
  grid-template-columns: 3rem minmax(150px, 0.55fr) minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.75rem 0;
  align-items: baseline;
  border-bottom: 1px solid var(--premium-line-light);
}
.studio-trust-item > span { color: var(--premium-champagne); font-size: 0.62rem; letter-spacing: 0.14em; }
.studio-trust-item h3 { margin: 0; color: var(--premium-on-dark); font-size: clamp(1.55rem, 2.4vw, 2.25rem); }
.studio-trust-item p { margin: 0; color: var(--premium-on-dark-muted); font-size: 0.85rem; line-height: 1.65; }

.rewards-promo {
  background:
    radial-gradient(circle at 8% 18%, rgba(212, 185, 142, 0.16), transparent 25rem),
    var(--premium-espresso);
  color: var(--premium-on-dark);
}

.rewards-content :where(.section-title, p, li) {
  color: var(--premium-on-dark);
}

.rewards-content .section-subtitle {
  color: var(--premium-champagne);
}

.rewards-content .rewards-perks {
  border-top: 1px solid var(--premium-line-light);
}

.rewards-content .rewards-perks li {
  margin: 0;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--premium-line-light);
  color: rgba(255, 250, 244, 0.72);
  font-size: 0.92rem;
}

.rewards-card-preview {
  max-width: 460px;
  padding: clamp(2rem, 4vw, 3.2rem);
  border: 1px solid rgba(212, 185, 142, 0.42);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 82% 14%, rgba(212, 185, 142, 0.2), transparent 15rem),
    #211715;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  transform: rotate(-2deg);
}

:root[data-theme-resolved='dark'] .rewards-card-preview {
  border-color: rgba(212, 185, 142, 0.7);
  background:
    radial-gradient(circle at 84% 12%, rgba(157, 119, 77, 0.22), transparent 15rem),
    #f1e4d5;
  color: #211715;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52);
}

:root[data-theme-resolved='dark'] .rewards-card-preview :where(h3, p) { color: #211715; }
:root[data-theme-resolved='dark'] .rewards-card-preview .preview-logo-img { filter: brightness(0) saturate(100%); }
:root[data-theme-resolved='dark'] .rewards-card-preview .p-dot { background: #f1e4d5; color: #211715; }

.rewards-card-preview:hover {
  transform: rotate(0deg) translateY(-4px);
}

.rewards-join-cta {
  min-width: min(100%, 320px);
  font-size: 0.78rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

:root[data-theme-resolved='dark'] .rewards-join-cta {
  border-color: var(--premium-champagne);
  background: var(--premium-champagne);
  color: #1c1311;
}

.preview-punches {
  position: relative;
  gap: 0;
  justify-content: space-between;
  margin-block: 2rem;
}

.preview-punches::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  left: 1rem;
  height: 1px;
  content: '';
  background: rgba(212, 185, 142, 0.26);
}

.p-dot {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-style: solid;
  background: #211715;
}

/* --------------------------------------------------------------------------
   10. Gift cards and editorial blog
   -------------------------------------------------------------------------- */

.gift-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.gift-card-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.5fr);
  margin: clamp(3.5rem, 7vw, 6rem) 0 0;
  overflow: hidden;
  border: 1px solid var(--premium-line);
  background: var(--premium-espresso);
}

.gift-card-editorial picture { min-height: 430px; }
.gift-card-editorial img { width: 100%; height: 100%; object-fit: cover; }
.gift-card-editorial figcaption {
  display: flex;
  padding: clamp(2rem, 4vw, 4rem);
  align-items: flex-end;
  color: var(--premium-on-dark-muted);
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-style: italic;
  line-height: 1.08;
}

.gift-card-editorial + .gift-cards-grid { margin-top: clamp(2rem, 4vw, 3.5rem); }

.gift-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(240px, 1.1fr);
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--premium-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gift-card:hover {
  transform: translateY(-4px);
  border-color: rgba(157, 119, 77, 0.52);
  box-shadow: var(--shadow-md);
}

.gift-card-visual {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 280px;
  padding: 2rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  background: #4a352d;
  color: var(--premium-on-dark);
}

.gift-card-visual::before {
  inset: 0.8rem;
  border: 1px solid rgba(255, 250, 244, 0.25);
  background: transparent;
}

.gift-card-visual img {
  position: relative;
  z-index: 1;
  width: 96px;
  height: auto;
  filter: brightness(0) invert(1);
}

.gift-card-visual span {
  position: relative;
  z-index: 1;
  color: rgba(255, 250, 244, 0.72);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.15;
}

.gift-card-body {
  padding: clamp(1.7rem, 3vw, 2.7rem);
}

.gift-card-body h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

.gift-card-price {
  color: var(--premium-bronze);
  font-size: 1.4rem;
  font-style: italic;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}

.blog-card {
  grid-column: span 4;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.blog-card:first-child {
  grid-column: span 7;
}

.blog-card:nth-child(2) {
  grid-column: span 5;
}

.blog-card:hover {
  transform: none;
  box-shadow: none;
}

.blog-card-image {
  height: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--premium-stone);
}

.blog-card:first-child .blog-card-image,
.blog-card:nth-child(2) .blog-card-image {
  aspect-ratio: 16 / 10;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
  transition: transform 850ms var(--ease-premium), filter 500ms ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.035);
  filter: saturate(0.96) contrast(1.03);
}

.blog-card-body {
  padding: 1.65rem 0 0;
}

.blog-card-body h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
}

.blog-card-meta {
  color: var(--premium-bronze-ink);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.blog-card-body .btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 0;
  border-width: 0 0 1px;
  color: var(--premium-bronze-ink);
}

.blog-card-body .btn:hover {
  background: transparent;
  color: var(--premium-ink);
}

.insta-grid {
  gap: 0.75rem;
}

.insta-item {
  border-radius: 0;
}

/* --------------------------------------------------------------------------
   11. Contact, policy and long-form content
   -------------------------------------------------------------------------- */

.contact-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-form-wrapper {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form-wrapper h2,
.contact-info-card h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.4rem);
}

.contact-form-wrapper form {
  margin-top: 2.25rem;
}

.form-group label {
  margin-bottom: 0.6rem;
  color: var(--premium-bronze);
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-group :where(input, select, textarea) {
  min-height: 52px;
  border: 0;
  border-bottom: 1px solid rgba(73, 53, 45, 0.38);
  border-radius: 0;
  background: transparent;
  color: var(--premium-ink);
}

.form-group :where(input, select, textarea):focus {
  border-color: var(--premium-bronze);
  background: rgba(212, 185, 142, 0.06);
  box-shadow: none;
}

.form-group textarea {
  min-height: 150px;
}

.form-submit .btn {
  width: auto;
  min-width: 190px;
}

.contact-info {
  gap: 0;
  border-top: 1px solid var(--premium-line);
}

.contact-info-card {
  padding: 2rem 0;
  border: 0;
  border-bottom: 1px solid var(--premium-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-info-card .icon {
  display: inline-flex;
  width: 2.25rem;
  color: var(--premium-bronze);
  font-family: var(--font-body);
  font-size: 0;
  font-style: normal;
}

.contact-info-card:nth-child(1) .icon::before { content: '01'; }
.contact-info-card:nth-child(2) .icon::before { content: '02'; }
.contact-info-card:nth-child(3) .icon::before { content: '03'; }
.contact-info-card .icon::before {
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.map-link {
  color: var(--premium-bronze);
}

.hours-item {
  border-color: var(--premium-line);
}

.policy-section .container {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--premium-line);
}

.policy-toc > span {
  padding: 1.15rem 0;
  color: var(--premium-bronze-ink);
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.policy-toc a {
  padding: 0.72rem 0;
  border-top: 1px solid rgba(73, 53, 45, 0.1);
  color: var(--color-text-muted);
  font-size: 0.74rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color var(--duration-micro) ease, padding var(--duration-micro) ease;
}

.policy-toc a:hover,
.policy-toc a:focus-visible {
  padding-left: 0.4rem;
  color: var(--premium-bronze);
}

.policy-grid {
  display: block;
}

.policy-card,
.policy-card-wide {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(2.2rem, 5vw, 4rem) 0;
  border: 0;
  border-top: 1px solid var(--premium-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.policy-card:first-child {
  padding-top: 0;
  border-top: 0;
}

.policy-card h2,
.policy-card h3 {
  max-width: 18ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
}

.policy-card p,
.policy-card li {
  max-width: 74ch;
  font-size: 0.98rem;
  line-height: 1.82;
}

.policy-card ul {
  margin-top: 1rem;
}

.policy-card ul li {
  padding: 0.75rem 0 0.75rem 1.6rem;
  border: 0;
}

.policy-card ul li::before {
  top: 1.5rem;
  left: 0;
  width: 0.55rem;
  height: 1px;
  border-radius: 0;
  background: var(--premium-bronze);
}

#service-content {
  background:
    linear-gradient(90deg, rgba(212, 185, 142, 0.08), transparent 24rem),
    var(--premium-ivory);
}

#service-content > .container {
  max-width: 920px;
}

#service-content h2 {
  margin: clamp(3rem, 7vw, 5.5rem) 0 1.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--premium-line);
  font-size: clamp(2.3rem, 4.5vw, 4rem);
}

#service-content h2:first-of-type {
  margin-top: 0;
}

#service-content p,
#service-content li {
  max-width: 70ch;
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.9;
}

#article-content {
  position: relative;
  background:
    radial-gradient(circle at 92% 8%, rgba(212, 185, 142, 0.12), transparent 24rem),
    var(--premium-ivory);
}

#article-content > .container {
  max-width: var(--content-reading);
}

#article-content .fade-in > p:first-child {
  margin-bottom: clamp(3rem, 7vw, 5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--premium-line);
  color: var(--premium-ink);
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-style: italic;
  line-height: 1.35;
}

#article-content h2 {
  margin: clamp(3.3rem, 8vw, 6rem) 0 1.3rem;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  line-height: 1.02;
}

#article-content p,
#article-content li {
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.95;
}

#article-content ul {
  padding-left: 1.2rem;
}

.faq-item {
  border: 0;
  border-bottom: 1px solid var(--premium-line);
  border-radius: 0;
  background: transparent;
}

.faq-item summary {
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.faq-item p {
  padding-inline: 0;
}

/* --------------------------------------------------------------------------
   12. CTA, footer, consent and floating utilities
   -------------------------------------------------------------------------- */

.cta-banner {
  min-height: 460px;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 10% 110%, rgba(212, 185, 142, 0.18), transparent 28rem),
    radial-gradient(circle at 92% -10%, rgba(157, 119, 77, 0.24), transparent 25rem),
    var(--color-primary);
}

.cta-banner::before {
  inset: 1.25rem;
  border: 1px solid rgba(255, 250, 244, 0.13);
  border-radius: 0;
  background: transparent;
}

.cta-banner::after {
  display: none;
}

.cta-banner h2 {
  max-width: 900px;
  color: var(--premium-on-dark);
  font-size: clamp(3rem, 6vw, 6rem);
}

.cta-banner p {
  max-width: 650px;
  color: rgba(255, 250, 244, 0.7);
}

.footer {
  padding-top: clamp(4rem, 8vw, 7rem);
  background: #17100e;
}

.footer-grid {
  grid-template-columns: minmax(250px, 1.4fr) repeat(3, minmax(140px, 0.7fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-brand .logo-image {
  width: 125px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-contact p,
.footer-links a,
.footer .btn-auth-link {
  color: rgba(255, 250, 244, 0.56);
  font-size: 0.76rem;
  line-height: 1.7;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
}

.public-updates-card {
  width: min(720px, calc(100% - clamp(2rem, 8vw, 8rem)));
  margin: clamp(4rem, 8vw, 7rem) auto;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-width: 1px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.footer h2,
.footer h4 {
  color: var(--premium-champagne);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--premium-on-dark);
}

.footer-bottom {
  border-color: rgba(255, 250, 244, 0.1);
}

.cookie-banner {
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  left: auto;
  width: min(480px, calc(100% - 2rem));
  padding: 1.2rem;
  border: 1px solid rgba(212, 185, 142, 0.32);
  border-radius: var(--radius-sm);
  background: rgba(28, 19, 17, 0.95);
  color: var(--premium-on-dark);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cookie-banner-copy strong,
.cookie-banner-copy p,
.cookie-banner-copy a {
  color: var(--premium-on-dark);
}

.cookie-banner-copy strong {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 500;
}

.cookie-banner-copy p {
  display: inline;
  font-size: 0.72rem;
}

.cookie-banner-actions button {
  min-height: 44px;
  border-radius: var(--radius-sm);
}

.footer-links a,
.footer-contact a {
  min-height: 44px;
}

.insta-swiper [hidden] {
  display: none !important;
}

.sticky-book-cta {
  min-height: 48px;
  border: 1px solid rgba(255, 250, 244, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(28, 19, 17, 0.92);
  color: var(--premium-on-dark);
  box-shadow: 0 12px 40px rgba(28, 19, 17, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body:is(.founder-story-expanded, .chat-active, .scanner-active, .scanner-consent-active) :where(.whatsapp-btn, .chat-widget-btn),
body:is(.chat-active, .scanner-active, .scanner-consent-active) :where(.scroll-top-btn, .sticky-book-bar) {
  visibility: hidden;
  pointer-events: none;
}

.whatsapp-btn,
.chat-widget-btn,
.scroll-top-btn {
  box-shadow: 0 12px 36px rgba(28, 19, 17, 0.18);
}

.whatsapp-btn {
  width: 52px;
  height: 52px;
  background: #244c3c;
}

.scroll-top-btn {
  right: 24px;
  bottom: 94px;
  border: 1px solid var(--premium-line-light);
  background: rgba(28, 19, 17, 0.9);
}

/* --------------------------------------------------------------------------
   13. Chat refinements
   -------------------------------------------------------------------------- */

.chat-widget-btn {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(212, 185, 142, 0.45);
  background:
    radial-gradient(circle at 68% 25%, rgba(212, 185, 142, 0.22), transparent 42%),
    var(--premium-espresso);
  color: var(--premium-on-dark);
  transition: transform var(--duration-normal) var(--ease-premium), background-color var(--duration-normal) ease;
}

.chat-widget-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.chat-window {
  width: min(390px, calc(100vw - 2rem));
  height: min(600px, calc(100vh - 130px));
  border: 1px solid rgba(157, 119, 77, 0.32);
  border-radius: var(--radius-md);
  background: var(--premium-ivory);
  box-shadow: 0 30px 90px rgba(28, 19, 17, 0.25);
  transition:
    opacity var(--duration-normal) ease,
    visibility 0s linear var(--duration-normal),
    transform var(--duration-normal) var(--ease-premium);
}

.chat-window.open {
  transition-delay: 0s;
}

.chat-header {
  padding: 1.3rem 1.2rem;
  border-bottom: 1px solid rgba(212, 185, 142, 0.22);
  background:
    radial-gradient(circle at 90% 0, rgba(212, 185, 142, 0.18), transparent 10rem),
    var(--premium-espresso);
}

.chat-header-avatar {
  border: 1px solid rgba(212, 185, 142, 0.4);
  background: transparent;
  color: var(--premium-champagne);
}

.chat-header-title {
  font-size: 1.45rem;
  color: var(--premium-on-dark);
}

.chat-header-status {
  color: var(--premium-on-dark);
  opacity: 0.82;
}

.chat-msg-bubble {
  border-radius: var(--radius-md);
  box-shadow: none;
}

.chat-msg.bot .chat-msg-bubble {
  border: 1px solid var(--premium-line);
  border-bottom-left-radius: 0;
  background: var(--premium-cream);
  color: var(--premium-ink);
}

.chat-msg.user .chat-msg-bubble {
  border-bottom-right-radius: 0;
  background: var(--premium-espresso);
  color: var(--premium-on-dark);
}

.chat-footer {
  background: var(--premium-ivory);
}

.chat-footer .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.chat-input {
  border-radius: var(--radius-sm);
}

.chat-send-btn {
  border-radius: var(--radius-sm);
  background: var(--premium-bronze);
  color: var(--premium-espresso);
}

/* --------------------------------------------------------------------------
   14. Aesthetic Rewards public product surface
   -------------------------------------------------------------------------- */

.loyalty-body {
  background:
    radial-gradient(circle at 10% 3%, rgba(212, 185, 142, 0.18), transparent 28rem),
    var(--premium-cream) !important;
  background-image: radial-gradient(circle at 10% 3%, rgba(212, 185, 142, 0.18), transparent 28rem) !important;
  color: var(--premium-ink);
}

.loyalty-main { padding-top: 76px; }

:root[data-theme-resolved='dark'] .loyalty-body {
  --lp-bg: #181210;
  --lp-bg-alt: #221a17;
  --lp-card: #211916;
  --lp-text: #f3e9de;
  --lp-text-light: #d8cbc0;
  --lp-text-muted: #b6a499;
  --lp-border: rgba(243, 233, 222, 0.16);
  --lp-gold: #d4b98e;
  --lp-gold-light: #ead5b4;
  --lp-gold-dark: #b58d5c;
}

.loyalty-container {
  width: min(1180px, calc(100% - clamp(2rem, 7vw, 7rem)));
  max-width: 1180px;
  padding-block: clamp(2rem, 6vw, 5rem);
}

.loyalty-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1.5rem, 6vw, 5rem);
  overflow: hidden;
  border: 1px solid var(--premium-line-light);
  border-radius: 0;
  background: var(--premium-espresso);
  color: var(--premium-on-dark);
  text-align: left;
}

.loyalty-hero-art { position: absolute; inset: 0 0 0 48%; z-index: 0; }
.loyalty-hero-art::after { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg, var(--premium-espresso), rgba(28,19,17,0.15)); }
.loyalty-hero-art img { width: 100%; height: 100%; object-fit: cover; }
.loyalty-hero-copy { position: relative; z-index: 1; max-width: 720px; }

.loyalty-hero::after {
  position: absolute;
  right: -5rem;
  bottom: -10rem;
  width: 24rem;
  aspect-ratio: 1;
  content: '';
  border: 1px solid rgba(212, 185, 142, 0.22);
  border-radius: 50%;
}

.hero-logo-link {
  display: inline-flex;
}

.hero-logo {
  width: 120px;
  filter: brightness(0) invert(1);
}

.hero-title {
  max-width: 700px;
  margin-top: 3.2rem;
  color: var(--premium-on-dark);
  font-size: clamp(4rem, 8vw, 7.6rem);
  line-height: 0.9;
  text-align: left;
}

/* Editorial service-family art direction. Background images are decorative;
   page headings retain the full accessible route identity. */
body[data-editorial-family] .page-hero { position: relative; isolation: isolate; overflow: hidden; }
body[data-editorial-family] .page-hero::before,
body[data-editorial-family] .page-hero::after { position: absolute; inset: 0; z-index: -2; content: ''; }
body[data-editorial-family] .page-hero::before { background-image: var(--editorial-hero-image); background-position: center; background-size: cover; }
body[data-editorial-family] .page-hero::after { z-index: -1; background: linear-gradient(90deg, rgba(24,16,14,.94) 0%, rgba(24,16,14,.76) 48%, rgba(24,16,14,.24) 100%); }
body[data-editorial-family] .page-hero .container { text-align: left; }
body[data-editorial-family] .page-hero :where(h1,p) { max-width: 760px; margin-inline: 0; color: var(--premium-on-dark); }
body[data-editorial-family='head-spa'] { --editorial-hero-image: url('/images/editorial/head-spa-ritual-v1.webp'); }
body[data-editorial-family='facial'] { --editorial-hero-image: url('/images/editorial/facial-ritual-v1.webp'); }
body[data-editorial-family='lash-brow'] { --editorial-hero-image: url('/images/editorial/lash-brow-tools-v1.webp'); }
body[data-editorial-family='nails'] { --editorial-hero-image: url('/images/editorial/nail-ritual-v1.webp'); }
body[data-editorial-family='makeup'] { --editorial-hero-image: url('/images/editorial/makeup-ritual-v1.webp'); }
body[data-editorial-family='henna'] { --editorial-hero-image: url('/images/editorial/henna-ritual-v1.webp'); }
body[data-editorial-family='laser'] { --editorial-hero-image: url('/images/feature-laser-consultation-v2.webp'); }
body[data-editorial-family='waxing'] { --editorial-hero-image: url('/images/feature-waxing-consultation-v2.webp'); }

.hero-sub {
  max-width: 520px;
  color: rgba(255, 250, 244, 0.68);
  text-align: left;
}

.hero-pill-row {
  justify-content: flex-start;
  margin-top: 2rem;
}

.hero-pill {
  border: 1px solid rgba(212, 185, 142, 0.34);
  border-radius: 999px;
  background: transparent;
  color: var(--premium-champagne);
}

.loyalty-steps {
  position: relative;
  gap: 0;
  margin-top: 0;
  border-inline: 1px solid var(--premium-line);
}

.step-card {
  min-height: 310px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 0;
  border-right: 1px solid var(--premium-line);
  border-bottom: 1px solid var(--premium-line);
  border-radius: 0;
  background: rgba(255, 250, 244, 0.56);
  box-shadow: none;
  text-align: left;
}

.step-card:last-child {
  border-right: 0;
}

.step-icon-wrap {
  margin: 0 0 2rem;
  border: 1px solid var(--premium-line);
  background: transparent;
}

.step-card h3 {
  font-size: 2rem;
}

.step-card p {
  color: var(--color-text-light);
}

.reward-journey {
  margin-top: clamp(3rem, 7vw, 6rem);
  padding: clamp(2.5rem, 6vw, 5rem);
  border: 1px solid var(--premium-line);
  background: var(--premium-ivory);
}

.reward-journey-header {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.reward-journey h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.reward-journey-header p {
  max-width: 42rem;
  margin: 0;
}

.reward-journey ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  list-style: none;
}

.reward-journey ol::before {
  position: absolute;
  top: 18px;
  right: 5%;
  left: 5%;
  height: 1px;
  content: '';
  background: var(--premium-line);
}

.reward-journey li {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  padding-inline: 0.25rem;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.65rem;
  line-height: 1.4;
  text-align: center;
}

.reward-journey li::before {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  content: attr(data-visit);
  border: 1px solid var(--premium-line);
  border-radius: 50%;
  background: var(--premium-ivory);
  color: var(--color-text-muted);
  font-size: 0.68rem;
  font-weight: 650;
}

.reward-journey li[data-reward]::before {
  border-color: #76513a;
  background: #76513a;
  color: var(--premium-on-dark);
}

.reward-journey li strong {
  color: #76513a;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.login-section,
.package-selection {
  border: 1px solid var(--premium-line);
  border-radius: var(--radius-md);
  background: var(--premium-ivory);
  box-shadow: var(--shadow-md);
}

.login-card-title {
  color: var(--premium-ink);
}

.login-card-sub,
.auth-tab,
.login-section .auth-hint-text {
  color: var(--color-text-muted);
}

.loading-overlay p,
.package-selection > p,
.pkg-card li {
  color: var(--color-text-light);
}

#public-service-catalogue-status {
  width: min(100%, 760px);
  min-height: 52px;
  margin-inline: auto;
  padding: 0.8rem 1rem;
  border: 1px solid var(--premium-line);
  background: rgba(212, 185, 142, 0.08);
  text-align: center;
}

#public-service-catalogue-status[data-state='live'] {
  border-color: rgba(62, 112, 80, 0.32);
  background: rgba(62, 112, 80, 0.08);
}

#public-service-catalogue-status[data-state='snapshot'] {
  border-color: rgba(157, 119, 77, 0.34);
}

#public-service-catalogue-status[data-state='error'] {
  border-color: rgba(143, 60, 50, 0.36);
  background: rgba(143, 60, 50, 0.08);
}

.auth-tabs {
  background: rgba(73, 53, 45, 0.08);
}

.auth-tab.active {
  background: var(--premium-espresso);
  color: var(--premium-on-dark);
}

.auth-tab:hover:not(.active) {
  background: rgba(157, 119, 77, 0.12);
  color: var(--premium-ink);
}

.login-section .btn-auth-link {
  color: var(--premium-bronze-ink);
}

/* --------------------------------------------------------------------------
   15. Explicit Light / Dark / System theme resolution
   -------------------------------------------------------------------------- */

:root[data-theme-resolved='dark'] {
  --color-primary: #d0b184;
  --color-primary-light: #e0c69d;
  --color-primary-dark: #9d774d;
  --color-accent: #c29d6b;
  --color-accent-light: #d9bf98;
  --color-bg: #181210;
  --color-bg-alt: #221a17;
  --color-card: #271e1a;
  --color-text: #f3e9de;
  --color-text-light: #d8cbc0;
  --color-text-muted: #b6a499;
  --color-border: rgba(243, 233, 222, 0.14);
  --color-white: #f8efe5;
  --premium-espresso: #120d0c;
  --premium-ink: #f3e9de;
  --premium-cream: #181210;
  --premium-ivory: #211916;
  --premium-stone: #2a211d;
  --premium-bronze-ink: #d4b98e;
  --premium-line: rgba(243, 233, 222, 0.16);
  color-scheme: dark;
}

:root[data-theme-resolved='dark'] body {
  background:
    radial-gradient(circle at 10% 8%, rgba(157, 119, 77, 0.12), transparent 25rem),
    var(--premium-cream);
}

:root[data-theme-resolved='dark'] body::before {
  mix-blend-mode: soft-light;
}

:root[data-theme-resolved='dark'] :where(
  .hero-content h1,
  .page-hero,
  .page-hero h1,
  .page-hero h2,
  .page-hero p,
  .scanner-card .section-title,
  .loyalty-hero .hero-title,
  .service-map-section .section-title
) {
  color: var(--premium-on-dark);
}

:root[data-theme-resolved='dark'] :where(.hero-title-kicker, .section-subtitle) {
  color: var(--premium-champagne);
}

:root[data-theme-resolved='dark'] .hero .btn-light,
:root[data-theme-resolved='dark'] .cta-banner .btn-light {
  border-color: var(--premium-on-dark);
  background: var(--premium-on-dark);
  color: #1c1311;
}

:root[data-theme-resolved='dark'] .hero .btn-outline-light {
  border-color: rgba(255, 250, 244, 0.58);
  color: var(--premium-on-dark);
}

:root[data-theme-resolved='dark'] .hero .btn-outline-light:hover {
  border-color: var(--premium-on-dark);
  background: var(--premium-on-dark);
  color: #1c1311;
}

:root[data-theme-resolved='dark'] .btn-primary {
  border-color: var(--premium-champagne);
  background: var(--premium-champagne);
  color: #1c1311;
}

:root[data-theme-resolved='dark'] .btn-primary:hover {
  border-color: var(--premium-on-dark);
  background: var(--premium-on-dark);
  color: #1c1311;
}

:root[data-theme-resolved='dark'] .btn-outline {
  border-color: rgba(255, 250, 244, 0.4);
  color: var(--premium-ink);
}

:root[data-theme-resolved='dark'] .btn-outline:hover {
  border-color: var(--premium-champagne);
  background: var(--premium-champagne);
  color: #1c1311;
}

:root[data-theme-resolved='dark'] .reward-journey li strong {
  color: var(--premium-champagne);
}

:root[data-theme-resolved='dark'] .reward-journey li[data-reward]::before {
  border-color: var(--premium-champagne);
  background: var(--premium-champagne);
  color: #1c1311;
}

:root[data-theme-resolved='dark'] .header.scrolled {
  border-bottom-color: var(--premium-line);
  background: rgba(24, 18, 16, 0.94);
}

:root[data-theme-resolved='dark'] body[data-editorial-family] .header:not(.header-transparent) {
  border-bottom-color: var(--premium-line);
  background: rgba(24, 18, 16, 0.94);
}

:root[data-theme-resolved='dark'] body[data-editorial-family] .header:not(.header-transparent) .nav-links a { color: var(--premium-on-dark); }
:root[data-theme-resolved='dark'] body[data-editorial-family] .header:not(.header-transparent) .logo-image { filter: brightness(0) invert(1); }

:root[data-theme-resolved='dark'] .header.scrolled .logo-image,
:root[data-theme-resolved='dark'] .footer-brand .logo-image,
:root[data-theme-resolved='dark'] .gift-card-visual img,
:root[data-theme-resolved='dark'] .hero-logo,
:root[data-theme-resolved='dark'] .hero-logo-image {
  filter: brightness(0) invert(1);
}

:root[data-theme-resolved='dark'] :where(
  .about,
  .pricing-snapshot,
  #blog-posts,
  #gift-cards,
  .policy-section,
  .service-menu,
  #service-content,
  .scanner-consent-dialog,
  .scanner-panel,
  .chat-window,
  .chat-footer,
  .reward-journey,
  .login-section,
  .package-selection
) {
  background-color: var(--premium-ivory);
}

:root[data-theme-resolved='dark'] .step-card {
  background: rgba(255, 250, 244, 0.035);
}

:root[data-theme-resolved='dark'] :where(
  .step-card p,
  .loading-overlay p,
  .package-selection > p,
  .pkg-card li,
  .login-card-sub,
  .login-section .auth-hint-text
) {
  color: var(--color-text-light);
}

:root[data-theme-resolved='dark'] .service-map-canvas {
  border-color: var(--premium-line);
  background: radial-gradient(circle at 50% 16%, rgba(157, 119, 77, 0.16), #211916 46%, #181210 100%);
}

:root[data-theme-resolved='dark'] .cta-banner {
  background:
    radial-gradient(circle at 10% 110%, rgba(212, 185, 142, 0.16), transparent 28rem),
    radial-gradient(circle at 92% -10%, rgba(157, 119, 77, 0.2), transparent 25rem),
    #241815;
}

:root[data-theme-resolved='dark'] .form-group :where(input, select, textarea) {
  color: var(--premium-ink);
}

:root[data-theme-resolved='dark'] .cookie-banner {
  background: rgba(18, 13, 12, 0.97);
}

/* --------------------------------------------------------------------------
   15.1 Theme parity for public controls and account surfaces
   -------------------------------------------------------------------------- */

/* The wordmark is intentionally coffee rather than pure black on light
   navigation surfaces. Transparent image-led headers keep the ivory mark. */
:root[data-theme-resolved='light'] :where(
  .header.scrolled,
  body[data-editorial-family] .header:not(.header-transparent)
) .logo-image {
  filter: brightness(0) saturate(100%) invert(21%) sepia(13%) saturate(981%) hue-rotate(332deg) brightness(91%) contrast(88%);
}

/* A dark content panel always receives light controls, even while the page is
   using the Light appearance. */
.cta-banner .btn-outline {
  border-color: rgba(255, 250, 244, 0.56);
  background: rgba(255, 250, 244, 0.035);
  color: var(--premium-on-dark);
}

.cta-banner .btn-outline:hover {
  border-color: var(--premium-on-dark);
  background: var(--premium-on-dark);
  color: #1c1311;
}

/* Rewards explainer icons */
.step-icon-wrap {
  border-color: rgba(73, 53, 45, 0.22);
  background: var(--premium-espresso);
  color: var(--premium-on-dark);
  box-shadow: 0 10px 28px rgba(36, 24, 21, 0.16);
}

.step-icon-wrap svg {
  color: inherit;
  stroke: currentColor;
}

:root[data-theme-resolved='dark'] .step-icon-wrap {
  border-color: rgba(224, 198, 157, 0.55);
  background: var(--premium-champagne);
  color: #1c1311;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34), 0 0 0 5px rgba(224, 198, 157, 0.08);
}

/* Rewards sign-in tabs and fields */
.auth-tabs {
  border: 1px solid var(--premium-line);
  background: rgba(73, 53, 45, 0.08);
}

.auth-tab {
  color: var(--color-text-muted);
}

.auth-tab.active,
.auth-tab[aria-selected='true'] {
  background: var(--premium-espresso);
  color: var(--premium-on-dark);
  box-shadow: 0 7px 18px rgba(36, 24, 21, 0.16);
}

.login-section :where(.auth-input) {
  border-color: var(--premium-line);
  background: var(--premium-ivory);
  color: var(--premium-ink);
}

.login-section .auth-input::placeholder {
  color: var(--color-text-muted);
}

.login-section :where(.auth-submit-btn, .btn-google) {
  border: 1px solid var(--premium-espresso);
  background: var(--premium-espresso);
  color: var(--premium-on-dark);
}

:root[data-theme-resolved='dark'] .auth-tabs {
  border-color: var(--premium-line);
  background: rgba(255, 250, 244, 0.05);
}

:root[data-theme-resolved='dark'] .auth-tab.active,
:root[data-theme-resolved='dark'] .auth-tab[aria-selected='true'] {
  background: var(--premium-champagne);
  color: #1c1311;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
}

:root[data-theme-resolved='dark'] .auth-tab:hover:not(.active) {
  background: rgba(255, 250, 244, 0.08);
  color: var(--premium-ink);
}

:root[data-theme-resolved='dark'] .login-section :where(.auth-input) {
  border-color: var(--premium-line);
  background: #181210;
  color: var(--premium-ink);
}

:root[data-theme-resolved='dark'] .login-section :where(.auth-submit-btn, .btn-google) {
  border-color: var(--premium-champagne);
  background: var(--premium-champagne);
  color: #1c1311;
}

/* Studio Updates is a complete, responsive form component instead of a bare
   input and text button. */
.public-updates-card {
  position: relative;
  width: min(860px, calc(100% - clamp(2rem, 8vw, 8rem)));
  padding: clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
  border: 1px solid var(--premium-line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 185, 142, 0.2), transparent 20rem),
    rgba(255, 250, 244, 0.72);
  box-shadow: var(--shadow-md);
}

.public-updates-card::before {
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  content: '';
  background: linear-gradient(90deg, transparent, var(--premium-bronze), transparent);
}

.public-updates-card h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.9rem, 6vw, 5rem);
}

.public-updates-card > p {
  max-width: 620px;
  margin-inline: auto;
}

.public-updates-card .promo-form {
  display: grid;
  width: min(620px, 100%);
  margin: 1.8rem auto 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
}

.public-updates-card .promo-form > p {
  display: none;
}

.public-updates-card .promo-form input[type='email'] {
  width: 100%;
  min-height: 52px;
  padding: 0 1rem;
  border: 1px solid rgba(73, 53, 45, 0.3);
  border-radius: var(--radius-md);
  background: var(--premium-ivory);
  color: var(--premium-ink);
  font: inherit;
}

.public-updates-card .promo-form input[type='email']::placeholder {
  color: var(--color-text-muted);
}

.public-updates-card .promo-form input[type='email']:focus-visible {
  border-color: var(--premium-bronze);
}

.public-updates-card .promo-form button {
  min-height: 52px;
  padding: 0 1.4rem;
  border: 1px solid var(--premium-espresso);
  border-radius: var(--radius-md);
  background: var(--premium-espresso);
  color: var(--premium-on-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform var(--duration-micro) var(--ease-premium), background-color var(--duration-micro) ease;
}

.public-updates-card .promo-form button:hover {
  transform: translateY(-2px);
  background: var(--color-primary-light);
}

:root[data-theme-resolved='dark'] .public-updates-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 185, 142, 0.12), transparent 20rem),
    rgba(33, 25, 22, 0.86);
}

:root[data-theme-resolved='dark'] .public-updates-card .promo-form input[type='email'] {
  border-color: var(--premium-line);
  background: #181210;
  color: var(--premium-ink);
}

:root[data-theme-resolved='dark'] .public-updates-card .promo-form button {
  border-color: var(--premium-champagne);
  background: var(--premium-champagne);
  color: #1c1311;
}

:root[data-theme-resolved='dark'] .public-updates-card .promo-form button:hover {
  border-color: var(--premium-on-dark);
  background: var(--premium-on-dark);
}

/* Policy reading position: restrained liquid glass, with aria-current kept in
   sync by the shared public script. */
.policy-toc a {
  position: relative;
  margin-inline: -0.75rem;
  padding-inline: 0.75rem;
  border-radius: 0;
  transition:
    color var(--duration-micro) ease,
    background-color var(--duration-normal) ease,
    border-color var(--duration-normal) ease,
    box-shadow var(--duration-normal) ease,
    transform var(--duration-micro) var(--ease-premium);
}

.policy-toc a.is-active,
.policy-toc a[aria-current='location'] {
  border-top-color: rgba(157, 119, 77, 0.3);
  border-radius: var(--radius-md);
  background: linear-gradient(110deg, rgba(255, 250, 244, 0.72), rgba(212, 185, 142, 0.18));
  color: var(--premium-ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 9px 28px rgba(42, 28, 23, 0.1);
  transform: translateX(0.35rem);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
}

.policy-toc a.is-active::before,
.policy-toc a[aria-current='location']::before {
  position: absolute;
  top: 24%;
  bottom: 24%;
  left: 0;
  width: 2px;
  border-radius: 999px;
  content: '';
  background: var(--premium-bronze);
  box-shadow: 0 0 14px rgba(157, 119, 77, 0.5);
}

:root[data-theme-resolved='dark'] .policy-toc a.is-active,
:root[data-theme-resolved='dark'] .policy-toc a[aria-current='location'] {
  border-top-color: rgba(224, 198, 157, 0.28);
  background: linear-gradient(110deg, rgba(255, 250, 244, 0.1), rgba(212, 185, 142, 0.06));
  color: var(--premium-on-dark);
  box-shadow: inset 0 1px 0 rgba(255, 250, 244, 0.12), 0 12px 30px rgba(0, 0, 0, 0.22);
}

/* My Card follows the public theme. The compact QR canvas remains white so
   scanners always see a high-contrast machine-readable code. */
.mc-body {
  --mc-surface: #fffaf4;
  --mc-surface-soft: #eadfd3;
  --mc-text: #211816;
  --mc-muted: #715f56;
  --mc-control: #1c1311;
  --mc-control-text: #fffaf4;
  background:
    radial-gradient(ellipse at 15% 35%, rgba(157, 119, 77, 0.12), transparent 52%),
    var(--premium-cream) !important;
  background-image: radial-gradient(ellipse at 15% 35%, rgba(157, 119, 77, 0.12), transparent 52%) !important;
  color: var(--mc-text) !important;
}

:root[data-theme-resolved='dark'] .mc-body {
  --mc-surface: #211916;
  --mc-surface-soft: #2a211d;
  --mc-text: #f3e9de;
  --mc-muted: #b6a499;
  --mc-control: #e0c69d;
  --mc-control-text: #1c1311;
  background:
    radial-gradient(ellipse at 15% 35%, rgba(212, 185, 142, 0.07), transparent 52%),
    #0e0a09 !important;
  background-image: radial-gradient(ellipse at 15% 35%, rgba(212, 185, 142, 0.07), transparent 52%) !important;
}

.mc-body .card-nav {
  border-bottom-color: var(--premium-line);
}

.mc-body :where(.card-nav-logo, .mc-card-logo) {
  filter: brightness(0) saturate(100%) invert(21%) sepia(13%) saturate(981%) hue-rotate(332deg) brightness(91%) contrast(88%);
}

:root[data-theme-resolved='dark'] .mc-body :where(.card-nav-logo, .mc-card-logo) {
  filter: brightness(0) invert(1);
}

.mc-body :where(.card-greeting, .mc-greeting-eyebrow, .mc-greeting-since, .mc-reward-label, .mc-motivational, .progress-label) {
  color: var(--mc-muted);
}

.mc-body .mc-greeting-name,
.mc-body :where(.history-section h2, .history-section h3, .book-cta-heading) {
  color: var(--mc-text);
}

.mc-body .btn-signout {
  border-color: var(--premium-line);
  color: var(--mc-text);
}

.mc-body .btn-signout:hover {
  border-color: var(--mc-control);
  background: var(--mc-control);
  color: var(--mc-control-text);
}

.mc-body .mc-card {
  border-color: var(--premium-line);
  background: linear-gradient(148deg, #fffaf4 0%, #f6efe7 54%, #eadfd3 100%);
  box-shadow: 0 28px 70px rgba(42, 28, 23, 0.16);
}

:root[data-theme-resolved='dark'] .mc-body .mc-card {
  background: linear-gradient(148deg, #211916 0%, #120f0d 52%, #1a1512 100%);
  box-shadow: 0 32px 76px rgba(0, 0, 0, 0.55);
}

.mc-body .mc-card-shimmer {
  background: linear-gradient(118deg, transparent 25%, rgba(157, 119, 77, 0.03) 45%, rgba(157, 119, 77, 0.09) 50%, rgba(157, 119, 77, 0.03) 55%, transparent 75%);
}

.mc-body .mc-tier-badge,
.mc-body .book-cta-btn {
  border-color: var(--mc-control);
  background: var(--mc-control);
  color: var(--mc-control-text);
}

.mc-body .punch-grid .punch-circle {
  border-color: rgba(73, 53, 45, 0.24) !important;
  background: rgba(73, 53, 45, 0.035) !important;
}

.mc-body .punch-grid .punch-circle span {
  color: rgba(73, 53, 45, 0.58) !important;
}

:root[data-theme-resolved='dark'] .mc-body .punch-grid .punch-circle {
  border-color: rgba(212, 185, 142, 0.25) !important;
  background: rgba(255, 250, 244, 0.025) !important;
}

:root[data-theme-resolved='dark'] .mc-body .punch-grid .punch-circle span {
  color: rgba(243, 233, 222, 0.5) !important;
}

.mc-body .loyalty-stats-grid {
  border-top-color: var(--premium-line) !important;
}

.mc-body .stat-label {
  color: var(--mc-muted) !important;
}

.mc-body .stat-value {
  color: var(--mc-text);
}

.mc-body .qr-hero {
  border: 1px solid var(--premium-line);
  background: var(--mc-surface);
  box-shadow: 0 24px 60px rgba(42, 28, 23, 0.16);
}

:root[data-theme-resolved='dark'] .mc-body .qr-hero {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.mc-body .qr-hero-badge,
.mc-body .btn-qr-fullscreen {
  border-color: var(--mc-control);
  background: var(--mc-control);
  color: var(--mc-control-text);
}

.mc-body :where(.qr-hero-sub, .qr-hero .qr-id-text) {
  color: var(--mc-muted);
}

.mc-body .qr-glow-ring::after {
  color: var(--mc-muted);
}

.mc-body .qr-hero .qr-code-wrap {
  border-color: var(--premium-champagne);
  background: #ffffff;
}

.mc-body .qr-hero .btn-share-card {
  border-color: var(--premium-line);
  background: transparent;
  color: var(--mc-text);
}

.mc-body .qr-hero .btn-share-card:hover {
  border-color: var(--mc-control);
  background: var(--mc-control);
  color: var(--mc-control-text);
}

.mc-body .book-cta-section {
  border-color: var(--premium-line);
  background: var(--mc-surface);
}

.mc-body .book-cta-eyebrow {
  color: var(--mc-muted);
}

.mc-body .history-section {
  border-top-color: var(--premium-line);
}

.mc-body .history-list li {
  border-color: var(--premium-line);
  background: color-mix(in srgb, var(--mc-surface) 86%, transparent);
  color: var(--mc-text);
  box-shadow: 0 10px 32px rgba(42, 28, 23, 0.1);
}

:root[data-theme-resolved='dark'] .mc-body .history-list li {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.mc-body .history-date {
  color: var(--mc-muted);
}

@media (max-width: 620px) {
  .public-updates-card .promo-form {
    grid-template-columns: 1fr;
  }

  .public-updates-card .promo-form button {
    width: 100%;
  }

  .policy-toc a.is-active,
  .policy-toc a[aria-current='location'] {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   16. Responsive art direction
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .featured-services-grid .service-card,
  .featured-services-grid .service-card:nth-child(n) {
    grid-column: span 6;
    grid-template-columns: 1fr;
  }

  .service-directory-grid,
  #local-service-guides .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-directory-grid .service-card:nth-child(3n),
  #local-service-guides .service-card:nth-child(3n) {
    border-right: 1px solid var(--premium-line);
  }

  .service-directory-grid .service-card:nth-child(2n),
  #local-service-guides .service-card:nth-child(2n) {
    border-right: 0;
  }

  .gift-card {
    grid-template-columns: 1fr;
  }

  .blog-card,
  .blog-card:first-child,
  .blog-card:nth-child(2) {
    grid-column: span 6;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 78px;
  }

  .container,
  .header .container {
    width: min(100% - 2rem, var(--content-wide));
  }

  .section-padding {
    padding-block: clamp(4.5rem, 18vw, 6.5rem);
  }

  .header,
  .header.scrolled {
    height: 72px;
  }

  .header .logo-image,
  .header.scrolled .logo-image {
    width: 92px;
  }

  .hamburger {
    display: flex;
    z-index: 1002;
  }

  .hamburger.active {
    border-color: rgba(255, 250, 244, 0.26);
  }

  .hamburger.active span {
    background: var(--premium-ivory);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    width: 100%;
    height: 100svh;
    padding: max(6.5rem, env(safe-area-inset-top)) 2rem max(3rem, env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    overflow-y: auto;
    background:
      radial-gradient(circle at 100% 0, rgba(212, 185, 142, 0.18), transparent 20rem),
      var(--premium-espresso);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition:
      opacity var(--duration-normal) ease,
      transform var(--duration-normal) var(--ease-premium),
      visibility 0s linear var(--duration-normal);
  }

  .nav-links::before {
    position: static;
    display: block;
    margin-bottom: 1.5rem;
    content: 'SKINARI  /  THE STUDIO';
    color: var(--premium-champagne);
    font-size: 0.6rem;
    font-weight: 650;
    letter-spacing: 0.22em;
    background: transparent;
  }

  .nav-links::after {
    position: static;
    display: block;
    width: min(100%, 22rem);
    height: 1px;
    margin-top: 1.4rem;
    content: '';
    background: linear-gradient(90deg, rgba(212, 185, 142, 0.5), transparent);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 250, 244, 0.11);
  }

  .nav-links a,
  .header.scrolled .nav-links a,
  .header.header-transparent:not(.scrolled) .nav-links a {
    display: block;
    width: 100%;
    padding: 0.58rem 0;
    color: var(--premium-ivory) !important;
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.015em;
    text-transform: none;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.active,
  .nav-links a:hover,
  .header.scrolled .nav-links a.active,
  .header.scrolled .nav-links a:hover {
    color: var(--premium-champagne) !important;
  }

  .mobile-overlay,
  .mobile-overlay.active {
    display: none;
  }

  .hero-content {
    width: calc(100% - 2rem);
    padding-top: max(7rem, calc(env(safe-area-inset-top) + 6rem));
    padding-bottom: max(4rem, calc(env(safe-area-inset-bottom) + 3rem));
    justify-content: flex-end;
  }

  .hero-bg::before {
    background:
      linear-gradient(180deg, rgba(20, 12, 10, 0.32) 0%, rgba(20, 12, 10, 0.25) 30%, rgba(20, 12, 10, 0.82) 100%),
      linear-gradient(90deg, rgba(20, 12, 10, 0.32), transparent);
  }

  .hero-poster,
  .hero-video {
    object-position: 60% center;
  }

  .hero-video {
    animation: none;
    transform: none;
  }

  .hero-logo-image {
    width: 132px;
    margin-bottom: 2rem;
  }

  .hero-content h1 {
    max-width: 12ch;
    font-size: clamp(3.05rem, 14vw, 4.7rem);
  }

  .hero-title-kicker {
    margin-bottom: 0.85rem;
    font-size: 0.6rem;
  }

  .hero-content .hero-tagline {
    max-width: 34rem;
    margin-top: 1.15rem;
    font-size: 0.92rem;
  }

  .hero-actions {
    width: 100%;
    margin-top: 1.55rem;
    gap: 0.7rem;
  }

  .hero-actions .btn {
    min-width: 0;
    flex: 1;
    padding-inline: 0.75rem;
  }

  .hero::after {
    display: none;
  }

  .page-hero {
    min-height: 510px;
    padding: 8.5rem 0 4.5rem;
  }

  .page-hero h1 {
    max-width: 12ch;
    font-size: clamp(3.15rem, 15vw, 5rem);
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
  }

  .about-content {
    padding-left: 1.25rem;
  }

  .about-image {
    width: calc(100% - 1.25rem);
    min-height: min(125vw, 620px);
    margin-left: auto;
  }

  .about-image::before {
    inset: -0.75rem 0.75rem 0.75rem -0.75rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-feature:nth-child(odd) {
    padding-right: 0;
  }

  .scanner-card {
    display: block;
    min-height: 610px;
    padding: 3rem 1.4rem;
  }

  .scanner-card::before {
    right: -3rem;
    top: auto;
    bottom: 5rem;
    width: 16rem;
    transform: none;
  }

  .scanner-card::after {
    right: 1.4rem;
    bottom: 2.5rem;
    font-size: 0.48rem;
  }

  .scanner-privacy {
    margin-top: 3rem;
  }

  .scanner-panel {
    border: 0;
    border-radius: 0;
  }

  .featured-services-grid {
    display: block;
  }

  .featured-services-grid .service-card,
  .featured-services-grid .service-card:nth-child(n) {
    display: flex;
    min-height: 0;
    margin-bottom: 1.25rem;
    flex-direction: column;
  }

  .featured-services-grid .service-card:nth-child(even) {
    display: flex;
  }

  .featured-services-grid .service-card:nth-child(even) .service-card-image {
    grid-column: auto;
    grid-row: auto;
  }

  .featured-services-grid .service-card-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    order: 0;
  }

  .featured-services-grid .service-card-body {
    padding: 1.5rem 1.35rem 1.7rem;
    order: 1;
  }

  .featured-services-grid .service-card-body h3 {
    font-size: clamp(2.1rem, 9vw, 2.85rem);
  }

  .featured-services-grid .service-card-body p {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .service-directory-grid,
  #local-service-guides .services-grid {
    grid-template-columns: 1fr;
  }

  .service-directory-grid .service-card,
  .service-directory-grid .service-card:nth-child(n),
  #local-service-guides .service-card,
  #local-service-guides .service-card:nth-child(n) {
    min-height: 0;
    border-right: 0;
  }

  .service-directory-grid .service-card-body,
  #local-service-guides .service-card-body {
    padding-inline: 0;
  }

  .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .snapshot-card,
  .snapshot-card:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--premium-line);
  }

  .snapshot-card:last-child {
    border-bottom: 0;
  }

  .studio-trust > .container { grid-template-columns: 1fr; }
  .studio-trust-item { grid-template-columns: 2.5rem minmax(140px, 0.55fr) minmax(0, 1fr); }

  .rewards-grid-split {
    gap: 3rem;
    text-align: left;
  }

  .gift-cards-grid,
  .blog-grid {
    display: block;
  }

  .gift-card,
  .blog-card {
    margin-bottom: 2rem;
  }

  .gift-card {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .gift-card-visual {
    min-height: 100%;
  }

  .blog-card-image,
  .blog-card:first-child .blog-card-image,
  .blog-card:nth-child(2) .blog-card-image {
    aspect-ratio: 16 / 10;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .policy-section .container {
    display: block;
  }

  .policy-toc {
    position: relative;
    top: auto;
    margin-bottom: 3rem;
    padding: 0 1.2rem 1.2rem;
    border: 1px solid var(--premium-line);
    background: rgba(212, 185, 142, 0.07);
  }

  .policy-toc a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .policy-card,
  .policy-card-wide {
    padding-block: 2.8rem;
  }

  .policy-card p,
  .policy-card li {
    font-size: 0.95rem;
  }

  .cta-banner {
    min-height: 420px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .loyalty-container {
    width: calc(100% - 1.5rem);
  }

  .loyalty-hero {
    padding: 3rem 1.5rem;
  }

  .loyalty-hero-art { inset: 0; opacity: 0.34; }
  .loyalty-hero-art::after { background: linear-gradient(180deg, rgba(28,19,17,.5), var(--premium-espresso) 82%); }

  .hero-title {
    margin-top: 2.6rem;
  }

  .loyalty-steps {
    display: grid;
    grid-template-columns: 1fr;
  }

  .step-card,
  .step-card:last-child {
    min-height: 0;
    border-right: 0;
  }

  .reward-journey {
    padding: 2.2rem 1.2rem;
  }

  .reward-journey-header {
    grid-template-columns: 1fr;
  }

  .reward-journey ol {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 1.75rem;
  }

  .reward-journey ol::before {
    display: none;
  }
}

@media (max-width: 480px) {
  h2,
  .section-title {
    font-size: clamp(2.55rem, 13vw, 3.6rem);
  }

  .section-description {
    line-height: 1.72;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .featured-services-grid .service-card,
  .featured-services-grid .service-card:nth-child(n) {
    display: flex;
    min-height: 0;
  }

  .featured-services-grid .service-card-image {
    min-height: 230px;
    order: 0;
  }

  .featured-services-grid .service-card-body {
    order: 1;
  }

  .gift-card {
    display: block;
  }

  .gift-card-editorial { display: block; }
  .gift-card-editorial picture { display: block; min-height: 280px; }
  .gift-card-editorial figcaption { min-height: 190px; }

  .studio-trust-item { grid-template-columns: 2.2rem 1fr; }
  .studio-trust-item p { grid-column: 2; }

  body[data-editorial-family] .page-hero::before { background-image: var(--editorial-hero-image-mobile, var(--editorial-hero-image)); }
  body[data-editorial-family] .page-hero::after { background: linear-gradient(180deg, rgba(24,16,14,.44), rgba(24,16,14,.91)); }
  body[data-editorial-family='head-spa'] { --editorial-hero-image-mobile: url('/images/editorial/head-spa-ritual-v1-720.webp'); }
  body[data-editorial-family='facial'] { --editorial-hero-image-mobile: url('/images/editorial/facial-ritual-v1-720.webp'); }
  body[data-editorial-family='lash-brow'] { --editorial-hero-image-mobile: url('/images/editorial/lash-brow-tools-v1-720.webp'); }
  body[data-editorial-family='nails'] { --editorial-hero-image-mobile: url('/images/editorial/nail-ritual-v1-720.webp'); }
  body[data-editorial-family='makeup'] { --editorial-hero-image-mobile: url('/images/editorial/makeup-ritual-v1-720.webp'); }
  body[data-editorial-family='henna'] { --editorial-hero-image-mobile: url('/images/editorial/henna-ritual-v1-720.webp'); }

  .reviews-grid--sources {
    grid-template-columns: 1fr;
  }

  .trust-source {
    min-height: 260px;
  }

  .trust-source-title {
    font-size: clamp(2.65rem, 11.5vw, 3.2rem);
  }

  .gift-card-visual {
    min-height: 215px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > :not(.footer-brand) {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 250, 244, 0.1);
  }

  .cookie-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100% - 1.5rem);
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions button {
    flex: 1;
  }

  .chat-window {
    width: 100%;
    height: 100%;
    max-height: 100svh;
    border: 0;
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  html {
    /* The root only shows during mobile edge overscroll. Match the terminal
       surface so a rubber-band gesture cannot expose a white/cream strip. */
    background: #17100e;
    overscroll-behavior-y: none;
  }

  body {
    padding-bottom: 0;
    overscroll-behavior-y: none;
  }

  .cta-banner {
    min-height: 340px;
    padding: 4.5rem 1.25rem;
  }

  .footer {
    padding-top: 4rem;
  }

  /* Reserve room inside the dark footer, rather than after it, so the fixed
     booking control never covers the final footer row and the document still
     ends on an intentional surface. */
  body:has(> .sticky-book-bar) .footer,
  body:has(> .sticky-book-cta) .footer {
    padding-bottom: calc(var(--space-lg) + 76px + env(safe-area-inset-bottom, 0px));
  }

  .scroll-top-btn {
    display: none;
  }

  .whatsapp-btn {
    position: fixed;
    inset: auto auto calc(16px + env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    gap: 0;
    border-radius: 50%;
  }

  .whatsapp-btn::after {
    content: none;
  }

  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }

  .sticky-book-bar {
    display: block;
    padding:
      10px max(16px, env(safe-area-inset-right, 0px))
      calc(10px + env(safe-area-inset-bottom, 0px))
      max(16px, env(safe-area-inset-left, 0px));
  }

  body > .sticky-book-cta {
    position: fixed;
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: max(16px, env(safe-area-inset-left, 0px));
    z-index: 2200;
    width: auto;
    margin: 0;
  }

  body:has(> .sticky-book-bar) .whatsapp-btn,
  body:has(> .sticky-book-cta) .whatsapp-btn {
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }

  .chat-widget-btn {
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    width: 52px;
    height: 52px;
  }

  .has-sticky-book-bar .chat-widget-btn,
  body:has(> .sticky-book-cta) .chat-widget-btn {
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }

  .reveal-ready .section-padding :where(.fade-in, .fade-in-left, .fade-in-right) {
    opacity: 1;
    transform: none;
  }

  .hero-video,
  .scanner-card::before,
  .rewards-card-preview {
    animation: none;
    transform: none;
  }
}

@media (forced-colors: active) {
  .btn,
  .gift-card,
  .featured-services-grid .service-card,
  .scanner-card,
  .policy-toc {
    border: 1px solid CanvasText;
  }
}
