/* =========================================================
   Face Lounge Aesthetics — Scottsdale Luxury Med Spa
   Palette: luxe blush / champagne / charcoal
   ========================================================= */

:root {
  /* Core palette */
  --charcoal:        #211c1f;
  --charcoal-deep:   #18141680;
  --charcoal-soft:   #2c2528;
  --ink:             #322a2d;

  --blush:           #f3d9cd;
  --blush-soft:      #f9ebe3;
  --blush-deep:      #e3a98e;
  --rose:            #d98c75;

  --champagne:       #d8b78a;
  --champagne-light: #ecd6b4;
  --gold:            #c79f63;
  --gold-bright:     #e2c489;

  --cream:           #fbf6f1;
  --cream-2:         #f6ede5;
  --paper:           #fffaf6;

  --text:            #3a3033;
  --text-soft:       #6f6064;
  --text-faint:      #978589;
  --on-dark:         #f4e7df;
  --on-dark-soft:    #cbb6ad;

  --line:            #ece0d6;
  --line-dark:       #3a3134;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --wrap: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* Effects */
  --shadow-sm: 0 4px 18px rgba(57, 38, 30, 0.07);
  --shadow:    0 18px 50px rgba(57, 38, 30, 0.12);
  --shadow-gold: 0 14px 40px rgba(199, 159, 99, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--ink);
}

::selection { background: var(--blush-deep); color: var(--charcoal); }

/* ---------------- Layout helpers ---------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.section { padding: clamp(64px, 9vw, 120px) 0; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow--center { text-align: center; }

.section__head {
  max-width: 680px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.section__head--left { margin-left: 0; text-align: left; }
.section__head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.section__lead {
  margin-top: 1.1rem;
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95em 1.8em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: 0.7em 1.25em; font-size: 0.78rem; }
.btn--full { width: 100%; }

.btn--gold {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--gold) 60%, var(--gold-bright) 100%);
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(199, 159, 99, 0.42); }

.btn--outline {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--ink);
}
.btn--outline:hover { background: var(--charcoal); color: var(--on-dark); transform: translateY(-3px); }

.btn--outline-light {
  background: transparent;
  border-color: rgba(244, 231, 223, 0.5);
  color: var(--on-dark);
}
.btn--outline-light:hover { background: rgba(244, 231, 223, 0.12); border-color: var(--on-dark); transform: translateY(-3px); }

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 0.85rem;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------------- Accessibility ---------------- */
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 2000;
  background: var(--charcoal);
  color: var(--on-dark);
  padding: 0.7em 1.2em;
  border-radius: 8px;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   OPENING ANIMATION OVERLAY
   ========================================================= */
.intro {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 42%, #2e2528 0%, var(--charcoal) 55%, #15101280 100%);
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.intro.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.intro__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.intro__art {
  width: clamp(220px, 42vw, 360px);
  height: auto;
  filter: drop-shadow(0 0 50px rgba(243, 217, 205, 0.25));
}

.intro__skin {
  transform-origin: center;
  opacity: 0;
  animation: skinIn 1.6s var(--ease) 0.15s forwards;
}
.intro__bloom {
  transform-origin: center;
  transform: scale(0.3);
  opacity: 0;
  animation: bloom 2s var(--ease) 0.35s forwards;
}
.intro__spark { opacity: 0; }
.intro__spark--1 { animation: spark 1.4s ease 0.9s forwards; }
.intro__spark--2 { animation: spark 1.4s ease 1.15s forwards; }
.intro__spark--3 { animation: spark 1.4s ease 1.35s forwards; }

@keyframes skinIn {
  0%   { opacity: 0; transform: scale(0.86); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes bloom {
  0%   { opacity: 0; transform: scale(0.3); }
  55%  { opacity: 1; }
  100% { opacity: 0.85; transform: scale(1.05); }
}
@keyframes spark {
  0%   { opacity: 0; transform: scale(0.4); }
  50%  { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.6; transform: scale(1); }
}

.intro__wordmark {
  opacity: 0;
  transform: translateY(14px);
  animation: wordIn 1.2s var(--ease) 1.1s forwards;
}
.intro__name {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: 0.04em;
  color: var(--on-dark);
}
.intro__sub {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--champagne);
}
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}

.intro__skip {
  position: absolute;
  bottom: 6vh; right: 6vw;
  background: transparent;
  border: 1px solid rgba(216, 183, 138, 0.5);
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6em 1.4em;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  animation: skipIn .6s ease 0.5s forwards;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.intro__skip:hover { background: var(--champagne); color: var(--charcoal); }
@keyframes skipIn { to { opacity: 1; } }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 246, 241, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.header.is-scrolled {
  background: rgba(251, 246, 241, 0.94);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 78px;
}

.logo { display: flex; align-items: center; gap: 0.7rem; }
.logo__mark { flex-shrink: 0; transition: transform .5s var(--ease); }
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.05); }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.logo__tag {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav { display: flex; gap: 1.8rem; }
.nav a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  position: relative;
  padding: 0.3em 0;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header__cta { display: flex; align-items: center; gap: 0.7rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 clamp(20px, 5vw, 48px) 1.4rem;
  background: rgba(251, 246, 241, 0.98);
  border-bottom: 1px solid var(--line);
}
.mobile-nav.is-open { display: flex; animation: dropIn .35s var(--ease); }
.mobile-nav a {
  padding: 0.85em 0;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border: none; margin-top: 0.8rem; }
.mobile-nav .btn { margin-top: 0.6rem; }
@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--cream-2) 100%);
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 9vw, 120px);
}
.hero__glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 820px; max-height: 820px;
  background: radial-gradient(circle, rgba(243, 217, 205, 0.75) 0%, rgba(216, 183, 138, 0.22) 40%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  animation: floatGlow 14s ease-in-out infinite;
}
@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-3%, 4%) scale(1.06); }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 1.2rem;
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--text-soft);
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.8rem; }
.hero__trust {
  font-size: 0.82rem;
  color: var(--text-faint);
  letter-spacing: 0.02em;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

/* Hero visual orb */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.orb {
  position: relative;
  width: clamp(240px, 32vw, 380px);
  aspect-ratio: 1;
}
.orb__core {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 36%, var(--blush-soft) 0%, var(--blush-deep) 48%, var(--rose) 78%, #a96b54 100%);
  box-shadow: inset -20px -24px 60px rgba(122, 60, 42, 0.4),
              0 30px 70px rgba(199, 159, 99, 0.3);
  animation: orbPulse 7s ease-in-out infinite;
}
.orb__shine {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, rgba(255, 252, 248, 0.9) 0%, transparent 32%);
  pointer-events: none;
}
.orb__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(216, 183, 138, 0.55);
  animation: spin 26s linear infinite;
}
.orb__ring--1 { inset: -4%; border-style: dashed; }
.orb__ring--2 { inset: 6%; border-color: rgba(227, 169, 142, 0.5); animation-direction: reverse; animation-duration: 34s; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes orbPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.hero__chip {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55em 1.1em;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  box-shadow: var(--shadow);
  animation: chipFloat 6s ease-in-out infinite;
}
.hero__chip--a { top: 12%; left: -4%; }
.hero__chip--b { bottom: 14%; right: -6%; animation-delay: 1.5s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trustbar {
  background: var(--charcoal);
  color: var(--on-dark);
  padding: clamp(36px, 5vw, 52px) 0;
}
.trustbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trustbar__item {
  text-align: center;
  padding: 0 0.5rem;
  border-right: 1px solid var(--line-dark);
}
.trustbar__item:last-child { border-right: none; }
.trustbar__num {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--champagne);
  margin-bottom: 0.3rem;
}
.trustbar__label {
  font-size: 0.84rem;
  color: var(--on-dark-soft);
  letter-spacing: 0.02em;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--cream); }
.grid { display: grid; gap: 1.5rem; }
.services__grid { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blush-deep), var(--champagne), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blush-soft), var(--blush));
  color: var(--rose);
  margin-bottom: 1.3rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.45rem; margin-bottom: 0.6rem; }
.card p { color: var(--text-soft); font-size: 0.96rem; }

.services__note {
  text-align: center;
  max-width: 620px;
  margin: clamp(36px, 5vw, 52px) auto 0;
  color: var(--text-soft);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.25rem;
}

/* =========================================================
   WHY US
   ========================================================= */
.why {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
}
.why__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.why h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.why__lead { margin: 1.1rem 0 2rem; color: var(--text-soft); font-size: 1.05rem; }
.why__list { display: flex; flex-direction: column; gap: 1.6rem; margin-bottom: 2.4rem; }
.why__list li { display: flex; gap: 1rem; align-items: flex-start; }
.why__bullet {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  color: var(--champagne);
}
.why__bullet svg { width: 18px; height: 18px; }
.why__list strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.why__list p { color: var(--text-soft); font-size: 0.95rem; }

.why__visual { display: flex; justify-content: center; }
.lux-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--charcoal) 0%, var(--charcoal-soft) 60%, #3a2c2e 100%);
  color: var(--on-dark);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.lux-card__glow {
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 120%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(243, 217, 205, 0.55) 0%, rgba(216, 183, 138, 0.18) 40%, transparent 68%);
  animation: floatGlow 12s ease-in-out infinite;
}
.lux-card__lines { position: absolute; top: 2.4rem; left: 2.4rem; display: flex; gap: 0.5rem; }
.lux-card__lines span {
  width: 26px; height: 2px; border-radius: 2px;
  background: var(--champagne); opacity: 0.7;
}
.lux-card__lines span:nth-child(2) { width: 16px; }
.lux-card__lines span:nth-child(3) { width: 8px; }
.lux-card__quote {
  position: relative;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.25;
  color: var(--on-dark);
}
.lux-card__by {
  position: relative;
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
}

/* =========================================================
   SHOWCASE / REVEAL SLIDER
   ========================================================= */
.showcase { background: var(--charcoal); color: var(--on-dark); }
.showcase .section__head h2 { color: var(--on-dark); }
.showcase .section__lead { color: var(--on-dark-soft); }

.reveal-slider {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  user-select: none;
  touch-action: none;
}
.reveal-slider__panel {
  position: absolute;
  inset: 0;
}
.reveal-slider__before {
  background:
    radial-gradient(circle at 60% 40%, #6b5a52 0%, #4a3d39 60%, #3a302d 100%);
}
.reveal-slider__before::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(0,0,0,0.06) 0 2px, transparent 2px 7px);
  opacity: 0.5;
}
.reveal-slider__after {
  background:
    radial-gradient(circle at 45% 38%, #fbeede 0%, #f3d2bd 45%, #e3a98e 80%, #cf8c70 100%);
  clip-path: inset(0 0 0 50%);
}
.reveal-slider__after::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 42% 34%, rgba(255,255,255,0.7) 0%, transparent 30%);
}
.reveal-slider__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 4;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(33, 28, 31, 0.6);
  color: var(--on-dark);
  padding: 0.4em 0.9em;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.reveal-slider__tag--right {
  left: auto; right: 1rem;
  background: rgba(251, 246, 241, 0.7);
  color: var(--charcoal);
}
.reveal-slider__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: var(--champagne);
  z-index: 5;
  cursor: ew-resize;
  box-shadow: 0 0 18px rgba(216, 183, 138, 0.6);
}
.reveal-slider__grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.reveal-slider__grip::before,
.reveal-slider__grip::after {
  content: "";
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.reveal-slider__grip::before { left: 11px; border-right: 8px solid var(--charcoal); }
.reveal-slider__grip::after { right: 11px; border-left: 8px solid var(--charcoal); }

.showcase__disclaimer {
  text-align: center;
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: var(--on-dark-soft);
  font-style: italic;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews { background: var(--cream); }
.reviews__grid { grid-template-columns: repeat(3, 1fr); }
.quote {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.6rem 2rem 2rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote__mark {
  position: absolute;
  top: 0.6rem; left: 1.4rem;
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--blush);
}
.quote blockquote {
  position: relative;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 1.3rem;
}
.quote figcaption {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.quote figcaption span {
  display: block;
  font-weight: 300;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.reviews__note {
  text-align: center;
  margin-top: 2.4rem;
  font-size: 0.8rem;
  color: var(--text-faint);
  font-style: italic;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.faq__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq__list { display: flex; flex-direction: column; gap: 0.9rem; }
.faq__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq__item[open] { border-color: var(--champagne); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.4rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform .35s var(--ease);
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a {
  padding: 0 1.4rem 1.3rem;
  color: var(--text-soft);
  font-size: 0.96rem;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal) 0%, #322729 100%);
  color: var(--on-dark);
  text-align: center;
  padding: clamp(64px, 9vw, 110px) 0;
}
.cta-band__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw; height: 80vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(243, 217, 205, 0.22) 0%, rgba(216, 183, 138, 0.1) 40%, transparent 68%);
  pointer-events: none;
  animation: floatGlow 16s ease-in-out infinite;
}
.cta-band__inner { position: relative; max-width: 680px; margin: 0 auto; }
.cta-band h2 { color: var(--on-dark); font-size: clamp(2rem, 4.6vw, 3.2rem); }
.cta-band p { margin: 1.1rem auto 2.2rem; color: var(--on-dark-soft); font-size: 1.1rem; max-width: 520px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--cream); }
.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.contact__lead { margin: 1.1rem 0 2rem; color: var(--text-soft); font-size: 1.05rem; }
.contact__details { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.8rem; }
.contact__details li { display: flex; align-items: center; gap: 0.9rem; font-size: 0.98rem; color: var(--text); }
.contact__details a:hover { color: var(--gold); }
.contact__ico {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blush-soft), var(--blush));
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact__ico svg { width: 20px; height: 20px; }
.contact__area {
  font-size: 0.86rem;
  color: var(--text-faint);
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.contact__form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.2rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85em 1em;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--champagne);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(216, 183, 138, 0.18);
}
.field input.is-invalid,
.field select.is-invalid {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(217, 140, 117, 0.18);
}
.form__note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-faint);
  text-align: center;
}
.form__note.is-success { color: #5a8a5e; font-weight: 500; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--charcoal); color: var(--on-dark-soft); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: clamp(48px, 7vw, 80px) 0 clamp(32px, 4vw, 48px);
}
.footer__brand .logo__name { color: var(--on-dark); font-size: 1.5rem; }
.footer__tag {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 0.3rem 0 1rem;
}
.footer__blurb { font-size: 0.92rem; max-width: 300px; color: var(--on-dark-soft); }
.footer__nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a { font-size: 0.9rem; transition: color .3s var(--ease); }
.footer__nav a:hover { color: var(--champagne); }
.footer__contact { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.9rem; }
.footer__contact a:hover { color: var(--champagne); }
.footer__contact span { color: var(--text-faint); font-size: 0.82rem; margin-top: 0.4rem; }

.footer__bar { border-top: 1px solid var(--line-dark); }
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.4rem 0;
  font-size: 0.8rem;
}
.footer__credit a { color: var(--champagne); transition: color .3s var(--ease); }
.footer__credit a:hover { color: var(--gold-bright); text-decoration: underline; }

/* =========================================================
   MOBILE CALL BAR
   ========================================================= */
.callbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  display: none;
  background: rgba(33, 28, 31, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-dark);
  padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom, 0));
  gap: 0.7rem;
}
.callbar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.callbar__btn svg { width: 18px; height: 18px; }
.callbar__btn--call {
  background: transparent;
  border: 1px solid rgba(216, 183, 138, 0.5);
  color: var(--champagne);
}
.callbar__btn--book {
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  color: var(--charcoal);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; min-height: 300px; }
  .hero__copy { max-width: 640px; }

  .why__inner,
  .faq__inner,
  .contact__inner { grid-template-columns: 1fr; }
  .why__visual { order: -1; }
  .lux-card { max-width: 100%; aspect-ratio: 3 / 2; }

  .services__grid,
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }

  .trustbar__inner { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; }
  .trustbar__item:nth-child(2) { border-right: none; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .services__grid,
  .reviews__grid { grid-template-columns: 1fr; }

  .field-row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__bar-inner { flex-direction: column; text-align: center; gap: 0.5rem; }

  .callbar { display: flex; }
  body { padding-bottom: 76px; }
  .footer { padding-bottom: 0; }

  .hero__chip--a { left: 0; }
  .hero__chip--b { right: 0; }

  .reveal-slider { aspect-ratio: 4 / 3; }
}

@media (max-width: 400px) {
  .header__inner { height: 66px; }
  .logo__name { font-size: 1.2rem; }
  .hero h1 { font-size: 2.3rem; }
  .btn { font-size: 0.8rem; padding: 0.9em 1.4em; }
  .section { padding: 52px 0; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .intro { display: none !important; }
}
