/* ==========================================================================
   Dr. Enhance  WELLNESS — Premium Stylesheet
   Aesthetic: Light luxury · Cream, deep teal & champagne · Editorial typography
   ========================================================================== */

:root {
  /* Backgrounds - warm cream tones */
  --bg: #faf6ed;
  --bg-elevated: #f3ecdc;
  --bg-soft: #fffbf2;
  --surface: #f0e8d4;
  --surface-2: #e6dcc4;

  /* Brand teals - kept identical (work on both light & dark) */
  --teal-deep: #0d2a2a;
  --teal: #a9afaf;
  --teal-bright: #676237;
  --teal-glow: #b7b7b7;
  --teal-pale: #d5d5a8;

  /* Gold - shifted darker for readability on cream */
  --gold: #a07c4a;
  --gold-soft: #b89165;
  --gold-bright: #c9a87c;
  --rose: #a86950;

  /* Ink - dark teal-charcoal text */
  --ink: #1a2424;
  --ink-soft: #2d3636;
  --ink-mid: #5a6363;
  --ink-dim: #8a9090;
  --line: rgba(26, 36, 36, 0.10);
  --line-strong: rgba(26, 36, 36, 0.22);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-italic: 'Italiana', serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 22px;
  --r-xl: 32px;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  overflow-x: hidden;
  position: relative;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }
em { font-style: italic; font-weight: 400; }

/* Body grain texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.50  0 0 0 0 0.42  0 0 0 0.05 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  opacity: 0.35;
  mix-blend-mode: multiply;
}

/* ========== CONTAINER & UTILITIES ========== */
.container {
  width: min(1280px, 92vw);
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-mark { font-size: 8px; color: var(--gold-soft); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}
.section-title em {
  font-family: var(--font-italic);
  font-style: normal;
  color: var(--gold);
}
.title-accent {
  position: relative;
  display: inline-block;
  color: #b7b7b7;
  font-style: italic;
  font-family: var(--font-display);
}

.section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 620px;
  font-weight: 300;
}

.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}
.section-header.center .section-sub {
  margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid transparent;
  isolation: isolate;
}

.btn-primary {
    background: linear-gradient(135deg, #b3ad93 0%, #D19982 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px -8px #ffefa97d, inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px #f5d74f7d,
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  filter: brightness(1.08);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  background: rgba(10, 16, 16, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fffbf2;
  border: 1px solid rgba(255, 251, 242, 0.3);
}
.btn-ghost:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(201, 168, 124, 0.18);
}

.btn-block { width: 100%; }
.btn-lg { padding: 20px 44px; font-size: 14px; }

.btn-arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ========== LOADER ========== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.loader-logo {
  width: 300px;
  height: auto;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 0.2s forwards;
}
.loader-bar {
  width: 200px;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-bright), var(--teal-glow), var(--gold));
  animation: loaderFill 1.4s var(--ease) 0.4s forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderFill { to { width: 100%; } }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(250, 246, 237, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 24px -8px rgba(26, 36, 36, 0.08);
}
.nav-inner {
  width: min(1320px, 94vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-logo { display: block; flex-shrink: 0; position: relative; }
.nav-logo-img {
  height: 55px;
  width: auto;
  transition: all 0.4s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
.nav.scrolled .nav-logo-img { height: 45px; filter: none; }

/* Light (rose) logo shows over dark hero, dark (teal) logo shows when scrolled on cream */
.nav-logo-light { display: block; }
.nav-logo-dark { display: none; }
.nav.scrolled .nav-logo-light { display: none; }
.nav.scrolled .nav-logo-dark { display: block; }

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 251, 242, 0.92);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s var(--ease);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.nav.scrolled .nav-links a {
  color: var(--ink-soft);
  text-shadow: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.4s var(--ease);
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 12px 24px; font-size: 11px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255, 251, 242, 0.92);
  transition: all 0.3s var(--ease);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.nav.scrolled .nav-burger span {
  background: var(--ink);
  box-shadow: none;
}
.nav-burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--ink); box-shadow: none; }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--ink); box-shadow: none; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 100%; height: 100vh;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 99;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.active { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
}
.mobile-menu a:not(.btn):hover { color: var(--gold); }

/* ========== HERO with VIDEO CAROUSEL ========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1), transform 2.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  overflow: hidden;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Continuous Ken Burns zoom — slow, cinematic drift */
.hero-slide.active .hero-video,
.hero-slide.active .hero-slide-fallback {
  animation: kenBurns 25s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
/* Alternate drift directions per slide for organic feel */
.hero-slide:nth-child(2n).active .hero-video,
.hero-slide:nth-child(2n).active .hero-slide-fallback {
  animation-name: kenBurnsAlt;
}
.hero-slide:nth-child(3n).active .hero-video,
.hero-slide:nth-child(3n).active .hero-slide-fallback {
  animation-name: kenBurnsUp;
}
@keyframes kenBurns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.15) translate(-1%, -1%); }
}
@keyframes kenBurnsAlt {
  0%   { transform: scale(1.02) translate(-1%, 0); }
  100% { transform: scale(1.14) translate(1%, -0.5%); }
}
@keyframes kenBurnsUp {
  0%   { transform: scale(1.0) translate(0.5%, 1%); }
  100% { transform: scale(1.12) translate(-0.5%, -1%); }
}

.hero-video,
.hero-slide-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero-slide-fallback {
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-video {
  z-index: 1;
}
/* When video fails, hide it so fallback image shows */
.hero-video.video-failed {
  display: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    /* Center darken behind text - much stronger */
    radial-gradient(ellipse 70% 60% at 50% 55%, rgba(10, 16, 16, 0.78) 0%, rgba(10, 16, 16, 0.55) 45%, rgba(10, 16, 16, 0.3) 70%, transparent 100%),
    /* Edge vignette */
    radial-gradient(ellipse at center, transparent 25%, rgba(10, 16, 16, 0.7) 75%, rgba(10, 16, 16, 0.95) 100%),
    /* Diagonal teal tint */
    linear-gradient(135deg, rgba(13, 42, 42, 0.55) 0%, transparent 50%, rgba(10, 16, 16, 0.75) 100%);
}

/* Top + bottom darken bands so nav and stats area stay legible */
.hero-vignette::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10, 16, 16, 0.85) 0%,
      rgba(10, 16, 16, 0.5) 14%,
      transparent 30%,
      transparent 70%,
      rgba(10, 16, 16, 0.6) 90%,
      rgba(10, 16, 16, 0.92) 100%);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    radial-gradient(ellipse at top, transparent 30%, rgba(10, 16, 16, 0.5) 80%),
    linear-gradient(to bottom, transparent 50%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(1280px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 40px;
  opacity: 0;
  animation: revealUp 1s var(--ease-out) 0.6s forwards;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.6);
}
.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold-bright);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fffbf2;
  margin-bottom: 40px;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.85), 0 2px 8px rgba(0, 0, 0, 0.6);
}
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: revealUp 1.2s var(--ease-out) forwards;
}
.hero-line-1 { animation-delay: 0.7s; }
.hero-line-2 { animation-delay: 0.9s; }
.hero-line-3 { animation-delay: 1.1s; }

.hero-line-2 em {
  font-family: var(--font-italic);
  font-style: normal;
  color: var(--gold-bright);
  font-weight: 400;
}

.hero-line-3 {
      background: linear-gradient(120deg, #fffce0, var(--gold-bright), #fbfbfb);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: revealUp 1.2s var(--ease-out) 1.1s forwards, shimmer 8s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 251, 242, 0.92);
  max-width: 620px;
  margin: 0 auto 48px;
  font-weight: 300;
  opacity: 0;
  animation: revealUp 1s var(--ease-out) 1.4s forwards;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
  opacity: 0;
  animation: revealUp 1s var(--ease-out) 1.6s forwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 28px 32px;
  border-radius: var(--r-lg);
  background: rgba(10, 16, 16, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 251, 242, 0.18);
  opacity: 0;
  animation: revealUp 1s var(--ease-out) 1.8s forwards;
  flex-wrap: nowrap;
  max-width: 1000px;
  margin: 0 auto;
}
.stat { text-align: center; flex-shrink: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  font-weight: 400;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
  white-space: nowrap;
}
.stat-num--text {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  letter-spacing: 0.06em;
  padding-top: 0.25em;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 251, 242, 0.88);
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 251, 242, 0.22);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 251, 242, 0.85);
  z-index: 5;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -40px; left: 0;
  width: 100%; height: 40px;
  background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -40px; }
  100% { top: 40px; }
}

/* ========== SLIDE INDICATOR ========== */
.hero-slide-indicator {
  position: absolute;
  bottom: 30px;
  right: 5vw;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.slide-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 251, 242, 0.9);
  padding: 8px 16px;
  background: rgba(10, 16, 16, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 251, 242, 0.18);
  border-radius: 100px;
  transition: all 0.4s var(--ease);
}
.slide-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-bright);
  font-weight: 400;
  letter-spacing: 0;
}
.slide-divider {
  width: 16px;
  height: 1px;
  background: var(--gold-bright);
}

.slide-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 8px 14px;
  background: rgba(10, 16, 16, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 251, 242, 0.18);
  border-radius: 100px;
}
.slide-dot {
  width: 32px;
  height: 4px;
  background: rgba(255, 251, 242, 0.25);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 0;
  transition: width 0.4s var(--ease), background 0.3s var(--ease);
}
.slide-dot:hover { background: rgba(255, 251, 242, 0.45); }
.slide-dot.active {
  width: 60px;
  background: rgba(255, 251, 242, 0.18);
}
.slide-dot-progress {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-glow), var(--gold));
  border-radius: 2px;
  transform-origin: left center;
}
.slide-dot.active .slide-dot-progress {
  animation: slideProgress 8s linear forwards;
}
@keyframes slideProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ========== MARQUEE ========== */
.marquee {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink-mid);
}
.marquee-track span { flex-shrink: 0; }
.marquee-track span:nth-child(odd) { color: var(--gold); }
.marquee-track span:nth-child(2n) {
  color: var(--ink-dim);
  font-size: 16px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== ABOUT ========== */
.about {
  padding: 140px 0;
  position: relative;
  z-index: 2;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-prose p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 20px;
  font-weight: 300;
}
.about-prose p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: italic;
  color: var(--gold);
  float: left;
  line-height: 1;
  margin-right: 12px;
  margin-top: 4px;
}
.about-signatures {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.sig-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.sig-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}
.sig-icon svg { width: 22px; height: 22px; }
.sig-item:hover .sig-icon {
  background: var(--gold);
  color: #fffbf2;
  border-color: var(--gold);
  transform: rotate(360deg);
}
.sig-item h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.sig-item p {
  font-size: 14px;
  color: var(--ink-mid);
}

.about-right {
  position: relative;
}
.about-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--line-strong);
}
.about-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 1.2s var(--ease);
}
.about-card:hover .about-card-img {
  transform: scale(1.05);
}
.about-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 16, 16, 0.95) 0%, rgba(10, 16, 16, 0.5) 40%, rgba(13, 42, 42, 0.4) 100%);
}
.about-card-quote {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 2;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.5;
  color: var(--gold-bright);
  display: block;
  margin-bottom: 16px;
}
.about-card-quote p {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  color: #fffbf2;
  margin-bottom: 20px;
}
.quote-attr {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.about-badge {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #fffbf2;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 40px -10px rgba(160, 124, 74, 0.45);
  animation: rotateSlow 30s linear infinite;
  z-index: 3;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }
.about-badge > * { animation: counterRotate 30s linear infinite; }
@keyframes counterRotate { to { transform: rotate(-360deg); } }
.badge-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}
.badge-num span {
  font-size: 24px;
  vertical-align: super;
}
.badge-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.3;
}

/* ========== PILLARS (with images) ========== */
.pillars {
  padding: 140px 0;
  position: relative;
  z-index: 2;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.pillar-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4.2;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s var(--ease);
  isolation: isolate;
}
.pillar-card:hover {
  transform: translateY(-8px);
}

.pillar-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.7) brightness(0.85);
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
  z-index: 0;
}
.pillar-card:hover .pillar-img {
  transform: scale(1.1);
  filter: saturate(1) brightness(1);
}

.pillar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 16, 16, 0.3) 0%,
    rgba(10, 16, 16, 0.65) 55%,
    rgba(10, 16, 16, 0.95) 100%);
  z-index: 1;
  transition: background 0.5s var(--ease);
}
.pillar-card:hover .pillar-overlay {
  background: linear-gradient(180deg,
    rgba(13, 42, 42, 0.4) 0%,
    rgba(10, 16, 16, 0.7) 50%,
    rgba(10, 16, 16, 0.95) 100%);
}

.pillar-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  color: #fffbf2;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 251, 242, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  margin-bottom: 16px;
  background: rgba(10, 16, 16, 0.5);
  backdrop-filter: blur(6px);
  transition: all 0.5s var(--ease-spring);
}
.pillar-icon svg {
  width: 28px;
  height: 28px;
  transition: transform 0.6s var(--ease);
}
.pillar-card:hover .pillar-icon {
  border-color: var(--gold-bright);
  background: rgba(201, 168, 124, 0.25);
  transform: scale(1.05) rotate(8deg);
}

.pillar-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: #fffbf2;
  margin-bottom: 10px;
  transition: color 0.4s var(--ease);
}
.pillar-card:hover .pillar-content h3 {
  color: var(--gold-bright);
}

.pillar-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 251, 242, 0.85);
  margin-bottom: 18px;
}

.pillar-arrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pillar-arrow em {
  font-style: normal;
  transition: transform 0.4s var(--ease);
  display: inline-block;
}
.pillar-card:hover .pillar-arrow em {
  transform: translateX(8px);
}

/* ========== FEATURED GALLERY ========== */
.featured-gallery {
  padding: 140px 0;
  position: relative;
  z-index: 2;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  aspect-ratio: 4/5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1) brightness(1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 16, 16, 0.1) 0%,
    rgba(10, 16, 16, 0.3) 50%,
    rgba(10, 16, 16, 0.95) 100%);
  z-index: 1;
  transition: background 0.5s var(--ease);
}
.gallery-item:hover::after {
  background: linear-gradient(180deg,
    rgba(13, 42, 42, 0.2) 0%,
    rgba(10, 16, 16, 0.4) 50%,
    rgba(10, 16, 16, 0.95) 100%);
}

.gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
  color: #fffbf2;
}
.gallery-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 4px 10px;
  border: 1px solid var(--gold-bright);
  border-radius: 100px;
  margin-bottom: 12px;
}
.gallery-content h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: #fffbf2;
  margin-bottom: 8px;
  transition: color 0.4s var(--ease);
}
.gallery-item:hover .gallery-content h3 {
  color: var(--gold-bright);
}
.gallery-content p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 251, 242, 0.85);
  max-width: 480px;
}

/* ========== SERVICES ========== */
.services {
  padding: 140px 0;
  position: relative;
  z-index: 2;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab-btn {
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border-radius: 100px;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active {
    background: linear-gradient(135deg, #d3d2cf, #c2c2c2);
    color: #826e41;
    font-weight: 600;
    box-shadow: 0 6px 20px -6px rgb(181 181 181 / 50%);
}

.services-search {
  position: relative;
  max-width: 540px;
  margin: 0 auto 48px;
}
.services-search svg {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--ink-mid);
}
.services-search input {
  width: 100%;
  padding: 18px 24px 18px 56px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease);
}
.services-search input::placeholder { color: var(--ink-mid); }
.services-search input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg);
  box-shadow: 0 0 0 4px rgba(201, 168, 124, 0.08);
}

.services-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.category-section {
  animation: fadeInUp 0.6s var(--ease-out);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.category-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--ink);
  flex: 1;
}
.category-count {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  display: inline-block;
}
.category-count:hover {
  background: var(--gold);
  color: #fffbf2;
}

.category-view-all {
  margin-top: 24px;
  text-align: center;
}
.category-view-all a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7f6a3a;
  padding: 14px 28px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  transition: all 0.4s var(--ease);
  text-decoration: none;
}
.category-view-all a:hover {
  background: linear-gradient(135deg, #b3ad93 0%, #D19982 100%);
  color: #fffbf2;
  border-color: var(--teal-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px #ffefa97d, inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.category-view-all a span {
  transition: transform 0.3s var(--ease);
}
.category-view-all a:hover span {
  transform: translateX(4px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

/* ── SERVICE CARD — Split layout: image top, content bottom ── */
.service-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 48px -16px rgba(26, 36, 36, 0.20),
              0 0 0 1px rgba(160, 124, 74, 0.22);
}

/* ── Top accent bar on hover ── */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-bright), var(--gold));
  transition: width 0.5s var(--ease);
  z-index: 3;
}
.service-card:hover::before { width: 100%; }

/* ── Image section (top half) ── */
.service-card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface);
  position: relative;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
  filter: saturate(0.85) brightness(0.97);
}
.service-card:hover .service-card-bg {
  transform: scale(1.07);
  filter: saturate(1) brightness(1);
}

/* ── Content section (bottom half) ── */
.service-card-body {
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--bg-soft);
}

.service-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.25;
  transition: color 0.3s var(--ease);
}
.service-card:hover .service-name { color: var(--gold); }

.service-desc {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-mid);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 0;
  border-top: 1px solid var(--line-strong);
  gap: 12px;
}

.service-duration {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
}
.service-duration::before {
  content: '◷';
  color: var(--gold);
  font-size: 13px;
}

.service-price {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: #7f6a3a;
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.service-price-from {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-family: var(--font-body);
  font-weight: 500;
}
.service-price-strike {
  font-size: 13px;
  color: var(--ink-dim);
  text-decoration: line-through;
  font-family: var(--font-body);
  font-weight: 300;
  margin-right: 4px;
}
.service-price-poa {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
}

.service-book-cta {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), max-height 0.35s var(--ease);
  max-height: 0;
  overflow: hidden;
}
.service-card:hover .service-book-cta {
  opacity: 1;
  transform: translateY(0);
  max-height: 50px;
}
.service-book-cta::after {
  content: '→';
  font-size: 15px;
  transition: transform 0.35s var(--ease);
}
.service-card:hover .service-book-cta::after {
  transform: translateX(4px);
}

.services-cta {
  margin-top: 80px;
  text-align: center;
  padding: 60px 30px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.services-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(58, 168, 168, 0.1), transparent 70%);
}
.services-cta p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
}
.services-cta .btn { position: relative; }

.no-results {
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-mid);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
}

/* ========== WHY US (with image) ========== */
.why {
  padding: 140px 0;
  position: relative;
  z-index: 2;
}
.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.why-left {
  position: sticky;
  top: 120px;
}

.why-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  margin-bottom: 16px;
}
.why-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.why-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(13, 42, 42, 0.2) 0%,
    rgba(10, 16, 16, 0.5) 100%);
}

.why-right {
  display: flex;
  flex-direction: column;
}
.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
}
.why-item:hover { padding-left: 12px; }
.why-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.why-item:hover::before {
  width: 8px;
  transform: translateY(-50%);
}
.why-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--ink-dim);
  line-height: 1;
  transition: color 0.4s var(--ease);
}
.why-item:hover .why-num { color: var(--gold); }
.why-item h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.why-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 140px 0;
  position: relative;
  z-index: 2;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testi-card {
  background: linear-gradient(145deg, var(--bg-soft), var(--bg));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.testi-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px -20px rgba(26, 36, 36, 0.18);
}
.testi-card:hover::before { opacity: 1; }

.testi-quote {
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 0.5;
  color: var(--gold);
  height: 30px;
  margin-bottom: 30px;
  font-style: italic;
}
.testi-card p {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 32px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  position: relative;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  flex-shrink: 0;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.testi-role {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-top: 2px;
}
.testi-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  z-index: 2;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.5);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13, 42, 42, 0.85) 0%,
    rgba(10, 16, 16, 0.92) 100%);
}
.cta-orb {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  filter: blur(120px);
  opacity: 0.25;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatSlow 25s ease-in-out infinite;
}
@keyframes floatSlow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(40px); }
}
.cta-content {
  position: relative;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: #fffbf2;
  margin-bottom: 20px;
  line-height: 1.05;
}
.cta-title em {
  font-family: var(--font-italic);
  font-style: normal;
  color: var(--gold-bright);
}
.cta-sub {
  font-size: 18px;
  color: rgba(255, 251, 242, 0.88);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== CONTACT ========== */
.contact {
  padding: 140px 0;
  position: relative;
  z-index: 2;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}
.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.info-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}
.info-icon svg { width: 22px; height: 22px; }
.info-item:hover .info-icon {
  background: var(--gold);
  color: #fffbf2;
  transform: scale(1.05);
}
.info-item h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.info-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mid);
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.contact-socials a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all 0.4s var(--ease);
}
.contact-socials svg { width: 18px; height: 18px; }
.contact-socials a:hover {
  background: var(--gold);
  color: #fffbf2;
  border-color: var(--gold);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-bright), var(--gold), var(--teal-bright));
}
.form-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 10px;
}
.optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-dim);
  font-style: italic;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 14px;
  transition: all 0.3s var(--ease);
  font-family: var(--font-body);
}
.form-field textarea { resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-dim); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 124, 0.1);
}
.form-note {
  font-size: 12px;
  color: var(--ink-dim);
  text-align: center;
  margin-top: 16px;
  font-style: italic;
}

/* ========== CONTACT MAP ========== */
.contact-map {
  margin-top: 36px;
  position: relative;
}
.contact-map iframe {
  display: block;
  border: 1px solid var(--line-strong);
  filter: saturate(0.85) contrast(1.05);
  transition: filter 0.4s var(--ease);
}
.contact-map iframe:hover {
  filter: saturate(1) contrast(1);
}
.map-gmb-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all 0.4s var(--ease);
  text-decoration: none;
}
.map-gmb-link:hover {
  background: var(--gold);
  color: #fffbf2;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(160, 124, 74, 0.4);
}
.map-gmb-link:hover svg {
  color: #fffbf2;
}
.map-gmb-link svg {
  color: var(--gold);
  transition: color 0.3s var(--ease);
}
.gmb-rating {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  transition: color 0.3s var(--ease);
}
.map-gmb-link:hover .gmb-rating {
  color: #fffbf2;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg);
  padding: 80px 0 30px;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .footer-logo {
  width: 280px;
  margin-bottom: 24px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 360px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--ink-mid);
  transition: all 0.3s var(--ease);
}
.footer-col a:hover {
  color: var(--gold);
  padding-left: 8px;
}
.footer-col li:not(:has(a)) {
  font-size: 14px;
  color: var(--ink-mid);
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
}
.footer-bottom a {
  color: var(--ink-mid);
  transition: color 0.3s var(--ease);
}
.footer-bottom a:hover { color: var(--gold); }

/* ========== FLOATING CTA ========== */
.float-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 30px -8px rgba(37, 211, 102, 0.6);
  transition: all 0.4s var(--ease);
  animation: pulseRing 2.5s ease-out infinite;
}
.float-cta svg { width: 28px; height: 28px; }
.float-cta:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px -8px rgba(37, 211, 102, 0.8);
}
@keyframes pulseRing {
  0% {
    box-shadow: 0 8px 30px -8px rgba(37, 211, 102, 0.6),
                0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  100% {
    box-shadow: 0 8px 30px -8px rgba(37, 211, 102, 0.6),
                0 0 0 20px rgba(37, 211, 102, 0);
  }
}

/* ========== DOCTORS & PROFESSIONALS ========== */
.doctors {
  padding: 140px 0;
  position: relative;
  z-index: 2;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

/* Lead doctor spans full width */
.doctor-card-lead {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  min-height: 520px;
}
.doctor-card-lead .doctor-img-wrap {
  aspect-ratio: auto;
  border-radius: var(--r-lg) 0 0 var(--r-lg);
}
.doctor-card-lead .doctor-info {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.doctor-card-lead .doctor-name {
  font-size: 34px;
}
.doctor-card-lead .doctor-title {
  font-size: 14px;
  margin-bottom: 20px;
}
.doctor-card-lead .doctor-bio {
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
}
.doctor-card-lead .doctor-bio em {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
}

.doctor-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  position: relative;
}
.doctor-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: 0 28px 60px -20px rgba(26, 36, 36, 0.2);
}
.doctor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-bright), var(--gold), var(--teal-bright));
  opacity: 0;
  z-index: 3;
  transition: opacity 0.4s var(--ease);
}
.doctor-card:hover::before { opacity: 1; }

.doctor-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.doctor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
}
.doctor-card:hover .doctor-img-wrap img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.05);
}
.doctor-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 40%,
    rgba(10, 16, 16, 0.15) 70%,
    rgba(10, 16, 16, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.doctor-badge-role {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fffbf2;
  font-weight: 600;
  padding: 8px 18px;
  background: rgba(10, 16, 16, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 251, 242, 0.2);
  border-radius: 100px;
}

.doctor-info {
  padding: 32px 28px 36px;
}
.doctor-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  transition: color 0.4s var(--ease);
}
.doctor-card:hover .doctor-name {
  color: var(--gold);
}
.doctor-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7d29;
  font-weight: 500;
  margin-bottom: 14px;
}
.doctor-bio {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 18px;
  font-weight: 300;
}
.doctor-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.doctor-specialties span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}
.doctor-specialties span:hover {
  background: var(--gold);
  color: #fffbf2;
}

.doctor-socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.doctor-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mid);
  transition: all 0.4s var(--ease);
}
.doctor-socials svg { width: 16px; height: 16px; }
.doctor-socials a:hover {
  background: var(--gold);
  color: #fffbf2;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.doctors-cta {
  margin-top: 80px;
  text-align: center;
  padding: 60px 30px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.doctors-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(58, 168, 168, 0.08), transparent 70%);
}
.doctors-cta p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
}
.doctors-cta .btn { position: relative; }

/* ========== AWARDS & RECOGNITION ========== */
.awards {
  padding: 140px 0;
  position: relative;
  z-index: 2;
}

/* Logo marquee strip */
.awards-marquee {
  margin-bottom: 80px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.awards-marquee::before,
.awards-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.awards-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.awards-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}
.awards-marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: awardScroll 30s linear infinite;
  width: max-content;
}
@keyframes awardScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.award-logo-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}
.award-logo-item:hover { opacity: 1; }
.award-logo-item svg {
  width: 44px;
  height: 44px;
  color: var(--gold);
  flex-shrink: 0;
}
.award-logo-item span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--ink-mid);
  font-weight: 500;
  white-space: nowrap;
}

/* Award cards */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.award-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.award-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal-glow));
  transition: width 0.5s var(--ease);
}
.award-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 56px -20px rgba(26, 36, 36, 0.18);
}
.award-card:hover::before { width: 100%; }
.award-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: all 0.5s var(--ease);
}
.award-icon svg { width: 28px; height: 28px; }
.award-card:hover .award-icon {
  background: var(--gold);
  color: #fffbf2;
  border-color: var(--gold);
  transform: scale(1.05) rotate(8deg);
}
.award-year {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--teal-glow);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.award-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
  transition: color 0.3s var(--ease);
}
.award-card:hover .award-title { color: var(--gold); }
.award-body {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 18px;
  font-weight: 300;
}
.award-org {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  display: inline-block;
}

/* Credential stats bar */
.awards-credentials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 40px 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.awards-credentials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(160, 124, 74, 0.06), transparent 70%);
}
.credential {
  text-align: center;
  position: relative;
}
.credential-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.credential-num span {
  font-size: 0.6em;
  vertical-align: super;
  color: var(--gold-soft);
}
.credential-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  white-space: nowrap;
}
.credential-divider {
  width: 1px;
  height: 50px;
  background: var(--line-strong);
  flex-shrink: 0;
}

/* ========== SERVICES PAGE ========== */
.services-page-hero {
  padding: 160px 0 60px;
  position: relative;
  z-index: 2;
  background: var(--bg);
}
.services-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding: 6px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 100px;
  width: fit-content;
}
.sp-nav-pill {
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border-radius: 100px;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.sp-nav-pill:hover { color: var(--ink); }
.sp-nav-pill.active {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-glow));
  color: #fffbf2;
  font-weight: 600;
  box-shadow: 0 6px 20px -6px rgba(58, 168, 168, 0.5);
}

.services-page .services-search {
  margin-bottom: 60px;
}

.pillar-section {
  margin-bottom: 100px;
}
.pillar-section:last-child { margin-bottom: 0; }

.pillar-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  margin-bottom: 48px;
  border-bottom: 2px solid var(--line-strong);
}
.pillar-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
}
.pillar-section-count {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  font-weight: 600;
  padding: 8px 20px;
  background: rgba(44, 122, 123, 0.08);
  border: 1px solid rgba(44, 122, 123, 0.2);
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.services-page .category-section {
  scroll-margin-top: 120px;
}

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Prevent horizontal overflow */
html, body { overflow-x: hidden; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }

  .about-container,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .doctor-card-lead {
    grid-column: 1 / -1;
  }
  .why-left { position: static; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: span 2; }

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

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .awards-credentials {
    gap: 32px;
    padding: 32px;
  }

  .hero-slide-indicator {
    right: 4vw;
    bottom: 24px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px 24px;
    padding: 24px 24px;
  }
  .stat-divider { display: none; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }

  .container { width: 90vw; }

  /* ---- HERO ---- */
  .hero { padding: 120px 0 80px; min-height: 100svh; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 4.5rem); margin-bottom: 24px; }
  .hero-subtitle { font-size: 15px; margin-bottom: 32px; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 24px; }
  .hero-stats {
    gap: 18px 12px;
    padding: 20px 16px;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: var(--r-md);
  }
  .stat { flex: 0 1 calc(50% - 12px); min-width: 0; }
  /* Mobile order: row 1 = Clients + Specialists, row 2 = Years + Treatments, row 3 = USFDA */
  .hero-stats .stat:nth-child(1) { order: 1; } /* Happy Clients */
  .hero-stats .stat:nth-child(7) { order: 2; } /* Expert Specialists */
  .hero-stats .stat:nth-child(3) { order: 3; } /* Years of Excellence */
  .hero-stats .stat:nth-child(5) { order: 4; } /* Treatments */
  .hero-stats .stat:nth-child(9) { order: 5; } /* USFDA */
  .stat-num { font-size: 1.6rem; }
  .stat-num--text { font-size: 1.35rem; padding-top: 0.2em; }
  .stat-label { font-size: 9px; letter-spacing: 0.12em; }
  .stat-divider { display: none; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 60px;
    gap: 12px;
  }
  .hero-actions .btn { width: 100%; padding: 14px 24px; }
  .hero-scroll { display: none; }
  .hero-slide-indicator {
    right: 50%;
    transform: translateX(50%);
    align-items: center;
    bottom: 16px;
  }
  .slide-meta { font-size: 9px; padding: 5px 10px; }
  .slide-num { font-size: 14px; }
  .slide-dot { width: 20px; }
  .slide-dot.active { width: 36px; }

  /* ---- MOBILE MENU ---- */
  .mobile-menu {
    z-index: 99;
    gap: 24px;
    padding: 100px 32px 40px;
    overflow-y: auto;
  }
  .mobile-menu a {
    font-size: 24px;
  }
  .mobile-menu .btn {
    margin-top: 12px;
    width: 100%;
    text-align: center;
    font-size: 18px;
  }
  .nav-burger {
    z-index: 101;
    position: relative;
  }

  /* ---- MARQUEE ---- */
  .marquee-track { font-size: 20px; gap: 20px; }
  .marquee-track span:nth-child(2n) { font-size: 12px; }

  /* ---- SECTIONS GENERAL ---- */
  .about, .pillars, .featured-gallery, .services, .why, .testimonials, .cta-banner, .contact, .doctors, .awards {
    padding: 60px 0;
  }
  .section-header.center { margin-bottom: 40px; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.8rem); margin-bottom: 16px; }
  .section-sub { font-size: 15px; }

  /* ---- ABOUT ---- */
  .about-card { aspect-ratio: 3/4; }
  .about-badge {
    width: 90px;
    height: 90px;
    top: -16px;
    right: -8px;
  }
  .badge-num { font-size: 30px; }
  .about-card-quote {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
  .about-card-quote p { font-size: 16px; }
  .quote-mark { font-size: 56px; margin-bottom: 8px; }
  .about-prose p { font-size: 15px; }
  .sig-item { gap: 14px; }
  .sig-icon { width: 40px; height: 40px; }
  .sig-icon svg { width: 18px; height: 18px; }

  /* ---- PILLARS ---- */
  .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pillar-card { aspect-ratio: 3/4.5; }
  .pillar-content { padding: 20px 16px; }
  .pillar-content h3 { font-size: 20px; margin-bottom: 6px; }
  .pillar-content p { font-size: 12px; margin-bottom: 12px; }
  .pillar-icon { width: 44px; height: 44px; margin-bottom: 12px; }
  .pillar-icon svg { width: 22px; height: 22px; }
  .pillar-arrow { font-size: 10px; }

  /* ---- GALLERY ---- */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 16/10; }
  .gallery-content { padding: 20px; }
  .gallery-content h3 { font-size: 22px; }

  /* ---- SERVICES ---- */
  .services-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    padding: 4px;
    border-radius: var(--r-md);
  }
  .tab-btn { flex-shrink: 0; padding: 10px 16px; font-size: 10px; }
  .services-search { margin-bottom: 32px; }
  .services-search input { padding: 14px 20px 14px 48px; font-size: 13px; }
  .service-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card-body { padding: 14px 16px 12px; }
  .service-name { font-size: 17px; }
  .service-desc { font-size: 12px; }
  .service-price { font-size: 17px; }
  .category-header { flex-direction: column; align-items: flex-start; gap: 8px; padding-bottom: 14px; }
  .category-name { font-size: 1.4rem; }
  .category-view-all a { font-size: 11px; padding: 12px 20px; }
  .services-cta { padding: 40px 20px; margin-top: 50px; }
  .services-cta p { font-size: 18px; }

  /* ---- WHY US ---- */
  .why-item { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
  .why-num { font-size: 32px; }
  .why-item h3 { font-size: 22px; }
  .why-item p { font-size: 14px; }
  .why-image-wrap { aspect-ratio: 16/10; }

  /* ---- DOCTORS ---- */
  .doctors-grid { grid-template-columns: 1fr; }
  .doctor-card-lead {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .doctor-card-lead .doctor-img-wrap {
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    aspect-ratio: 4/3;
  }
  .doctor-card-lead .doctor-info {
    padding: 28px 20px;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
  }
  .doctor-card-lead .doctor-name { font-size: 26px; }
  .doctor-card-lead .doctor-bio { font-size: 14px; }
  .doctor-card .doctor-img-wrap { aspect-ratio: 1/1; }
  .doctor-info { padding: 24px 20px; }
  .doctor-name { font-size: 22px; }
  .doctor-bio { font-size: 13px; }
  .doctor-specialties span { font-size: 9px; padding: 4px 10px; }
  .doctors-cta { padding: 40px 20px; margin-top: 50px; }

  /* ---- TESTIMONIALS ---- */
  .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card { padding: 28px 24px; }
  .testi-quote { font-size: 64px; height: 24px; margin-bottom: 20px; }
  .testi-card p { font-size: 16px; margin-bottom: 24px; }

  /* ---- AWARDS ---- */
  .awards-grid { grid-template-columns: 1fr; }
  .award-card { padding: 28px 22px; }
  .award-title { font-size: 20px; }
  .awards-credentials {
    flex-wrap: wrap;
    gap: 20px 32px;
    padding: 24px 20px;
    justify-content: center;
  }
  .credential-divider { display: none; }
  .credential-num { font-size: 1.8rem; }
  .credential-label { font-size: 9px; letter-spacing: 0.12em; }
  .awards-marquee-track { gap: 40px; }

  /* ---- CTA BANNER ---- */
  .cta-banner { padding: 80px 0; }
  .cta-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .cta-sub { font-size: 15px; margin-bottom: 28px; }

  /* ---- CONTACT ---- */
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-title { font-size: 24px; margin-bottom: 24px; }
  .contact-map iframe { height: 200px; }
  .map-gmb-link { font-size: 10px; padding: 10px 16px; }
  .info-item { gap: 14px; }
  .info-icon { width: 40px; height: 40px; }
  .info-icon svg { width: 18px; height: 18px; }
  .info-item h4 { font-size: 18px; }
  .info-item p { font-size: 13px; }
  .contact-socials { gap: 10px; margin-top: 28px; padding-top: 24px; }
  .contact-socials a { width: 40px; height: 40px; }

  /* ---- FOOTER ---- */
  .footer { padding: 60px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
  .footer-brand .footer-logo { width: 220px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding-top: 24px;
  }

  /* ---- FLOATING CTA ---- */
  .float-cta { width: 50px; height: 50px; right: 14px; bottom: 14px; }
  .float-cta svg { width: 24px; height: 24px; }

  /* ---- SERVICES PAGE ---- */
  .services-page-hero { padding: 110px 0 32px; }
  .services-page-nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--r-md);
  }
  .sp-nav-pill { flex-shrink: 0; padding: 10px 14px; font-size: 10px; }
  .pillar-section { margin-bottom: 50px; }
  .pillar-section-header { flex-direction: column; align-items: flex-start; gap: 10px; padding-bottom: 20px; margin-bottom: 32px; }
  .pillar-section-title { font-size: 1.8rem; }
}

/* ---- Extra small devices (< 400px) ---- */
@media (max-width: 400px) {
  .container { width: 94vw; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { padding: 16px 12px; gap: 14px 10px; }
  .stat-num { font-size: 1.4rem; }
  .stat-num--text { font-size: 1.2rem; }
  .stat { flex: 0 1 calc(50% - 10px); min-width: 0; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { aspect-ratio: 16/10; }
  .service-card-body { padding: 12px 14px 10px; }
  .service-name { font-size: 16px; }
  .btn { padding: 13px 22px; font-size: 11px; }
  .btn-lg { padding: 16px 28px; font-size: 12px; }
  .nav-logo-img { height: 48px !important; }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 16px -4px rgba(26, 36, 36, 0.15);
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: #fffbf2;
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -8px rgba(160, 124, 74, 0.5);
}

@media (max-width: 768px) {
  .back-to-top { width: 42px; height: 42px; left: 14px; bottom: 14px; }
  .back-to-top svg { width: 18px; height: 18px; }
}

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