/* ═══════════════════════════════════════════════════════════════
   VELOURA SKIN STUDIO — Design System
   Premium beauty brand CSS — zero template dependency
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Color System — warm neutral palette */
  --color-ivory:       #FAF7F2;
  --color-bone:        #F5F0E8;
  --color-cream:       #EFE8DC;
  --color-taupe:       #E0D5C6;
  --color-sand:        #D4C5B2;
  --color-stone:       #B8A898;
  --color-warm-gray:   #9A8E80;
  --color-bronze:      #7A6A5A;
  --color-espresso:    #3E2F23;
  --color-charcoal:    #2C2C2C;
  --color-near-black:  #1A1A1A;
  --color-white:       #FFFFFF;

  /* Accent — used sparingly */
  --color-dust-rose:   #C9A9A0;
  --color-gold:        #C5A97A;
  --color-olive:       #8A8B7A;

  /* Semantic */
  --color-bg:          var(--color-ivory);
  --color-bg-alt:      var(--color-bone);
  --color-bg-dark:     var(--color-espresso);
  --color-text:        var(--color-charcoal);
  --color-text-light:  var(--color-bronze);
  --color-text-on-dark: var(--color-cream);
  --color-heading:     var(--color-near-black);
  --color-border:      var(--color-taupe);
  --color-border-light: rgba(0,0,0,0.06);
  --color-accent:      var(--color-espresso);

  /* Typography */
  --ff-display:  'Cormorant Garamond', 'Georgia', serif;
  --ff-body:     'Inter', -apple-system, 'Segoe UI', sans-serif;
  --ff-mono:     'JetBrains Mono', monospace;

  --fs-xs:    0.75rem;     /* 12px */
  --fs-sm:    0.875rem;    /* 14px */
  --fs-base:  1rem;        /* 16px */
  --fs-md:    1.125rem;    /* 18px */
  --fs-lg:    1.25rem;     /* 20px */
  --fs-xl:    1.5rem;      /* 24px */
  --fs-2xl:   2rem;        /* 32px */
  --fs-3xl:   2.5rem;      /* 40px */
  --fs-4xl:   3.25rem;     /* 52px */
  --fs-5xl:   4rem;        /* 64px */
  --fs-6xl:   5rem;        /* 80px */

  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;

  --lh-tight:    1.15;
  --lh-snug:     1.3;
  --lh-normal:   1.6;
  --lh-relaxed:  1.75;

  --ls-tight:   -0.02em;
  --ls-normal:   0;
  --ls-wide:     0.05em;
  --ls-wider:    0.1em;
  --ls-widest:   0.2em;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   0.75rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-5xl:  8rem;
  --space-6xl:  10rem;

  /* Section spacing */
  --section-pad:     clamp(4rem, 8vw, 8rem);
  --section-pad-lg:  clamp(5rem, 10vw, 10rem);

  /* Layout */
  --container-max:   1280px;
  --container-wide:  1440px;
  --container-narrow: 720px;
  --gutter:          clamp(1.5rem, 4vw, 3rem);

  /* Borders & Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --radius-full: 9999px;

  /* Shadows — layered for depth */
  --shadow-sm:   0 1px 2px rgba(0,0,0,0.03), 0 2px 4px rgba(0,0,0,0.03);
  --shadow-md:   0 2px 4px rgba(0,0,0,0.03), 0 6px 16px rgba(0,0,0,0.05);
  --shadow-lg:   0 4px 8px rgba(0,0,0,0.03), 0 12px 36px rgba(0,0,0,0.07);
  --shadow-xl:   0 8px 16px rgba(0,0,0,0.04), 0 24px 60px rgba(0,0,0,0.09);
  --shadow-card: 0 1px 2px rgba(0,0,0,0.02), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 4px 8px rgba(0,0,0,0.03), 0 16px 40px rgba(0,0,0,0.07);

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast:   200ms;
  --duration-normal: 450ms;
  --duration-slow:   800ms;

  /* Z-index */
  --z-nav:     1000;
  --z-sticky:  900;
  --z-overlay: 1100;
  --z-modal:   1200;
}


/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
  hanging-punctuation: first last;
}
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { font-weight: var(--fw-regular); line-height: var(--lh-tight); }
::selection { background: var(--color-sand); color: var(--color-espresso); }


/* ─── Typography ────────────────────────────────────────────── */
.display-xl {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5.5vw, var(--fs-6xl));
  font-weight: var(--fw-light);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-heading);
  text-wrap: balance;
}
.display-lg {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, var(--fs-5xl));
  font-weight: var(--fw-light);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-heading);
  text-wrap: balance;
}
.display-md {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, var(--fs-4xl));
  font-weight: var(--fw-regular);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--color-heading);
  text-wrap: balance;
}
.heading-lg {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, var(--fs-3xl));
  font-weight: var(--fw-regular);
  line-height: var(--lh-snug);
  color: var(--color-heading);
}
.heading-md {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2vw, var(--fs-2xl));
  font-weight: var(--fw-regular);
  line-height: var(--lh-snug);
  color: var(--color-heading);
}
.heading-sm {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  line-height: var(--lh-snug);
  color: var(--color-heading);
}
.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-bronze);
}
.body-lg {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-text-light);
}
.body-sm {
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  color: var(--color-text-light);
}
.caption {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  color: var(--color-warm-gray);
}


/* ─── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide {
  max-width: var(--container-wide);
}
.container--narrow {
  max-width: var(--container-narrow);
}
.section {
  padding-block: var(--section-pad);
}
.section--lg {
  padding-block: var(--section-pad-lg);
}
.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}
.section--dark .eyebrow { color: var(--color-sand); }
.section--dark .display-lg,
.section--dark .display-md,
.section--dark .heading-lg,
.section--dark .heading-md,
.section--dark .heading-sm { color: var(--color-cream); }
.section--dark .body-lg { color: var(--color-stone); }
.section--alt {
  background-color: var(--color-bg-alt);
}
.grid {
  display: grid;
  gap: var(--gutter);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2-1 { grid-template-columns: 2fr 1fr; }
.grid--1-2 { grid-template-columns: 1fr 2fr; }
.grid--5-7 { grid-template-columns: 5fr 7fr; }
.grid--7-5 { grid-template-columns: 7fr 5fr; }
.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--col { flex-direction: column; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.max-w-narrow { max-width: var(--container-narrow); }
.max-w-md { max-width: 560px; }


/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.4rem;
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-premium);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}
.btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}
.btn--primary {
  background-color: var(--color-espresso);
  color: var(--color-cream);
  border-color: var(--color-espresso);
}
.btn--primary:hover {
  background-color: #2a1f16;
  border-color: #2a1f16;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--secondary {
  background-color: transparent;
  color: var(--color-espresso);
  border-color: var(--color-espresso);
}
.btn--secondary:hover {
  background-color: var(--color-espresso);
  color: var(--color-cream);
}
.btn--ghost {
  background-color: transparent;
  color: var(--color-cream);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn--light {
  background-color: var(--color-cream);
  color: var(--color-espresso);
  border-color: var(--color-cream);
}
.btn--light:hover {
  background-color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--sm {
  padding: 0.65rem 1.5rem;
  font-size: 0.6875rem;
}
.btn--lg {
  padding: 1.15rem 3rem;
  font-size: 0.8125rem;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-espresso);
  transition: gap var(--duration-normal) var(--ease-out);
}
.link-arrow::after {
  content: '\2192';
  transition: transform var(--duration-normal) var(--ease-out);
}
.link-arrow:hover { gap: 0.75rem; }
.link-arrow:hover::after { transform: translateX(2px); }
.section--dark .link-arrow { color: var(--color-sand); }


/* ─── Announcement Bar ──────────────────────────────────────── */
.announcement-bar {
  background-color: var(--color-espresso);
  color: var(--color-cream);
  padding: 0.6rem 0;
  text-align: center;
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  position: relative;
  z-index: calc(var(--z-nav) + 1);
}
.announcement-bar a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.announcement-bar a:hover { color: var(--color-cream); }


/* ─── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  transition: all var(--duration-normal) var(--ease-out);
}
.nav--has-announcement { top: 33px; }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  transition: padding var(--duration-normal) var(--ease-out);
}
.nav--scrolled .nav__inner { padding: 0.7rem 0; }
.nav__bg {
  position: absolute;
  inset: 0;
  background-color: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-premium);
}
.nav--scrolled .nav__bg { opacity: 1; }
.nav__logo {
  position: relative;
  z-index: 2;
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: var(--fw-light);
  letter-spacing: var(--ls-wide);
  color: var(--color-espresso);
}
.nav__logo span { font-weight: var(--fw-semibold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 2;
}
.nav__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide);
  color: var(--color-text);
  position: relative;
  transition: color var(--duration-fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-espresso);
  transition: width var(--duration-normal) var(--ease-out);
}
.nav__link:hover::after,
.nav__link--active::after { width: 100%; }
.nav__cta {
  position: relative;
  z-index: 2;
}
.nav__mobile-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__mobile-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-espresso);
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}
.nav__mobile-toggle--open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__mobile-toggle--open span:nth-child(2) { opacity: 0; }
.nav__mobile-toggle--open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Nav Overlay */
.nav__mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--color-ivory);
  z-index: calc(var(--z-nav) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-slow) var(--ease-out);
}
.nav__mobile-menu--open {
  opacity: 1;
  visibility: visible;
}
.nav__mobile-menu a {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-light);
  color: var(--color-espresso);
  transition: opacity var(--duration-fast);
}
.nav__mobile-menu a:hover { opacity: 0.6; }


/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(26, 18, 12, 0.72) 0%,
      rgba(26, 18, 12, 0.45) 35%,
      rgba(26, 18, 12, 0.18) 70%,
      rgba(26, 18, 12, 0.25) 100%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      transparent 50%,
      rgba(26, 18, 12, 0.15) 100%
    );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  color: var(--color-cream);
  padding-bottom: 4vh;
}
.hero__eyebrow {
  color: var(--color-sand);
  margin-bottom: var(--space-xl);
  opacity: 0.85;
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  font-weight: var(--fw-light);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: var(--space-xl);
  text-wrap: balance;
}
.hero__subtitle {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: var(--space-2xl);
}
.hero__actions {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.hero__supporting {
  margin-top: var(--space-3xl);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.06em;
}
/* Page Hero (inner pages) */
.hero--page {
  min-height: 50vh;
  padding-top: 8rem;
}
.hero--page .hero__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}


/* ─── Trust Strip / Credibility Bar ─────────────────────────── */
.trust-strip {
  background-color: var(--color-bg-alt);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border-light);
}
.trust-strip__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  color: var(--color-bronze);
  letter-spacing: var(--ls-wide);
  white-space: nowrap;
}
.trust-strip__icon {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}
.trust-strip__divider {
  width: 1px;
  height: 20px;
  background-color: var(--color-taupe);
}


/* ─── Section Headers ───────────────────────────────────────── */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header--center {
  text-align: center;
}
.section-header--center .section-header__body {
  margin-inline: auto;
}
.section-header .eyebrow {
  margin-bottom: var(--space-lg);
}
.section-header__title {
  margin-bottom: var(--space-lg);
}
.section-header__body {
  max-width: 560px;
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  font-size: var(--fs-sm);
}


/* ─── Service Cards ─────────────────────────────────────────── */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform var(--duration-normal) var(--ease-premium),
              box-shadow var(--duration-normal) var(--ease-premium);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.service-card:focus-within {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}
.service-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-premium);
}
.service-card:hover .service-card__image img {
  transform: scale(1.025);
}
.service-card__body {
  padding: var(--space-xl) var(--space-xl);
}
.service-card__eyebrow {
  margin-bottom: var(--space-sm);
}
.service-card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  color: var(--color-heading);
}
.service-card__text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}
.service-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
  font-size: var(--fs-xs);
  color: var(--color-warm-gray);
  letter-spacing: var(--ls-wide);
}


/* ─── Treatment List Items ──────────────────────────────────── */
.treatment-item {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border-light);
}
.treatment-item:first-child {
  padding-top: 0;
}
.treatment-item__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.treatment-item__name {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  color: var(--color-heading);
}
.treatment-item__price {
  font-size: var(--fs-sm);
  color: var(--color-bronze);
  letter-spacing: var(--ls-wide);
  white-space: nowrap;
}
.treatment-item__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  max-width: 640px;
  margin-bottom: var(--space-md);
}
.treatment-item__tags {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}
.treatment-item__tag {
  padding: 0.25rem 0.75rem;
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  color: var(--color-bronze);
  background-color: var(--color-bone);
  border-radius: var(--radius-full);
}
.treatment-item__footer {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  font-size: var(--fs-xs);
  color: var(--color-warm-gray);
  letter-spacing: var(--ls-wide);
}


/* ─── Why / Feature Grid ────────────────────────────────────── */
.feature {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.feature__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-espresso);
}
.feature__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.2;
}
.feature__title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  color: var(--color-heading);
}
.feature__text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}


/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials__track {
  display: flex;
  gap: var(--gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-md);
}
.testimonials__track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 min(100%, 400px);
  scroll-snap-align: start;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-lg);
  color: var(--color-gold);
  font-size: var(--fs-sm);
}
.testimonial-card__quote {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-style: italic;
  line-height: var(--lh-normal);
  color: var(--color-heading);
  margin-bottom: var(--space-lg);
}
.testimonial-card__author {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-espresso);
}
.testimonial-card__detail {
  font-size: var(--fs-xs);
  color: var(--color-warm-gray);
  margin-top: 0.25rem;
}
.testimonial-large {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}
.testimonial-large__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, var(--fs-2xl));
  font-style: italic;
  line-height: var(--lh-snug);
  color: var(--color-heading);
  margin-bottom: var(--space-xl);
}
.testimonial-large__mark {
  font-family: var(--ff-display);
  font-size: var(--fs-5xl);
  line-height: 1;
  color: var(--color-sand);
  margin-bottom: var(--space-md);
}


/* ─── Stats / Metrics ───────────────────────────────────────── */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat__number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, var(--fs-4xl));
  font-weight: var(--fw-light);
  color: var(--color-heading);
  line-height: 1;
}
.section--dark .stat__number { color: var(--color-cream); }
.stat__label {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-warm-gray);
  margin-top: var(--space-xs);
}
.section--dark .stat__label { color: var(--color-stone); }


/* ─── Membership Cards ──────────────────────────────────────── */
.membership-card {
  padding: clamp(2rem, 3vw, 2.5rem) clamp(1.5rem, 2.5vw, 2rem);
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform var(--duration-normal) var(--ease-premium),
              box-shadow var(--duration-normal) var(--ease-premium);
}
.membership-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.membership-card--featured {
  border-color: var(--color-espresso);
  background: linear-gradient(170deg, #4a3828 0%, var(--color-espresso) 40%, #2a1f16 100%);
  color: var(--color-cream);
  box-shadow: var(--shadow-lg);
}
.membership-card--featured .membership-card__price,
.membership-card--featured .membership-card__name { color: var(--color-cream); }
.membership-card--featured .membership-card__benefit { color: var(--color-stone); }
.membership-card--featured .membership-card__ideal { color: var(--color-stone); }
.membership-card__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background-color: var(--color-gold);
  color: var(--color-espresso);
  margin-bottom: var(--space-lg);
  align-self: flex-start;
}
.membership-card__name {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  color: var(--color-heading);
  margin-bottom: var(--space-xs);
}
.membership-card__price {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  color: var(--color-heading);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}
.membership-card__price span {
  font-size: var(--fs-sm);
  font-family: var(--ff-body);
  color: var(--color-warm-gray);
}
.membership-card--featured .membership-card__price span { color: var(--color-stone); }
.membership-card__ideal {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border-light);
}
.membership-card--featured .membership-card__ideal { border-color: rgba(255,255,255,0.15); }
.membership-card__benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}
.membership-card__benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-normal);
}
.membership-card__benefit::before {
  content: '\2713';
  flex-shrink: 0;
  color: var(--color-gold);
  font-weight: var(--fw-semibold);
  margin-top: 1px;
}
.membership-card--featured .membership-card__benefit::before { color: var(--color-gold); }
.membership-card .btn { width: 100%; }


/* ─── Split Section (image + text) ──────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--reverse .split__image { order: 2; }
.split--reverse .split__content { order: 1; }
.split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-premium);
}
.split:hover .split__image img {
  transform: scale(1.015);
}
.split__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}


/* ─── Experience Steps ──────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  counter-reset: step;
}
.step {
  counter-increment: step;
  position: relative;
  padding-top: var(--space-2xl);
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-light);
  color: var(--color-sand);
  line-height: 1;
}
.step__title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  color: var(--color-heading);
  margin-bottom: var(--space-sm);
}
.step__text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}


/* ─── FAQ Accordion ─────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}
.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) 0;
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  color: var(--color-heading);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-fast);
}
.faq-item__trigger:hover { color: var(--color-bronze); }
.faq-item__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: var(--space-lg);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-bronze);
  transition: transform var(--duration-normal) var(--ease-out);
}
.faq-item__icon::before {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 1px;
}
.faq-item__icon::after {
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 1px;
}
.faq-item--open .faq-item__icon::after { transform: rotate(90deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}
.faq-item__answer-inner {
  padding-bottom: var(--space-xl);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  max-width: 640px;
}


/* ─── Forms ─────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.form-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-bronze);
}
.form-input,
.form-textarea,
.form-select {
  padding: 0.95rem 1.1rem;
  font-size: var(--fs-sm);
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 2px;
  transition: border-color var(--duration-normal) var(--ease-premium),
              box-shadow var(--duration-normal) var(--ease-premium);
  outline: none;
}
.form-input:hover,
.form-textarea:hover,
.form-select:hover {
  border-color: var(--color-stone);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-espresso);
  box-shadow: 0 0 0 3px rgba(62, 47, 35, 0.06);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-stone);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}


/* ─── Booking Widget CTA ────────────────────────────────────── */
.booking-cta {
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  background: linear-gradient(
    175deg,
    var(--color-bone) 0%,
    #EDE5D8 40%,
    var(--color-cream) 100%
  );
  position: relative;
}
.booking-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-sand), transparent);
}
.booking-cta__title {
  margin-bottom: var(--space-md);
}
.booking-cta__subtitle {
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
  color: var(--color-text-light);
}
.booking-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}


/* ─── Journal / Blog Cards ──────────────────────────────────── */
.journal-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-white);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}
.journal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.journal-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.journal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.journal-card:hover .journal-card__image img {
  transform: scale(1.03);
}
.journal-card__body {
  padding: var(--space-lg);
}
.journal-card__category {
  margin-bottom: var(--space-sm);
}
.journal-card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  color: var(--color-heading);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-snug);
}
.journal-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}


/* ─── Proof / Credential Strip ──────────────────────────────── */
.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  padding: var(--space-xl) 0;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}
.proof-item__icon {
  font-size: var(--fs-xl);
  color: var(--color-gold);
}
.proof-item__text {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  color: var(--color-warm-gray);
  text-transform: uppercase;
}


/* ─── Review Summary Bar ────────────────────────────────────── */
.review-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  max-width: 600px;
  margin-inline: auto;
}
.review-bar__score {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  color: var(--color-heading);
  line-height: 1;
}
.review-bar__stars {
  color: var(--color-gold);
  font-size: var(--fs-md);
  letter-spacing: 2px;
}
.review-bar__count {
  font-size: var(--fs-sm);
  color: var(--color-warm-gray);
}


/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background-color: var(--color-espresso);
  color: var(--color-stone);
  padding-top: var(--section-pad);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gutter);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand {
  max-width: 300px;
}
.footer__logo {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  color: var(--color-cream);
  margin-bottom: var(--space-lg);
}
.footer__logo span { font-weight: var(--fw-semibold); }
.footer__desc {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}
.footer__social {
  display: flex;
  gap: var(--space-md);
}
.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  color: var(--color-stone);
  font-size: var(--fs-sm);
  transition: all var(--duration-fast);
}
.footer__social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.footer__heading {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: var(--space-lg);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer__links a {
  font-size: var(--fs-sm);
  color: var(--color-stone);
  transition: color var(--duration-fast);
}
.footer__links a:hover { color: var(--color-cream); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) 0;
  font-size: var(--fs-xs);
  color: var(--color-warm-gray);
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer__policies {
  display: flex;
  gap: var(--space-lg);
}
.footer__policies a {
  color: var(--color-warm-gray);
  transition: color var(--duration-fast);
}
.footer__policies a:hover { color: var(--color-cream); }


/* ─── Sticky Mobile CTA ────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-md) var(--gutter);
  background-color: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid var(--color-border-light);
  display: none;
  transform: translateY(100%);
  transition: transform var(--duration-normal) var(--ease-out);
}
.sticky-cta--visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }


/* ─── Scroll Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-premium),
              transform 0.9s var(--ease-premium);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease-premium),
              transform 0.8s var(--ease-premium);
}
.stagger--visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ─── Dividers & Spacers ────────────────────────────────────── */
.divider {
  width: 48px;
  height: 1px;
  background-color: var(--color-sand);
  margin-block: var(--space-lg);
}
.divider--center { margin-inline: auto; }
.spacer-sm { height: var(--space-xl); }
.spacer-md { height: var(--space-3xl); }
.spacer-lg { height: var(--space-5xl); }


/* ─── Image Treatments ──────────────────────────────────────── */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-rounded { border-radius: var(--radius-md); }
.img-rounded-lg { border-radius: var(--radius-lg); }
.aspect-portrait { aspect-ratio: 3/4; }
.aspect-landscape { aspect-ratio: 16/10; }
.aspect-square { aspect-ratio: 1/1; }


/* ─── Contact Info Block ────────────────────────────────────── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.contact-info__item {
  display: flex;
  gap: var(--space-md);
}
.contact-info__icon {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-warm-gray);
  margin-bottom: 0.25rem;
}
.contact-info__value {
  font-size: var(--fs-sm);
  color: var(--color-text);
  line-height: var(--lh-normal);
}
.contact-info__value a { transition: color var(--duration-fast); }
.contact-info__value a:hover { color: var(--color-espresso); }


/* ─── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-lg);
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--duration-fast); }
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb__sep { opacity: 0.4; }


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1199px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
}

@media (max-width: 991px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__mobile-toggle { display: flex; }
  .sticky-cta { display: block; }

  .grid--2, .grid--3, .grid--5-7, .grid--7-5, .grid--2-1, .grid--1-2 {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .split--reverse .split__image { order: 0; }
  .split--reverse .split__content { order: 0; }
  .split__image { aspect-ratio: 16/10; }

  .hero { min-height: 85vh; }
  .hero__title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero--page { min-height: 40vh; padding-top: 6rem; }
}

@media (max-width: 767px) {
  :root {
    --section-pad: clamp(3rem, 8vw, 5rem);
  }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .stats-row { gap: var(--space-2xl); }
  .trust-strip__divider { display: none; }
  .trust-strip__items { gap: var(--space-md); flex-direction: column; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .membership-card { padding: var(--space-xl) var(--space-lg); }

  .testimonial-card {
    flex: 0 0 85vw;
  }
}

@media (max-width: 480px) {
  .hero { min-height: 90vh; }
  .hero--page { min-height: 35vh; }
  .nav__logo { font-size: 1.2rem; }
}


/* ─── Premium Polish Layer ──────────────────────────────────── */

/* Subtle section dividers */
.section + .section--alt,
.section--alt + .section {
  border-top: 1px solid rgba(0,0,0,0.03);
}

/* Refined divider element */
.divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-sand), transparent);
  margin-block: var(--space-lg);
}

/* Trust strip refinement */
.trust-strip {
  padding: 1.4rem 0;
}
.trust-strip__item {
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
}

/* Feature icon refinement */
.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-bone);
}

/* Step counter refinement */
.step::before {
  opacity: 0.4;
}
.step {
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
}

/* Proof strip refinement */
.proof-item__icon {
  font-size: var(--fs-sm);
  opacity: 0.5;
}

/* Footer refinement */
.footer {
  padding-top: clamp(4rem, 7vw, 6rem);
}
.footer__top {
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

/* Link arrow refinement */
.link-arrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* Announcement bar refinement */
.announcement-bar {
  padding: 0.55rem 0;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
}

/* FAQ trigger refinement */
.faq-item__trigger {
  padding: 1.4rem 0;
  font-size: 1.2rem;
}

/* Body copy refinement for split sections */
.split__content .body-lg {
  font-size: 1rem;
  line-height: 1.7;
}
.split__content .body-sm {
  line-height: 1.7;
}

/* Page hero refinement */
.hero--page {
  min-height: 48vh;
  padding-top: 9rem;
  padding-bottom: 4rem;
}

/* Stats refinement */
.stat__number {
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

/* Membership price refinement */
.membership-card__price {
  letter-spacing: -0.02em;
}

/* Review bar refinement */
.review-bar {
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
}

/* Scrollbar styling */
@supports (scrollbar-width: thin) {
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-taupe) transparent;
  }
}

/* Selection refinement */
::selection {
  background: rgba(197, 169, 122, 0.25);
  color: var(--color-espresso);
}

/* Image loading fade-in */
img[data-fade] {
  opacity: 0;
  transition: opacity 0.6s var(--ease-premium);
}
img[data-fade].loaded {
  opacity: 1;
}

/* Better mobile menu */
.nav__mobile-menu {
  gap: clamp(1.5rem, 4vh, 2.5rem);
}
.nav__mobile-menu a {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  letter-spacing: -0.01em;
}

/* Sticky CTA refinement */
.sticky-cta {
  padding: 0.85rem var(--gutter);
  background-color: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
}


/* ─── Print ─────────────────────────────────────────────────── */
@media print {
  .nav, .sticky-cta, .announcement-bar { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  .section { padding-block: 2rem; }
  body { color: #000; background: #fff; }
}
