/* ============================================================
   LUMIÈRE SKIN & LASER — Concept site by De Villa Design
   Aesthetic: Luxe minimal editorial
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --porcelain:  #FAF7F2;
  --charcoal:   #26221E;
  --champagne:  #A88146;   /* display / decorative only */
  --gold-body:  #6E5029;   /* body-size accent — 6.91:1 on #FAF7F2, 5.38:1 on blush — AA pass both */
  --blush:      #EAD9CD;
  --blush-dark: #D4BFB0;
  --ink-muted:  #5C544D;   /* secondary body text */

  --ff-display: 'Cormorant', Georgia, 'Times New Roman', serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --max-w: 1280px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

body {
  background-color: var(--porcelain);
  color: var(--charcoal);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ---------- FONTS ---------- */
@font-face {
  font-family: 'Cormorant';
  src: url('/fonts/cormorant-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant';
  src: url('/fonts/cormorant-italic-500.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- TYPOGRAPHY SCALE ---------- */
.display-xl {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.display-md {
  font-family: var(--ff-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.label {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-body);
}

.body-lg {
  font-size: 1.0625rem;
  line-height: 1.75;
}

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

.hairline {
  border: none;
  border-top: 1px solid var(--blush-dark);
  opacity: 0.7;
}

.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;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--gold-body);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.875rem 2rem;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--porcelain);
  border-color: var(--charcoal);
}

.btn-primary:hover {
  background: #3a342e;
  border-color: #3a342e;
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--porcelain);
}

.btn-gold {
  background: var(--gold-body);
  color: var(--porcelain);
  border-color: var(--gold-body);
}

.btn-gold:hover {
  background: #5c4020;
  border-color: #5c4020;
}

.btn-ghost-light {
  background: transparent;
  color: var(--porcelain);
  border-color: rgba(250, 247, 242, 0.5);
}

.btn-ghost-light:hover {
  background: rgba(250, 247, 242, 0.12);
  border-color: var(--porcelain);
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 1.125rem;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--blush-dark);
  padding-block: 0.875rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: 0.02em;
  color: var(--porcelain);
  transition: color var(--transition);
  flex-shrink: 0;
}

.site-header.scrolled .wordmark {
  color: var(--charcoal);
}

.wordmark .accent-char {
  color: var(--champagne);
}

.site-header.scrolled .wordmark .accent-char {
  color: var(--champagne);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--porcelain);
}

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

.site-header.scrolled .nav-links a:hover {
  color: var(--charcoal);
}

.header-cta .btn {
  font-size: 0.75rem;
  padding: 0.6875rem 1.5rem;
  background: transparent;
  color: var(--porcelain);
  border-color: rgba(250, 247, 242, 0.6);
}

.header-cta .btn:hover {
  background: var(--porcelain);
  color: var(--charcoal);
  border-color: var(--porcelain);
}

.site-header.scrolled .header-cta .btn {
  background: var(--charcoal);
  color: var(--porcelain);
  border-color: var(--charcoal);
}

.site-header.scrolled .header-cta .btn:hover {
  background: #3a342e;
  border-color: #3a342e;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--porcelain);
  transition: color var(--transition);
}

.site-header.scrolled .menu-toggle {
  color: var(--charcoal);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile drawer is hidden everywhere by default; the 600px media query
   re-enables it as an off-canvas panel */
.nav-mobile {
  display: none;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Layered gradient overlay for editorial feel */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(38, 34, 30, 0.45) 0%,
      rgba(38, 34, 30, 0.3) 40%,
      rgba(38, 34, 30, 0.65) 100%
    );
}

/* Subtle grain texture */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 12vh 8vh;
  padding-top: calc(80px + 10vh);
}

.hero-eyebrow {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-eyebrow .label {
  color: rgba(168, 129, 70, 0.95);
}

/* Animated hairline rule above eyebrow */
.hero-rule {
  display: block;
  width: 0;
  height: 1px;
  background: rgba(168, 129, 70, 0.7);
  margin-bottom: 0.75rem;
  animation: expandWidth 0.8s 0.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-heading {
  color: var(--porcelain);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  max-width: 14ch;
}

.hero-heading em {
  font-style: italic;
  color: rgba(168, 129, 70, 0.95);
}

.hero-subhead {
  color: rgba(250, 247, 242, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  line-height: 1.6;
  max-width: 42ch;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Hero offer panel */
.hero-offer {
  background: rgba(250, 247, 242, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(250, 247, 242, 0.2);
  border-left: 2px solid var(--champagne);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-offer-label {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.375rem;
}

.hero-offer-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--porcelain);
  margin-bottom: 0.25rem;
}

.hero-offer-desc {
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.78);
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--gutter);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.2s ease forwards;
}

.hero-scroll span {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(250, 247, 242, 0.25);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--champagne);
  animation: scrollDrop 2s 1.5s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { top: -100%; }
  100% { top: 100%; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes expandWidth {
  to { width: 60px; }
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--charcoal);
  padding-block: 1.125rem;
  overflow: hidden;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-inline: 2rem;
  position: relative;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.75);
  white-space: nowrap;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.25em;
  background: rgba(250, 247, 242, 0.2);
}

.trust-icon {
  color: var(--champagne);
  flex-shrink: 0;
}

/* ---------- SECTION SHARED ---------- */
section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header .label {
  display: block;
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 48ch;
  color: var(--ink-muted);
}

/* Two-col layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.split-layout.reverse {
  direction: rtl;
}

.split-layout.reverse > * {
  direction: ltr;
}

/* ---------- TREATMENTS ---------- */
.treatments {
  background: var(--porcelain);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--blush-dark);
  border: 1px solid var(--blush-dark);
}

.treatment-card {
  background: var(--porcelain);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--champagne);
  transition: height var(--transition-slow);
}

.treatment-card:hover {
  background: #FEFCF9;
}

.treatment-card:hover::before {
  height: 100%;
}

.treatment-number {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 3rem;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.treatment-card:hover .treatment-number {
  color: rgba(168, 129, 70, 0.25);
}

.treatment-name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.treatment-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.treatment-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-from {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.price-amount {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--gold-body);
}

.price-note {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.treatment-consult-note {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--ink-muted);
  margin-top: 0.5rem;
}

.treatments-footer {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blush-dark);
}

.treatments-footer p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  max-width: 44ch;
}

/* ---------- ABOUT / WHY ---------- */
.about {
  background: var(--blush);
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: relative;
  overflow: hidden;
}

.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(234, 217, 205, 0.4) 100%);
}

.about-image-frame img {
  width: 100%;
  height: clamp(420px, 55vw, 680px);
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Decorative frame accent */
.about-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 1px solid var(--blush-dark);
  z-index: -1;
  pointer-events: none;
}

.about-content {
  padding-block: 1rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-ethos {
  margin-bottom: 2rem;
}

.about-ethos p {
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.about-ethos p:last-child {
  margin-bottom: 0;
}

/* Team list */
.team-list {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blush-dark);
}

.team-list-title {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-body);
  margin-bottom: 1.25rem;
}

.team-members {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.team-member {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--blush-dark);
}

.team-member:last-child {
  border-bottom: none;
}

.member-name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--charcoal);
  flex-shrink: 0;
}

.member-role {
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

.consult-callout {
  background: rgba(38, 34, 30, 0.05);
  border-left: 2px solid var(--champagne);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-style: italic;
  line-height: 1.6;
}

/* ---------- TESTIMONIAL ---------- */
.testimonial-section {
  background: var(--charcoal);
  padding-block: clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.testimonial-section::before {
  content: '"';
  position: absolute;
  top: -0.2em;
  left: var(--gutter);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(8rem, 18vw, 18rem);
  line-height: 1;
  color: rgba(168, 129, 70, 0.08);
  pointer-events: none;
  user-select: none;
}

.testimonial-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.testimonial-quote {
  font-family: var(--ff-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.35;
  color: var(--porcelain);
  margin-bottom: 2rem;
}

.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-line {
  width: 40px;
  height: 1px;
  background: var(--champagne);
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.6);
}

/* ---------- CONTACT ---------- */
.contact {
  background: var(--porcelain);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-detail {
  display: flex;
  gap: 1.25rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--blush-dark);
}

.contact-detail:first-child {
  padding-top: 0;
}

.detail-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-body);
  min-width: 4.5rem;
  padding-top: 0.125rem;
  flex-shrink: 0;
}

.detail-value {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.detail-value a {
  transition: color var(--transition);
}

.detail-value a:hover {
  color: var(--gold-body);
}

.contact-cta-panel {
  background: var(--blush);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--blush-dark);
  position: sticky;
  top: 100px;
}

.contact-cta-panel .label {
  display: block;
  margin-bottom: 1rem;
}

.contact-cta-panel h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.contact-cta-panel p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.contact-cta-panel .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.contact-note {
  font-size: 0.75rem;
  color: var(--ink-muted);
  text-align: center;
  font-style: italic;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--charcoal);
  padding-block: 2.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-wordmark {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: rgba(250, 247, 242, 0.5);
}

.footer-legal {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.35);
  text-align: center;
}

.footer-legal a {
  color: rgba(250, 247, 242, 0.55);
  text-decoration: underline;
  text-decoration-color: rgba(250, 247, 242, 0.25);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(250, 247, 242, 0.8);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.25);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ---------- CONCEPT BADGE ---------- */
.concept-badge {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 999;
  background: var(--charcoal);
  color: rgba(250, 247, 242, 0.75);
  font-size: 0.6875rem;
  font-family: var(--ff-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.875rem;
  border-radius: 100px;
  border: 1px solid rgba(250, 247, 242, 0.12);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.concept-badge:hover {
  background: var(--charcoal);
  color: var(--porcelain);
  border-color: rgba(250, 247, 242, 0.3);
}

/* ---------- RESPONSIVE — TABLET 768px ---------- */
@media (max-width: 900px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse {
    direction: ltr;
  }

  .about-image-accent {
    display: none;
  }

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

  .contact-cta-panel {
    position: static;
  }
}

/* ---------- RESPONSIVE — MOBILE 375px ---------- */
@media (max-width: 600px) {
  :root {
    --gutter: 1.25rem;
  }

  .site-nav .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--charcoal);
    padding: 6rem 2rem 3rem;
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .nav-mobile.open {
    transform: translateX(0);
  }

  .nav-mobile a {
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 2.25rem;
    color: var(--porcelain);
    padding-block: 0.75rem;
    border-bottom: 1px solid rgba(250, 247, 242, 0.1);
    display: block;
    transition: color var(--transition);
  }

  .nav-mobile a:hover {
    color: var(--champagne);
  }

  .nav-mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--porcelain);
    cursor: pointer;
    padding: 0.25rem;
  }

  .nav-mobile-close svg {
    width: 24px;
    height: 24px;
  }

  .nav-mobile-cta {
    margin-top: 2rem;
  }

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

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

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

  .trust-inner {
    gap: 0;
    justify-content: flex-start;
  }

  .trust-item {
    padding-inline: 1.25rem;
  }

  .trust-item:nth-child(n+3) {
    padding-top: 0.75rem;
  }

  .treatments-footer {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-scroll {
    display: none;
  }

  .contact-cta-panel .btn {
    font-size: 0.75rem;
  }
}

/* ---------- HEADER SCROLLED — DARK PAGES ---------- */
@media (prefers-color-scheme: dark) {
  /* Intentionally NOT inverting — brand uses fixed light palette */
}
