/* ============================================================
   LIV MED SPA — Global Stylesheet
   Luxury dark theme · Champagne gold accent · Glassmorphism
   ============================================================ */

/* 1. GOOGLE FONTS
------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* 2. CSS VARIABLES
------------------------------------------------------------- */
:root {
  --gold:          #C8A97E;
  --gold-dark:     #9E7B52;
  --gold-light:    #E8D5B7;
  --gold-pale:     #F5EDE0;
  --dark:          #0C0C0C;
  --dark-2:        #111111;
  --dark-3:        #181818;
  --dark-4:        #222222;
  --light:         #F9F5F0;
  --white:         #FFFFFF;
  --text:          #E0D8CF;
  --text-muted:    #8A7E72;
  --text-soft:     #BDB4AA;
  --accent:        #D4A8C7;
  --glass:         rgba(255,255,255,0.05);
  --glass-gold:    rgba(200,169,126,0.08);
  --glass-border:  rgba(200,169,126,0.2);
  --glass-border-s:rgba(200,169,126,0.12);
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.6), 0 8px 24px rgba(0,0,0,0.4);
  --shadow-gold:   0 0 30px rgba(200,169,126,0.15), 0 8px 32px rgba(0,0,0,0.5);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --transition:    250ms ease;
  --transition-slow:500ms ease;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-accent:   'Cormorant Garamond', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --nav-h:         76px;
  --topbar-h:      40px;
  --z-topbar:      100;
  --z-nav:         200;
  --z-overlay:     300;
  --z-sticky-btn:  400;
  --z-cursor:      9999;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* 4. SCROLLBAR
------------------------------------------------------------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* 5. CUSTOM CURSOR
------------------------------------------------------------- */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: transform 80ms linear, width 200ms ease, height 200ms ease, background 200ms ease;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(200,169,126,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: transform 150ms linear, width 250ms ease, height 250ms ease, border-color 250ms ease;
}
body:has(a:hover) .cursor-dot,
body:has(button:hover) .cursor-dot { width: 12px; height: 12px; background: var(--gold-light); }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 48px; height: 48px; border-color: var(--gold); }

/* 6. UTILITY CLASSES
------------------------------------------------------------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* 7. TYPOGRAPHY
------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.75; color: var(--text); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; color: var(--text-soft); font-size: 1.05rem; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* Gold underline accent */
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 16px 0 24px;
}
.gold-line.center { margin: 16px auto 24px; }

/* 8. BUTTONS
------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 48px;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 500ms ease;
}
.btn:hover::after { transform: translateX(100%); }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(200,169,126,0.3);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(200,169,126,0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-ghost:hover {
  background: rgba(200,169,126,0.1);
  box-shadow: 0 0 24px rgba(200,169,126,0.2);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark-3);
  color: var(--white);
  border: 1px solid var(--glass-border);
}
.btn-dark:hover {
  background: var(--dark-4);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.8rem; min-height: 40px; }
.btn-lg { padding: 18px 44px; font-size: 1rem; min-height: 56px; }

/* 9. TOP BAR
------------------------------------------------------------- */
.top-bar {
  background: var(--gold);
  color: var(--dark);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: var(--z-topbar);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  flex-shrink: 0;
}
.top-bar-left svg { width: 14px; height: 14px; flex-shrink: 0; }
.top-bar-center {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  flex: 1;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.top-bar-right a { font-size: 0.78rem; font-weight: 600; color: var(--dark); transition: opacity var(--transition); }
.top-bar-right a:hover { opacity: 0.7; }
.top-bar-socials { display: flex; gap: 10px; }
.top-bar-socials a svg { width: 16px; height: 16px; fill: var(--dark); transition: opacity var(--transition); }
.top-bar-socials a:hover svg { opacity: 0.7; }

/* 10. NAVIGATION
------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition-slow), box-shadow var(--transition-slow), backdrop-filter var(--transition-slow);
}
.site-nav.scrolled {
  background: rgba(12,12,12,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(200,169,126,0.2), 0 8px 32px rgba(0,0,0,0.5);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 11. MOBILE OVERLAY MENU
------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 600;
  color: var(--text-soft);
  padding: 12px 24px;
  transition: color var(--transition), transform var(--transition);
  text-align: center;
}
.mobile-menu a:hover { color: var(--gold); transform: translateX(8px); }
.mobile-menu .btn { margin-top: 24px; }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--transition);
}
.mobile-menu-close:hover { background: var(--glass-gold); }

/* 12. HERO SECTION
------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-h));
  padding-top: calc(var(--topbar-h) + var(--nav-h));
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(8,8,8,0.85) 0%,
    rgba(12,12,12,0.7) 50%,
    rgba(8,8,8,0.75) 100%);
  z-index: 1;
}
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--dark));
}

/* Particle canvas */
#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,169,126,0.12), transparent 70%);
  top: 10%; right: 5%;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,168,199,0.08), transparent 70%);
  bottom: 20%; left: 5%;
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,169,126,0.08), transparent 70%);
  top: 50%; left: 40%;
  animation-delay: -5s;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s ease forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--white);
  animation: fadeSlideUp 0.8s ease 0.15s both;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 580px;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.45s both;
}
.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-soft);
}
.hero-badge svg { color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }

/* Floating badge */
.hero-float-badge {
  position: absolute;
  bottom: 60px; right: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  text-align: center;
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
}
.hero-float-badge .rating { font-size: 1.5rem; font-weight: 700; color: var(--gold); font-family: var(--font-display); }
.hero-float-badge .stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; margin: 2px 0; }
.hero-float-badge .label { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeSlideUp 1s ease 1s both;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* 13. STATS SECTION
------------------------------------------------------------- */
.stats-section {
  background: var(--dark-2);
  padding: 64px 0;
  border-top: 1px solid var(--glass-border-s);
  border-bottom: 1px solid var(--glass-border-s);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--glass-border);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* 14. ABOUT PREVIEW
------------------------------------------------------------- */
.about-preview {
  background: var(--dark);
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-image-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--glass-border);
  border-radius: calc(var(--radius-lg) + 8px);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  color: var(--dark);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 700;
}
.about-badge .num { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.about-badge .text { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.about-content { padding-right: 16px; }
.about-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.about-list-item svg { color: var(--gold); width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.about-cta { margin-top: 32px; }

/* 15. SERVICES GRID
------------------------------------------------------------- */
.services-section { background: var(--dark-3); padding: 100px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border-s);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  cursor: pointer;
  transform-style: preserve-3d;
  position: relative;
}
.service-card:hover {
  border-color: var(--glass-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-8px) perspective(1000px) rotateX(2deg);
}
.service-card-img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-body {
  padding: 24px;
}
.service-card-icon {
  width: 48px; height: 48px;
  background: var(--glass-gold);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: background var(--transition);
}
.service-card:hover .service-card-icon { background: rgba(200,169,126,0.15); }
.service-card-icon svg { width: 22px; height: 22px; color: var(--gold); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.6; margin-bottom: 20px; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition), color var(--transition);
}
.service-card:hover .service-card-link { gap: 10px; color: var(--gold-light); }
.service-card-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* 16. WHY CHOOSE US
------------------------------------------------------------- */
.why-section { background: var(--dark-2); padding: 100px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--glass);
  border: 1px solid var(--glass-border-s);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
  cursor: default;
}
.why-card:hover {
  border-color: var(--glass-border);
  background: var(--glass-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 56px; height: 56px;
  background: var(--glass-gold);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 26px; height: 26px; color: var(--gold); }
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.why-card p { font-size: 0.87rem; color: var(--text-soft); line-height: 1.65; }

/* 17. BEFORE / AFTER
------------------------------------------------------------- */
.before-after-section { background: var(--dark); padding: 100px 0; }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ba-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: ew-resize;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border-s);
}
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
}
.ba-after img, .ba-before img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after { z-index: 1; }
.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0ms linear;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle::before, .ba-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  top: 50%;
  margin-top: -22px;
}
.ba-handle::after {
  width: 32px; height: 32px;
  background: var(--gold);
  margin-top: -16px;
}
.ba-label-before, .ba-label-after {
  position: absolute;
  bottom: 16px;
  z-index: 4;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ba-label-before { left: 12px; background: rgba(0,0,0,0.6); color: var(--text-muted); }
.ba-label-after { right: 12px; background: var(--gold); color: var(--dark); }
.ba-treatment {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ba-cta { text-align: center; margin-top: 48px; }

/* 18. REVIEWS SECTION
------------------------------------------------------------- */
.reviews-section { background: var(--dark-3); padding: 100px 0; }
.review-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.review-filter-btn {
  padding: 8px 20px;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}
.review-filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.review-filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 600; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--glass);
  border: 1px solid var(--glass-border-s);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card:hover { border-color: var(--glass-border); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card.hidden { display: none; }
.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.review-google { display: flex; align-items: center; gap: 8px; }
.google-g {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.google-g svg { width: 16px; height: 16px; }
.review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.review-category {
  padding: 3px 10px;
  background: var(--glass-gold);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.review-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-soft);
  font-style: italic;
}
.review-text::before { content: '"'; color: var(--gold); font-size: 1.5rem; line-height: 0; vertical-align: -6px; margin-right: 2px; }
.review-text::after { content: '"'; color: var(--gold); font-size: 1.5rem; line-height: 0; vertical-align: -6px; margin-left: 2px; }
.review-author { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.review-name { font-weight: 600; font-size: 0.88rem; color: var(--white); }
.review-date { font-size: 0.75rem; color: var(--text-muted); }
.reviews-badge {
  text-align: center;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.reviews-badge svg { color: var(--gold); width: 20px; height: 20px; }

/* 19. CTA BANNER
------------------------------------------------------------- */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--dark-2) 0%, rgba(20,16,10,1) 100%);
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A97E' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,126,0.06), transparent 70%);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-banner-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: var(--text-soft); font-size: 1.05rem; margin-bottom: 36px; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* 20. INQUIRY FORM
------------------------------------------------------------- */
.inquiry-section { background: var(--dark-2); padding: 100px 0; }
.inquiry-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
.form-group { position: relative; margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--glass-border-s);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,126,0.1);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control option { background: var(--dark-3); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: var(--glass);
  border: 1px solid var(--glass-border-s);
  border-radius: var(--radius-md);
  padding: 24px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border-s);
}
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-icon {
  width: 40px; height: 40px;
  background: var(--glass-gold);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-info-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-value { font-size: 0.92rem; color: var(--text-soft); }
.contact-info-value a { color: var(--text-soft); transition: color var(--transition); }
.contact-info-value a:hover { color: var(--gold); }
.hours-table { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; gap: 8px; }
.hours-day { color: var(--text-muted); }
.hours-time { color: var(--text-soft); font-weight: 500; text-align: right; }

/* Google Map */
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border-s);
}
.map-embed iframe { display: block; width: 100%; height: 250px; border: none; filter: grayscale(30%) contrast(1.1); }

/* 21. FOOTER
------------------------------------------------------------- */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--glass-border-s);
}
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer-social svg { width: 16px; height: 16px; fill: var(--text-muted); transition: fill var(--transition); }
.footer-social:hover { border-color: var(--gold); background: var(--glass-gold); }
.footer-social:hover svg { fill: var(--gold); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}
.footer-links a:hover { color: var(--text-soft); transform: translateX(4px); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-muted);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: var(--text-muted); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-credits { font-size: 0.78rem; color: var(--text-muted); }
.footer-credits a { color: var(--gold); }

/* 22. MOBILE STICKY BUTTONS
------------------------------------------------------------- */
.sticky-mobile-btns {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-sticky-btn);
  flex-direction: row;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--transition);
  text-decoration: none;
}
.sticky-btn:hover { opacity: 0.9; }
.sticky-btn svg { width: 20px; height: 20px; }
.sticky-btn-call { background: var(--gold); color: var(--dark); }
.sticky-btn-whatsapp { background: #25D366; color: var(--white); }

/* 23. PAGE INNER HERO
------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--topbar-h) + var(--nav-h) + 80px) 0 80px;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-h));
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,0.8) 0%, rgba(8,8,8,0.9) 100%);
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero-subtitle {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.about-story-section {
  padding: 100px 0;
  background: var(--dark-2);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.breadcrumb-sep { color: var(--text-muted); font-size: 0.65rem; }

/* 24. SERVICES PAGE
------------------------------------------------------------- */
.service-section-alt {
  padding: 100px 0;
  position: relative;
}
.service-section-alt:nth-child(even) { background: var(--dark-3); }
.service-section-alt:nth-child(odd) { background: var(--dark-2); }
.service-alt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-alt-grid.reverse { direction: rtl; }
.service-alt-grid.reverse > * { direction: ltr; }
.service-alt-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-alt-img img { width: 100%; height: 480px; object-fit: cover; }
.service-alt-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(8,8,8,0.4));
  pointer-events: none;
}
.service-benefits { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.service-benefit-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-soft);
}
.service-benefit-item svg { color: var(--gold); width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; }
.service-steps { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 28px; }
.service-step {
  display: flex; align-items: flex-start; gap: 14px;
}
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--glass-gold); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--gold);
  flex-shrink: 0; margin-top: 1px;
}
.step-text { font-size: 0.9rem; color: var(--text-soft); line-height: 1.6; }
.service-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--dark-3);
  border-bottom: 1px solid var(--glass-border-s);
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  overflow-x: auto;
  scrollbar-width: none;
}
.service-anchor-nav::-webkit-scrollbar { display: none; }
.service-anchor-nav a {
  padding: 8px 20px;
  border-radius: 24px;
  border: 1px solid var(--glass-border-s);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  min-height: 40px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.service-anchor-nav a:hover,
.service-anchor-nav a.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--glass-gold);
}

/* 25. GALLERY PAGE
------------------------------------------------------------- */
.gallery-section { background: var(--dark); padding: 80px 0 100px; }
.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.gallery-filter-btn {
  padding: 8px 20px;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}
.gallery-filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.gallery-filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 600; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item { opacity: 1; transition: opacity var(--transition-slow); }
.gallery-item.hidden { display: none; }
.gallery-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 32px;
  font-style: italic;
}

/* 26. REVIEWS PAGE
------------------------------------------------------------- */
.rating-summary-section {
  background: var(--dark-2);
  padding: 64px 0;
  border-bottom: 1px solid var(--glass-border-s);
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}
.rating-big {
  text-align: center;
  flex-shrink: 0;
}
.rating-number { font-family: var(--font-display); font-size: 5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.rating-stars-big { font-size: 1.5rem; color: var(--gold); letter-spacing: 4px; margin: 8px 0; }
.rating-count { font-size: 0.85rem; color: var(--text-muted); }
.rating-bars { flex: 1; min-width: 200px; }
.rating-bar-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.rating-bar-label { font-size: 0.85rem; color: var(--text-muted); width: 32px; text-align: right; flex-shrink: 0; }
.rating-bar-track {
  flex: 1; height: 8px;
  background: var(--dark-3);
  border-radius: 4px;
  overflow: hidden;
}
.rating-bar-fill { height: 100%; background: var(--gold); border-radius: 4px; }
.rating-bar-pct { font-size: 0.78rem; color: var(--text-muted); width: 36px; flex-shrink: 0; }
.reviews-page-section { background: var(--dark); padding: 80px 0 100px; }
.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 27. BLOG PAGE
------------------------------------------------------------- */
.blog-section { background: var(--dark); padding: 80px 0 100px; }
.blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.blog-featured-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--glass);
  border: 1px solid var(--glass-border-s);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all var(--transition-slow);
}
.blog-featured-card:hover { border-color: var(--glass-border); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.blog-featured-img { height: 320px; overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-featured-card:hover .blog-featured-img img { transform: scale(1.05); }
.blog-featured-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.blog-card-tag { display: inline-block; padding: 4px 12px; background: var(--glass-gold); border: 1px solid var(--glass-border); border-radius: 12px; font-size: 0.68rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.blog-card-title { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.blog-card-excerpt { font-size: 0.88rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 20px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--text-muted); }
.blog-card-meta span { display: flex; align-items: center; gap: 4px; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.blog-card {
  background: var(--glass);
  border: 1px solid var(--glass-border-s);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  display: grid;
  grid-template-columns: 160px 1fr;
}
.blog-card:hover { border-color: var(--glass-border); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 120px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-body { padding: 20px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-widget {
  background: var(--glass);
  border: 1px solid var(--glass-border-s);
  border-radius: var(--radius-md);
  padding: 24px;
}
.sidebar-widget h4 { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--transition); padding: 6px 0; border-bottom: 1px solid var(--glass-border-s); display: flex; align-items: center; justify-content: space-between; }
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--gold); }
.sidebar-links a svg { width: 12px; height: 12px; }

/* 28. CONTACT PAGE
------------------------------------------------------------- */
.contact-section { background: var(--dark); padding: 80px 0 100px; }
.contact-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: start; }

/* 29. ABOUT PAGE — Medical Director
------------------------------------------------------------- */
.about-section { background: var(--dark); padding: 100px 0; }
.director-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 380px 1fr;
}
.director-img { height: 100%; min-height: 480px; overflow: hidden; }
.director-img img { width: 100%; height: 100%; object-fit: cover; }
.director-content { padding: 48px; }
.director-name { font-size: 2rem; color: var(--white); margin-bottom: 4px; }
.director-title { font-size: 0.85rem; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.director-quote {
  background: var(--glass-gold);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.6;
}
.director-quote cite { display: block; font-style: normal; font-size: 0.8rem; color: var(--gold); margin-top: 10px; font-family: var(--font-body); letter-spacing: 0.05em; }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.promise-card {
  background: var(--glass);
  border: 1px solid var(--glass-border-s);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.promise-card:hover { border-color: var(--glass-border); background: var(--glass-gold); transform: translateY(-4px); }
.promise-icon { font-size: 2rem; margin-bottom: 16px; }
.promise-card h3 { font-size: 1rem; margin-bottom: 10px; }
.promise-card p { font-size: 0.85rem; color: var(--text-soft); }

/* 30. SCROLL ANIMATIONS (custom AOS-like)
------------------------------------------------------------- */
[data-aos] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-left"] { transform: translateX(-30px); }
[data-aos="fade-right"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.92); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* Stagger delays */
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="150"] { transition-delay: 0.15s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="250"] { transition-delay: 0.25s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="350"] { transition-delay: 0.35s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }

/* 31. KEYFRAME ANIMATIONS
------------------------------------------------------------- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.05); }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(1); opacity: 1; transform-origin: top; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,126,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(200,169,126,0); }
}

/* 32. REDUCED MOTION
------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* 33. MEDIA QUERIES
------------------------------------------------------------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .director-card { grid-template-columns: 300px 1fr; }
}

@media (max-width: 1024px) {
  :root { --nav-h: 68px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 560px; }
  .about-badge { bottom: -16px; right: -16px; }
  .inquiry-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img { height: 240px; }
  .blog-sidebar { position: static; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .director-card { grid-template-columns: 1fr; }
  .director-img { min-height: 320px; max-height: 320px; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-page-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .service-alt-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-alt-grid.reverse { direction: ltr; }
  .service-alt-img img { height: 320px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3)::before { display: none; }
}

@media (max-width: 768px) {
  :root { --topbar-h: 36px; }
  .section { padding: 72px 0; }
  .top-bar-left { display: none; }
  .top-bar-center { font-size: 0.72rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .sticky-mobile-btns { display: flex; }
  .hero { min-height: 100svh; }
  .hero-float-badge { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-badges { gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-page-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .rating-summary { flex-direction: column; gap: 32px; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-img { height: 180px; }
  .promise-grid { grid-template-columns: 1fr; }
  /* Hide custom cursor on touch */
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
