/* ============================================================
   NOURA SKIN CLINIC — styles.css  v2.0
   3D Floating Object Luxury Style
   Inspired by: La Mer · Aesop · Augustinus Bader
   Design by Qimam Digital
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --bg:           #F5F0E8;
  --bg-deep:      #EDE6D6;
  --surface:      #FDFAF4;
  --surface-soft: #EFE7DA;
  --text:         #1A1916;
  --text-2:       #2E2C28;
  --muted:        #6B6660;
  --sage:         #7D9A8A;
  --sage-dark:    #4E6B5D;
  --sage-light:   rgba(125, 154, 138, 0.15);
  --gold:         #C8A96A;
  --gold-glow:    rgba(200, 169, 106, 0.25);
  --line:         rgba(26, 25, 22, 0.09);
  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', system-ui, sans-serif;

  --container:    1200px;
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    36px;

  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft:  0 4px 40px rgba(26, 25, 22, 0.06);
  --shadow-card:  0 12px 60px rgba(26, 25, 22, 0.1);
  --shadow-float: 0 24px 80px rgba(26, 25, 22, 0.14);
  --shadow-glow:  0 0 80px rgba(200, 169, 106, 0.18);

  /* 3D perspective */
  --perspective: 1000px;
}

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

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

@media (hover: none) {
  body { cursor: auto; }
}

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

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

ul { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: none;
  border: none;
  background: none;
}

/* ── Custom Cursor ────────────────────────────────────────── */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
  transition: opacity 0.3s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--text);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease, background 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(26, 25, 22, 0.4);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.12s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

body.cursor-hover .cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--sage);
}

body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--sage);
  background: rgba(125, 154, 138, 0.07);
}

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 48px;
}

/* ── Typography ───────────────────────────────────────────── */
.display-hero {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 300;
  line-height: 1.22;
}

.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.35;
}

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

.body-lg {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.body-md {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ── Section Eyebrow ──────────────────────────────────────── */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.section-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--text);
  color: var(--white);
  border: 1.5px solid var(--text);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sage-dark);
  border-radius: inherit;
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary:hover::after {
  transform: translateY(0);
}

.btn-primary > * {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(78, 107, 93, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(26, 25, 22, 0.28);
}

.btn-outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 25, 22, 0.05);
  border-radius: inherit;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.btn-outline:hover::after {
  transform: scale(1);
}

.btn-outline > * {
  position: relative;
  z-index: 1;
}

.btn-outline:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--sage-dark);
  color: var(--white);
  border: 1.5px solid var(--sage-dark);
}

.btn-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sage);
  border-radius: inherit;
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-whatsapp:hover::after {
  transform: translateY(0);
}

.btn-whatsapp > * {
  position: relative;
  z-index: 1;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(125, 154, 138, 0.35);
}

.btn-nav {
  padding: 10px 24px;
  font-size: 0.72rem;
}

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }
.reveal-delay-5 { transition-delay: 0.58s; }
.reveal-delay-6 { transition-delay: 0.7s; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.94) translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ============================================================
   FLOATING 3D SHAPES — Reusable
   ============================================================ */

/* Orb / sphere */
.float-orb {
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%  { transform: translateY(-18px) rotate(4deg); }
  66%  { transform: translateY(-8px) rotate(-3deg); }
}

/* Pill / capsule shapes */
.float-pill {
  border-radius: 100px;
  position: absolute;
  pointer-events: none;
  animation: floatPill 10s ease-in-out infinite;
}

@keyframes floatPill {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-14px) rotate(6deg); }
}

/* Ring */
.float-ring {
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  border-style: solid;
  animation: floatRing 12s ease-in-out infinite;
}

@keyframes floatRing {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  40%  { transform: translateY(-12px) rotate(8deg) scale(1.02); }
  70%  { transform: translateY(-6px) rotate(-5deg) scale(0.99); }
}

/* Drift delay variants */
.float-d1 { animation-delay: 0s; }
.float-d2 { animation-delay: -2.4s; }
.float-d3 { animation-delay: -4.8s; }
.float-d4 { animation-delay: -6.5s; }
.float-d5 { animation-delay: -1.8s; }

/* ============================================================
   RADIAL LIGHT HALO — Section background glow
   ============================================================ */

.halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, var(--halo-color, rgba(200, 169, 106, 0.12)) 0%, transparent 70%);
  animation: haloPulse 9s ease-in-out infinite alternate;
}

@keyframes haloPulse {
  from { transform: scale(1); opacity: 0.7; }
  to   { transform: scale(1.08); opacity: 1; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.45s ease;
}

.site-header.scrolled {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line), 0 8px 32px rgba(26, 25, 22, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}

/* Desktop Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

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

.nav-links a:hover { color: var(--sage-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5.5px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.nav-toggle:hover { background: var(--surface-soft); }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
  padding: 32px 24px 36px;
  z-index: 999;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.mobile-nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}

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

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   HERO  ── 3D Floating Object Version
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
  padding-top: 80px;
}

/* ── Radial background glow ────── */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-glow::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at 70% 30%,
    rgba(200, 169, 106, 0.13) 0%,
    rgba(125, 154, 138, 0.07) 40%,
    transparent 70%);
  animation: glowPulse 10s ease-in-out infinite alternate;
}

.hero-glow::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse at 30% 70%,
    rgba(125, 154, 138, 0.1) 0%,
    transparent 60%);
  animation: glowPulse 14s ease-in-out infinite alternate-reverse;
}

@keyframes glowPulse {
  from { transform: scale(1); opacity: 0.8; }
  to   { transform: scale(1.1); opacity: 1; }
}

/* ── 3D Sphere / Orb ─────────────────── */
.hero-orb-scene {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: min(46vw, 580px);
  height: min(46vw, 580px);
}

.hero-orb-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  animation: orbFloat 9s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) rotate3d(1, 0.3, 0, 0deg); }
  33%       { transform: translateY(-28px) rotate3d(1, 0.3, 0, 3deg); }
  66%       { transform: translateY(-12px) rotate3d(1, 0.3, 0, -2deg); }
}

/* Main sphere */
.hero-sphere {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(255, 253, 248, 0.95) 0%,
    rgba(239, 231, 218, 0.9) 30%,
    rgba(200, 169, 106, 0.25) 65%,
    rgba(125, 154, 138, 0.3) 85%,
    rgba(80, 107, 93, 0.2) 100%
  );
  box-shadow:
    inset -30px -30px 60px rgba(125, 154, 138, 0.2),
    inset 20px 20px 60px rgba(255, 253, 248, 0.6),
    0 40px 120px rgba(26, 25, 22, 0.12),
    0 0 80px rgba(200, 169, 106, 0.15);
  overflow: hidden;
}

/* Sphere highlight */
.hero-sphere::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 16%;
  width: 35%;
  height: 30%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.9) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(4px);
}

/* Sphere sheen */
.hero-sphere::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(125, 154, 138, 0.1) 60%,
    rgba(80, 107, 93, 0.15) 100%
  );
}

/* Sphere ring 1 */
.orb-ring-1 {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 106, 0.25);
  animation: ringRotate 20s linear infinite;
}

/* Sphere ring 2 */
.orb-ring-2 {
  position: absolute;
  inset: -2%;
  border-radius: 50%;
  border: 1px solid rgba(125, 154, 138, 0.18);
  animation: ringRotate 28s linear infinite reverse;
}

/* Sphere ring 3 */
.orb-ring-3 {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  border: 0.5px solid rgba(200, 169, 106, 0.12);
  animation: ringRotate 36s linear infinite;
}

@keyframes ringRotate {
  from { transform: rotate(0deg) rotateX(70deg); }
  to   { transform: rotate(360deg) rotateX(70deg); }
}

/* Floating orbiting dot */
.orb-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
  animation: orbitDot 8s linear infinite;
  transform-origin: 50% 50%;
}

.orb-dot-1 {
  width: 8px;
  height: 8px;
  top: 5%;
  left: 50%;
  animation-duration: 10s;
}

.orb-dot-2 {
  width: 5px;
  height: 5px;
  bottom: 8%;
  right: 20%;
  background: var(--sage);
  box-shadow: 0 0 12px rgba(125, 154, 138, 0.4);
  animation-duration: 14s;
  animation-direction: reverse;
}

@keyframes orbitDot {
  from { transform: rotate(0deg) translateX(60%) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(60%) rotate(-360deg); }
}

/* Floating ingredient particles */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.p-1 {
  width: 80px; height: 80px;
  top: 12%; left: -8%;
  background: radial-gradient(circle, rgba(200,169,106,0.2) 0%, transparent 70%);
  animation: floatOrb 11s ease-in-out infinite;
  filter: blur(2px);
}

.p-2 {
  width: 140px; height: 140px;
  bottom: 15%; left: -12%;
  background: radial-gradient(circle, rgba(125,154,138,0.18) 0%, transparent 70%);
  animation: floatOrb 13s ease-in-out infinite;
  animation-delay: -4s;
  filter: blur(3px);
}

.p-3 {
  width: 50px; height: 50px;
  top: 20%; right: 4%;
  border: 1px solid rgba(200, 169, 106, 0.3);
  animation: floatRing 15s ease-in-out infinite;
  animation-delay: -7s;
}

.p-4 {
  width: 16px; height: 16px;
  top: 65%; left: 8%;
  background: var(--gold);
  opacity: 0.2;
  animation: floatOrb 7s ease-in-out infinite;
  animation-delay: -2s;
}

/* ── Hero Content ─────────────────────── */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100svh - 80px);
}

.hero-text {
  position: relative;
  z-index: 3;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s ease 0.1s;
}

.hero-eyebrow.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(28px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.22s;
}

.hero-headline.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-headline .line {
  display: block;
  overflow: hidden;
}

.hero-headline em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 32px 0;
  opacity: 0;
  transition: all 0.9s ease 0.44s;
}

.hero-divider.visible { opacity: 1; }

.hero-sub {
  max-width: 440px;
  font-size: 1.0rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s ease 0.56s;
}

.hero-sub.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s ease 0.7s;
}

.hero-actions.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
  opacity: 0;
  animation: fadeInScroll 1s ease 1.8s forwards;
}

@keyframes fadeInScroll {
  to { opacity: 0.5; }
}

.hero-scroll-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

/* ============================================================
   TRUST STRIP  ── Floating pill badges
   ============================================================ */

.trust-strip {
  position: relative;
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 40px;
  border-right: 1px solid var(--line);
  flex: 1;
  min-width: 220px;
  position: relative;
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.trust-item:hover .trust-icon {
  background: var(--sage-light);
  border-color: rgba(125, 154, 138, 0.3);
  transform: scale(1.05);
}

.trust-text { display: flex; flex-direction: column; gap: 3px; }

.trust-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.trust-desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about {
  padding: 140px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* About background halo */
.about::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: haloPulse 12s ease-in-out infinite alternate;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

/* About image */
.about-image-col {
  position: relative;
}

.about-img-outer {
  position: relative;
}

/* 3D frame effect */
.about-img-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(200, 169, 106, 0.25);
  border-radius: var(--radius-xl);
  pointer-events: none;
  animation: frameFloat 10s ease-in-out infinite;
}

@keyframes frameFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-6px, -6px); }
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-float);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.about-img-wrap:hover img { transform: scale(1.04); }

/* Floating stat card */
.about-stat-card {
  position: absolute;
  bottom: -24px;
  right: -32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  box-shadow: var(--shadow-card);
  animation: cardFloat 8s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* About floating orb */
.about-orb {
  position: absolute;
  top: -40px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.8) 0%, rgba(200, 169, 106, 0.3) 60%, rgba(125, 154, 138, 0.2) 100%);
  box-shadow: 0 8px 32px rgba(200, 169, 106, 0.2);
  animation: floatOrb 9s ease-in-out infinite;
  animation-delay: -5s;
}

/* About content */
.about-content { padding-left: 8px; }

.about-headline {
  margin-bottom: 28px;
}

.about-headline em {
  font-style: italic;
  color: var(--sage-dark);
}

.about-body { margin-bottom: 20px; }

.about-values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all 0.4s ease;
}

.about-value:hover {
  background: var(--surface);
  border-color: var(--line);
  transform: translateX(4px);
}

.about-value-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.4s ease;
}

.about-value:hover .about-value-icon {
  background: var(--sage);
}

.about-value:hover .about-value-icon svg {
  stroke: white;
}

.about-value-text { flex: 1; }

.about-value-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.about-value-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ============================================================
   TREATMENTS  ── 3D hover cards
   ============================================================ */

.treatments {
  padding: 140px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

/* Background halo */
.treatments::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 55vw;
  height: 55vw;
  max-width: 650px;
  max-height: 650px;
  background: radial-gradient(circle, rgba(125, 154, 138, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.treatments-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 80px;
}

.treatments-header .section-eyebrow {
  justify-content: center;
}

.treatments-header .section-eyebrow::after { display: none; }
.treatments-header .section-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  perspective: var(--perspective);
}

.treatment-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.45s ease;
  transform-style: preserve-3d;
  cursor: default;
}

/* Hover 3D lift */
.treatment-card:hover {
  border-color: rgba(200, 169, 106, 0.25);
  box-shadow:
    0 30px 80px rgba(26, 25, 22, 0.1),
    0 0 0 1px rgba(200, 169, 106, 0.1),
    0 -1px 0 rgba(255,255,255,0.5) inset;
}

/* Top gradient line */
.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--sage), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.treatment-card:hover::before { transform: scaleX(1); }

/* Glow bg on hover */
.treatment-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(200, 169, 106, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.treatment-card:hover::after { opacity: 1; }

/* Floating mini-orb per card */
.card-orb {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.treatment-card:hover .card-orb { opacity: 1; }

.treatment-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.treatment-card:hover .treatment-icon {
  background: var(--sage-light);
  border-color: rgba(125, 154, 138, 0.3);
  transform: scale(1.05) translateZ(8px);
}

.treatment-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.treatment-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.treatment-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  transition: gap 0.3s ease;
  position: relative;
  z-index: 1;
}

.treatment-link:hover { gap: 14px; }

/* ============================================================
   PROCESS ── Numbered step reveal
   ============================================================ */

.process {
  padding: 140px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.process-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 96px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

/* Connecting line */
.process-line {
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    var(--gold) 20%,
    rgba(125, 154, 138, 0.5) 50%,
    var(--gold) 80%,
    transparent
  );
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

/* Number bubble */
.step-bubble {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
  transition: all 0.45s ease;
  box-shadow: 0 8px 32px rgba(26, 25, 22, 0.06);
}

.step-bubble::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(200, 169, 106, 0.3);
  animation: rotateDash 20s linear infinite;
}

@keyframes rotateDash {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.process-step:hover .step-bubble {
  background: var(--text);
  border-color: var(--text);
  box-shadow: 0 12px 40px rgba(26, 25, 22, 0.18);
  transform: scale(1.05);
}

.step-num-inner {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--sage);
  line-height: 1;
  transition: color 0.3s ease;
}

.process-step:hover .step-num-inner { color: var(--white); }

.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 200px;
}

/* ============================================================
   SPECIALIST  ── Cinematic full-width
   ============================================================ */

.specialist {
  padding: 140px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.specialist::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  max-width: 650px;
  background: radial-gradient(circle, rgba(125, 154, 138, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.specialist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

/* Image side */
.specialist-img-col { position: relative; }

.specialist-img-frame {
  position: absolute;
  top: -20px;
  left: 20px;
  right: -20px;
  bottom: 20px;
  border: 1px solid rgba(125, 154, 138, 0.2);
  border-radius: var(--radius-xl);
  pointer-events: none;
  animation: frameFloat 12s ease-in-out infinite;
  animation-delay: -5s;
}

.specialist-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-float);
  position: relative;
}

.specialist-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.9s ease;
}

.specialist-img-wrap:hover img { transform: scale(1.04); }

/* Floating credential card */
.specialist-cred-card {
  position: absolute;
  bottom: 28px;
  right: -36px;
  background: rgba(253, 250, 244, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  animation: cardFloat 9s ease-in-out infinite;
  animation-delay: -4s;
  min-width: 200px;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
}

.cred-item:not(:last-child) { border-bottom: 1px solid var(--line); }

.cred-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.cred-text {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
}

/* Floating orb near specialist */
.specialist-orb {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.9) 0%, rgba(125, 154, 138, 0.3) 60%, rgba(80, 107, 93, 0.2) 100%);
  box-shadow: 0 8px 32px rgba(125, 154, 138, 0.2);
  animation: floatOrb 11s ease-in-out infinite;
  animation-delay: -6s;
}

/* Content side */
.specialist-content { position: relative; z-index: 2; }

.specialist-name {
  margin-bottom: 6px;
}

.specialist-name em {
  font-style: italic;
  color: var(--sage-dark);
}

.specialist-title-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 32px;
}

.specialist-quote {
  margin-top: 40px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(200, 169, 106, 0.06) 0%, rgba(125, 154, 138, 0.04) 100%);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
}

.specialist-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}

.specialist-quote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}

.specialist-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sage);
  text-transform: uppercase;
}

/* ============================================================
   RESULTS  ── Elevated glass cards
   ============================================================ */

.results {
  padding: 140px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.results::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -15%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.results-header { max-width: 560px; margin-bottom: 80px; }

.results-header em { font-style: italic; color: var(--sage-dark); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.result-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  align-items: start;
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(200, 169, 106, 0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.result-card:hover::before { opacity: 1; }

.result-card:hover {
  box-shadow: var(--shadow-float);
  transform: translateY(-6px);
  border-color: rgba(200, 169, 106, 0.2);
}

.result-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg,
    rgba(125, 154, 138, 0.12) 0%,
    rgba(200, 169, 106, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(125, 154, 138, 0.18);
  transition: all 0.4s ease;
}

.result-card:hover .result-icon-wrap {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(125, 154, 138, 0.3);
}

.result-card:hover .result-icon-wrap svg {
  stroke: white;
}

.result-headline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
}

.result-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 18px;
}

.result-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(125, 154, 138, 0.08);
  border: 1px solid rgba(125, 154, 138, 0.18);
  color: var(--sage-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.result-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  padding: 140px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 55vw;
  height: 55vw;
  max-width: 650px;
  background: radial-gradient(circle, rgba(125, 154, 138, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover::before { opacity: 0.15; }

.testimonial-card:hover {
  box-shadow: var(--shadow-float);
  transform: translateY(-6px);
  background: var(--surface);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.star { color: var(--gold); font-size: 0.9rem; }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--gold-light, #DDB870) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.author-info { display: flex; flex-direction: column; gap: 3px; }

.author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.author-detail {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ============================================================
   BOOKING CTA  ── Cinematic split
   ============================================================ */

.booking-cta {
  padding: 140px 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

/* Animated background */
.booking-cta::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 65vw;
  height: 65vw;
  max-width: 800px;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: haloPulse 13s ease-in-out infinite alternate;
}

.booking-cta::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 55vw;
  height: 55vw;
  max-width: 650px;
  background: radial-gradient(circle, rgba(125, 154, 138, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: haloPulse 16s ease-in-out infinite alternate-reverse;
}

.booking-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.booking-content .display-lg {
  margin-bottom: 20px;
}

.booking-content .display-lg em {
  font-style: italic;
  color: var(--sage-dark);
}

.booking-content p { margin-bottom: 48px; }

.booking-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.booking-image-col { position: relative; }

/* 3D floating frame on booking image */
.booking-img-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(200, 169, 106, 0.2);
  border-radius: var(--radius-xl);
  pointer-events: none;
  animation: frameFloat 11s ease-in-out infinite;
  animation-delay: -3s;
}

.booking-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-float);
}

.booking-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.booking-img-wrap:hover img { transform: scale(1.04); }

/* Floating mini-orb in booking section */
.booking-orb {
  position: absolute;
  top: -40px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,253,248,0.9) 0%, rgba(200, 169, 106, 0.35) 60%, rgba(125, 154, 138, 0.2) 100%);
  box-shadow: 0 12px 40px rgba(200, 169, 106, 0.2);
  animation: floatOrb 10s ease-in-out infinite;
  animation-delay: -3s;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -15%;
  width: 55vw;
  height: 55vw;
  max-width: 600px;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.contact-headline { margin-bottom: 16px; }
.contact-headline em { font-style: italic; color: var(--sage-dark); }
.contact-sub { margin-bottom: 52px; }

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all 0.35s ease;
}

.contact-item:hover {
  background: var(--bg);
  border-color: var(--line);
  transform: translateX(4px);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.35s ease;
}

.contact-item:hover .contact-item-icon {
  background: var(--sage-light);
  border-color: rgba(125, 154, 138, 0.3);
}

.contact-item-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-item-value a { transition: color 0.3s ease; }
.contact-item-value a:hover { color: var(--sage); }

/* Map placeholder — elevated card */
.map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  box-shadow: var(--shadow-card);
}

.map-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(200, 169, 106, 0.08) 0%, transparent 60%);
}

.map-pin-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(125, 154, 138, 0.35);
  animation: floatOrb 8s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.map-address-block {
  text-align: center;
  position: relative;
  z-index: 1;
}

.map-address-block p {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.map-address-block strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
}

.map-directions {
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand { display: flex; flex-direction: column; gap: 22px; }

.footer-logo { display: flex; align-items: center; gap: 11px; }
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.4); }

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.0rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 290px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  color: rgba(255,255,255,0.6);
}

.social-link:hover {
  border-color: var(--sage);
  background: rgba(125, 154, 138, 0.15);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

.footer-portfolio { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

.footer-portfolio a {
  color: var(--gold);
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-portfolio a:hover { opacity: 0.7; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1080px) {
  .container { padding-inline: 36px; }

  .hero-orb-scene {
    width: min(40vw, 420px);
    height: min(40vw, 420px);
    right: 4%;
  }

  .hero-content {
    padding: 60px 36px;
  }

  .about-grid,
  .specialist-grid,
  .booking-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-detail-card,
  .specialist-cred-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }

  .specialist-img-wrap { aspect-ratio: 16/9; }
  .about-img-wrap { aspect-ratio: 16/9; }

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .process-line { display: none; }

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

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .about, .treatments, .process, .specialist,
  .results, .testimonials, .booking-cta { padding: 100px 0; }
  .contact { padding: 80px 0; }
}

/* Mobile */
@media (max-width: 768px) {
  body { cursor: auto; }

  .cursor-dot, .cursor-ring { display: none; }

  .container { padding-inline: 22px; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }
  .nav-inner { height: 68px; }

  .hero {
    padding-top: 68px;
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-orb-scene {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 80vw;
    height: 80vw;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 56px 22px 32px;
    min-height: auto;
    gap: 0;
  }

  .hero-text { order: 1; }
  .hero-orb-scene { order: 2; }

  .hero-sub { max-width: 100%; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-scroll { display: none; }

  .trust-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line); min-width: 100%; }
  .trust-item:last-child { border-bottom: none; }

  .about, .treatments, .process, .specialist,
  .results, .testimonials, .booking-cta { padding: 80px 0; }
  .contact { padding: 64px 0; }

  .about-img-frame,
  .specialist-img-frame,
  .booking-img-frame { display: none; }

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

  .treatment-card { padding: 28px 24px; }
  .result-card { padding: 28px 24px; grid-template-columns: 1fr; gap: 16px; }

  .process-steps { grid-template-columns: 1fr; gap: 40px; }

  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
  }

  .step-bubble { flex-shrink: 0; margin-bottom: 0; }
  .step-desc { max-width: 100%; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 28px 24px; }

  .booking-inner { gap: 40px; }
  .booking-actions { flex-direction: column; align-items: stretch; }
  .booking-actions .btn { width: 100%; justify-content: center; }

  .about-stat-card { position: relative; bottom: auto; right: auto; margin-top: 16px; display: inline-flex; gap: 24px; }
  .specialist-cred-card { position: relative; bottom: auto; right: auto; margin-top: 16px; }
  .about-orb, .specialist-orb, .booking-orb { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── Utilities ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
