/* RV Dentalign — public site stylesheet. Brand theme: orange + purple. 2026 pass. */

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

:root {
  --orange: #EE7E1A;
  --orange-light: #FDF0E1;
  --orange-dark: #C96C0F;
  --purple: #470857;
  --purple-light: #EFE6F4;
  --purple-mid: #5A1E78;
  --purple-dark: #2A0B3A;
  --white: #FFFFFF;
  --off-white: #FAF7F5;
  --gray-50: #F5F4F3;
  --gray-100: #E9E6E4;
  --gray-300: #B3ACAF;
  --gray-500: #6E666B;
  --gray-700: #3D373A;
  --gray-900: #1C1719;
  --font-display: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 68px;
  --grad-orange: linear-gradient(135deg, #F79A3E 0%, #EE7E1A 55%, #E07610 100%);
  --grad-purple: linear-gradient(135deg, #4A1663 0%, #470857 55%, #2A0B3A 100%);
  --radius-card: 20px;
  --shadow-card: 0 2px 10px rgba(61,17,82,0.05);
  --shadow-card-hover: 0 24px 48px -16px rgba(61,17,82,0.22);
  --shadow-btn: 0 10px 24px -8px rgba(242,137,30,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background:
    radial-gradient(ellipse 900px 700px at 8% -5%, rgba(238,126,26,0.07), transparent 60%),
    radial-gradient(ellipse 1000px 800px at 95% 18%, rgba(71,8,87,0.06), transparent 55%),
    radial-gradient(ellipse 800px 650px at 10% 55%, rgba(71,8,87,0.05), transparent 55%),
    radial-gradient(ellipse 900px 700px at 92% 85%, rgba(238,126,26,0.06), transparent 55%),
    #FDFBF9;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* Ticker renders before hero in DOM (mobile-correct position). On desktop, the
   HOME page only becomes a flex column so the ticker can slot below the hero.
   Scoped via :has(.hero) so inner pages keep natural document order. */
@media (min-width: 901px) {
  body:has(.hero) { display: flex; flex-direction: column; }
  body:has(.hero) > * { order: 2; }
  body:has(.hero) > .hero { order: 1; }
}

a { color: inherit; }
img { max-width: 100%; display: block; }
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; flex-shrink: 0; }
::selection { background: var(--orange-light); color: var(--orange-dark); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

/* ── SCROLL REVEAL (progressive enhancement, added by main.js) ── */
.reveal { opacity: 0; transform: translateY(28px) scale(0.985); filter: blur(6px); transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease; will-change: opacity, transform, filter; }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal-left { opacity: 0; transform: translateX(-36px); filter: blur(4px); transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease; }
.reveal-left.in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal-left { opacity: 1; transform: none; filter: none; transition: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(61,17,82,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 100;
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.site-nav.scrolled { background: rgba(255,255,255,0.94); box-shadow: 0 12px 32px -16px rgba(61,17,82,0.25); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 44px; width: auto; }
.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--grad-orange);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-display); font-size: 19px;
  box-shadow: 0 4px 12px rgba(242,137,30,0.35);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-text span:first-child { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--purple); letter-spacing: -0.01em; }
.nav-logo-text span:last-child { font-size: 11px; color: var(--gray-500); font-weight: 400; }

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--gray-700); font-size: 14px; font-weight: 500;
  transition: color 0.2s; position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--grad-orange); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-call, .nav-wa {
  font-size: 13px; font-weight: 500; text-decoration: none; color: var(--purple);
  display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s;
}
.nav-call:hover, .nav-wa:hover { color: var(--orange-dark); }
.nav-cta {
  background: var(--grad-orange); color: white; border: none;
  padding: 11px 24px; border-radius: 100px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  box-shadow: var(--shadow-btn);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 28px -8px rgba(242,137,30,0.6); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--purple); border-radius: 2px; transition: 0.3s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gray-100);
  padding: 24px 24px 32px; flex-direction: column; gap: 4px;
  z-index: 99; box-shadow: 0 24px 48px rgba(61,17,82,0.12);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--gray-700); text-decoration: none; font-size: 16px; font-weight: 500; padding: 12px 0; border-bottom: 1px solid var(--gray-50); display: block; }
.mobile-menu .m-book { margin-top: 16px; background: var(--grad-orange); color: white; text-align: center; padding: 14px; border-radius: 100px; font-weight: 600; border-bottom: none; box-shadow: var(--shadow-btn); }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--grad-purple); padding: 11px 0; overflow: hidden; white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.ticker-track { display: inline-flex; gap: 60px; animation: ticker 22s linear infinite; }
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
.ticker-item { color: white; font-size: 13px; font-weight: 400; display: inline-flex; align-items: center; gap: 8px; opacity: 0.92; }
.ticker-item a { color: white; text-decoration: underline; }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── HERO (home) ── */
.hero {
  min-height: 100vh; padding-top: var(--nav-h);
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(242,137,30,0.06), transparent),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(61,17,82,0.05), transparent);
}
.hero-content { padding: 80px 48px 80px 80px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-light); color: var(--orange-dark);
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 24px;
  border: 1px solid rgba(242,137,30,0.25);
}
.hero-eyebrow::before {
  content: ''; display: block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 0 rgba(242,137,30,0.5); } 50% { box-shadow: 0 0 0 5px rgba(242,137,30,0); } }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.1; color: var(--purple-dark); margin-bottom: 20px; letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 17px; color: var(--gray-500); margin-bottom: 36px; max-width: 460px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--grad-orange); color: white; padding: 15px 30px; border-radius: 100px;
  font-size: 15px; font-weight: 600; text-decoration: none; border: none; cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(242,137,30,0.6); }
.btn-call {
  background: white; color: var(--purple); padding: 15px 30px; border-radius: 100px;
  font-size: 15px; font-weight: 600; border: 1.5px solid rgba(61,17,82,0.15);
  box-shadow: 0 4px 14px -6px rgba(61,17,82,0.15);
  display: none; align-items: center; gap: 8px; white-space: nowrap;
}
@media (min-width: 901px) { .btn-call { display: inline-flex; } }
.btn-secondary {
  background: rgba(255,255,255,0.7); color: var(--purple); padding: 15px 30px; border-radius: 100px;
  font-size: 15px; font-weight: 600; text-decoration: none; border: 1.5px solid rgba(61,17,82,0.25);
  cursor: pointer; transition: background 0.2s, border-color 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: var(--purple-light); border-color: var(--purple); transform: translateY(-1px); }
.btn-secondary-fill {
  background: var(--grad-purple); color: white; border-color: transparent;
  box-shadow: 0 12px 28px -10px rgba(61,17,82,0.55);
}
.btn-secondary-fill:hover { background: var(--grad-purple); border-color: transparent; filter: brightness(1.08); }

.hero-trust { display: flex; gap: 32px; margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--gray-100); flex-wrap: wrap; }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item strong {
  font-size: 26px; font-weight: 600; font-family: var(--font-display);
  background: linear-gradient(120deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-trust-item span { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

.hero-visual {
  background-image:
    linear-gradient(180deg, rgba(42,11,58,0.15) 0%, rgba(42,11,58,0.55) 100%),
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(242,137,30,0.18), transparent),
    url('/assets/img/east-tambaram.webp');
  background-size: cover;
  background-position: center;
  height: 100%; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.hero-img-placeholder {
  width: 340px; height: 420px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 28px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  box-shadow: 0 32px 80px -12px rgba(61,17,82,0.28); position: relative; z-index: 1;
  animation: float-card 6s ease-in-out infinite;
}
@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .hero-img-placeholder { animation: none; } }
.hero-img-placeholder .img-icon { font-size: 64px; opacity: 0.15; }
.hero-img-placeholder.hero-img-photo { padding: 0; overflow: hidden; background: transparent; }
.hero-img-placeholder.hero-img-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 28px; }
.hero-img-placeholder p { font-size: 13px; color: var(--gray-300); text-align: center; padding: 0 24px; }
.hero-img-placeholder .img-label {
  position: absolute; bottom: -16px; background: white; border: 1px solid var(--gray-100);
  border-radius: 100px; padding: 10px 18px; font-size: 13px; font-weight: 600; color: var(--purple);
  box-shadow: 0 8px 24px rgba(61,17,82,0.14);
}
.hero-shape {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: rgba(242,137,30,0.22); filter: blur(70px);
  bottom: -100px; right: -80px;
}
.hero-shape2 {
  position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: rgba(90,30,120,0.25); filter: blur(60px);
  top: 40px; left: 10px;
}

/* ── SECTIONS common ── */
section { padding: 96px 80px; }
.section-alt { background: var(--off-white); }
.section-purple-tint { background: var(--purple-light); }
.section-orange-tint { background: var(--orange-light); }
.section-eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-dark); margin-bottom: 12px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(27px, 3.2vw, 40px);
  line-height: 1.15; color: var(--purple-dark); margin-bottom: 14px; max-width: 560px;
}
.section-sub { font-size: 16px; color: var(--gray-500); max-width: 520px; line-height: 1.75; margin-bottom: 56px; }
.teal-accent, .brand-accent {
  display: inline-block; width: 40px; height: 4px;
  background: var(--grad-orange); border-radius: 4px; margin-bottom: 16px;
}

/* ── TREATMENTS grid ── */
.treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.treatment-card {
  background: white; border: 1px solid rgba(61,17,82,0.08); border-radius: var(--radius-card);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  cursor: pointer; position: relative; overflow: hidden;
  text-decoration: none; display: block; color: inherit;
}
.treatment-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-5px); border-color: rgba(242,137,30,0.3); }
.treatment-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-orange);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.treatment-card:hover::before { transform: scaleX(1); }
.treatment-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #FDF0E1, #FBE3C8);
  border: 1px solid rgba(242,137,30,0.18);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px;
  transition: transform 0.25s;
}
.treatment-card:hover .treatment-icon { transform: scale(1.08) rotate(-3deg); }
/* Alternate the brand accent (orange/purple, from the logo) across every
   other card so both colors show through the grid instead of just orange. */
.treatment-card:nth-child(even)::before { background: var(--grad-purple); }
.treatment-card:nth-child(even):hover { border-color: rgba(71,8,87,0.3); }
.treatment-card:nth-child(even) .treatment-icon {
  background: linear-gradient(135deg, #F1E4F5, #E4CEED);
  border-color: rgba(71,8,87,0.2);
}
.treatment-card h3 { font-size: 18px; font-weight: 600; color: var(--purple-dark); margin-bottom: 10px; }
.treatment-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px; }
.treatment-link { color: var(--orange-dark); font-size: 14px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.treatment-card:hover .treatment-link { gap: 9px; }

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

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-item {
  display: flex; flex-direction: column; gap: 14px;
  background: white; border: 1px solid rgba(61,17,82,0.07); border-radius: var(--radius-card);
  padding: 30px 28px; box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, transform 0.25s;
}
.value-item:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.value-icon {
  width: 52px; height: 52px; background: var(--grad-purple); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 23px; color: white;
  box-shadow: 0 8px 20px -6px rgba(61,17,82,0.5);
}
.value-item h3 { font-size: 17px; font-weight: 600; color: var(--purple-dark); }
.value-item p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ── LANDMARKS ── */
.landmarks-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.landmarks-grid { display: flex; flex-direction: column; gap: 16px; }
.landmark-item {
  background: white; border: 1px solid rgba(61,17,82,0.08); border-radius: 16px;
  padding: 18px 22px; display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.landmark-item:hover { transform: translateX(6px); box-shadow: 0 12px 28px -10px rgba(61,17,82,0.18); }
.landmark-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #FDF0E1, #FBE3C8);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center; font-size: 21px; flex-shrink: 0;
}
.landmark-item h4 { font-size: 15px; font-weight: 600; color: var(--purple-dark); }
.landmark-item p { font-size: 13px; color: var(--gray-500); margin-top: 2px; }
.landmark-map-embed { border-radius: var(--radius-card); overflow: hidden; border: 1px solid rgba(61,17,82,0.1); height: 340px; box-shadow: var(--shadow-card-hover); }
.landmark-map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card {
  background: white; border: 1px solid rgba(61,17,82,0.08); border-radius: var(--radius-card);
  padding: 30px; box-shadow: var(--shadow-card); position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
  display: block; text-decoration: none; color: inherit;
}
.testimonial-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.testimonial-card::before {
  content: '"'; position: absolute; top: 14px; right: 24px;
  font-family: var(--font-display); font-size: 72px; line-height: 1;
  color: var(--orange-light); pointer-events: none;
}
.stars { color: var(--orange); font-size: 14px; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-card blockquote { font-size: 15px; color: var(--gray-700); line-height: 1.75; font-style: italic; margin-bottom: 20px; position: relative; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-purple);
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: white;
}
.author-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--purple-dark); }
.author-info span { font-size: 12px; color: var(--gray-500); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  border-radius: var(--radius-card); overflow: hidden; border: 1px solid rgba(61,17,82,0.08);
  background: white; box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, transform 0.25s; cursor: pointer; text-decoration: none; display: block; color: inherit;
}
.blog-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-5px); }
.blog-img {
  height: 165px;
  background:
    radial-gradient(ellipse 80% 80% at 20% 20%, rgba(242,137,30,0.12), transparent),
    var(--purple-light);
  display: flex; align-items: center; justify-content: center; color: var(--gray-300);
  font-size: 13px; flex-direction: column; gap: 8px;
}
.blog-img span { font-size: 34px; opacity: 0.3; }
.blog-img.blog-img-photo { padding: 0; }
.blog-img.blog-img-photo img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 24px 24px 26px; }
.blog-tag {
  display: inline-block; background: var(--orange-light); color: var(--orange-dark);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
  border: 1px solid rgba(242,137,30,0.2);
}
.blog-card h3 { font-size: 16px; font-weight: 600; color: var(--purple-dark); line-height: 1.4; margin-bottom: 10px; }
.blog-card p { font-size: 13px; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--gray-300); }
.blog-article { max-width: 720px; margin: 0 auto; padding: 120px 24px 80px; }
.blog-article h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 38px); color: var(--purple-dark); margin-bottom: 16px; line-height: 1.2; }
.blog-article .blog-meta { margin-bottom: 32px; }
.blog-article-body p { margin-bottom: 18px; line-height: 1.85; color: var(--gray-700); }
.blog-article-body h3 { font-family: var(--font-display); font-size: 23px; color: var(--purple-dark); margin: 34px 0 12px; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-item {
  border-radius: 16px; overflow: hidden; border: 1px solid rgba(61,17,82,0.08); aspect-ratio: 1;
  box-shadow: var(--shadow-card); transition: transform 0.25s, box-shadow 0.25s;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-card-hover); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-empty { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: var(--gray-300); }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { font-size: 13px; font-weight: 600; color: var(--purple-dark); margin-bottom: 6px; display: block; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-100); border-radius: 12px;
  font-family: var(--font-body); font-size: 14px; color: var(--gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242,137,30,0.12);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #FDF0E1, #FBE3C8);
  border-radius: 13px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.contact-info-item h4 { font-size: 15px; font-weight: 600; color: var(--purple-dark); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 14px; color: var(--gray-500); text-decoration: none; }
.contact-info-item a:hover { color: var(--orange-dark); }
.form-success { background: var(--orange-light); color: var(--orange-dark); padding: 14px 18px; border-radius: 12px; font-size: 14px; margin-bottom: 16px; border: 1px solid rgba(242,137,30,0.25); }

/* ── ABOUT ── */
.vision-block {
  background:
    radial-gradient(ellipse 60% 80% at 85% 10%, rgba(242,137,30,0.16), transparent),
    var(--grad-purple);
  color: white; padding: 84px 80px; text-align: center;
}
.vision-block .section-eyebrow { color: var(--orange); }
.vision-block h2 { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 36px); margin: 0 auto 20px; max-width: 720px; color: white; }
.vision-block p { font-size: 17px; line-height: 1.85; color: rgba(255,255,255,0.85); max-width: 720px; margin: 0 auto; }

/* ── FOOTER ── */
footer { background: var(--grad-purple); color: white; padding: 64px 80px 32px; position: relative; }
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--purple-mid), var(--orange));
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 14px; max-width: 260px; }
.footer-logo-mark {
  width: 40px; height: 40px; background: var(--grad-orange); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-display); font-size: 19px; margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(242,137,30,0.4);
}
.footer-logo-img {
  height: 48px; width: auto; margin-bottom: 12px;
  background: white; padding: 8px; border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer;
  transition: background 0.2s, transform 0.2s; text-decoration: none; color: white;
}
.social-icon:hover { background: var(--orange); transform: translateY(-2px); }
footer h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-contact-item span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex;
  justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.35);
}
.footer-bmc {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; padding: 9px 16px;
  color: rgba(255,255,255,0.75); font-size: 13px; text-decoration: none; transition: background 0.2s; margin-top: 12px;
}
.footer-bmc:hover { background: rgba(255,255,255,0.14); color: white; }

/* ── STICKY BAR (mobile) ── */
.sticky-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px);
  border-top: 1px solid var(--gray-100); padding: 10px 16px; z-index: 200; gap: 10px;
}
.sticky-btn { flex: 1; padding: 12px 8px; border-radius: 100px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; text-decoration: none; }
.sticky-call { background: var(--grad-orange); color: white; }
.sticky-wa { background: #25D366; color: white; }
.sticky-book { background: var(--grad-purple); color: white; }

/* ── FLOATING WHATSAPP BUBBLE (whole site) ── */
.float-wa {
  position: fixed; right: 24px; bottom: 24px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 28px -6px rgba(37,211,102,0.55);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 16px 36px -6px rgba(37,211,102,0.7); animation: none; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 28px -6px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 12px 28px -6px rgba(37,211,102,0.55), 0 0 0 12px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .float-wa { animation: none; } }

/* ── TREATMENT DETAIL PAGE ── */
.breadcrumb {
  margin-top: var(--nav-h); padding: 14px 80px; background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-500);
}
.breadcrumb a { color: var(--orange-dark); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--gray-300); }
.breadcrumb-current { color: var(--gray-700); font-weight: 500; }

.treatment-hero {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 480px;
  background: radial-gradient(ellipse 60% 60% at 0% 0%, rgba(242,137,30,0.05), transparent);
}
.treatment-hero-content { padding: 64px 56px 64px 80px; display: flex; flex-direction: column; justify-content: center; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px; background: var(--orange-light); color: var(--orange-dark);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px;
  margin-bottom: 20px; width: fit-content; border: 1px solid rgba(242,137,30,0.25);
}
.treatment-hero h1 { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; color: var(--purple-dark); margin-bottom: 18px; letter-spacing: -0.3px; }
.treatment-hero-sub { font-size: 16px; color: var(--gray-500); line-height: 1.75; margin-bottom: 32px; max-width: 420px; }
.treatment-hero-visual {
  background:
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(242,137,30,0.14), transparent),
    radial-gradient(ellipse 80% 70% at 80% 90%, rgba(90,30,120,0.16), transparent),
    var(--purple-light);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.img-placeholder {
  width: 300px; height: 340px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 28px 64px -12px rgba(61,17,82,0.26);
  font-size: 13px; color: var(--gray-300); text-align: center; padding: 24px;
}
.img-placeholder .big-icon { font-size: 56px; opacity: 0.15; }
.img-placeholder.img-photo { padding: 0; overflow: hidden; background: transparent; }
.img-placeholder.img-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }

.stats-bar { background: var(--grad-purple); padding: 26px 80px; display: flex; justify-content: space-between; }
.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; border-right: 1px solid rgba(255,255,255,0.15); padding: 0 20px; }
.stat-item:last-child { border-right: none; }
.stat-item strong { font-size: 27px; font-weight: 600; color: white; font-family: var(--font-display); }
.stat-item span { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 4px; }

.content-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 48px; padding: 72px 80px; align-items: start; }
.content-main { display: flex; flex-direction: column; gap: 56px; }
.content-block h2 { font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 30px); line-height: 1.2; color: var(--purple-dark); margin-bottom: 14px; }
.content-block p { font-size: 15px; color: var(--gray-700); line-height: 1.85; margin-bottom: 14px; }

.needs-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.needs-list li {
  display: flex; align-items: flex-start; gap: 12px; padding: 15px 19px;
  background: var(--off-white); border: 1px solid rgba(61,17,82,0.06);
  border-radius: 14px; font-size: 15px; color: var(--gray-700); line-height: 1.5;
  transition: transform 0.2s, border-color 0.2s;
}
.needs-list li:hover { transform: translateX(4px); border-color: rgba(242,137,30,0.3); }
.needs-list li::before { content: '✓'; color: var(--orange-dark); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step { display: grid; grid-template-columns: 52px 1fr; gap: 20px; position: relative; padding-bottom: 32px; }
.process-step:last-child { padding-bottom: 0; }
.step-left { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--grad-orange); color: white;
  display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; flex-shrink: 0;
  box-shadow: 0 8px 18px -4px rgba(242,137,30,0.5);
}
.step-line { width: 2px; background: linear-gradient(180deg, var(--orange-light), rgba(242,137,30,0.08)); flex: 1; margin-top: 8px; }
.process-step:last-child .step-line { display: none; }
.step-content { padding-top: 8px; }
.step-content h4 { font-size: 16px; font-weight: 600; color: var(--purple-dark); margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 19px 22px;
  border: 1px solid rgba(61,17,82,0.08); border-radius: 16px; background: white;
  box-shadow: var(--shadow-card); transition: box-shadow 0.2s, transform 0.2s;
}
.why-item:hover { box-shadow: 0 14px 32px -12px rgba(61,17,82,0.18); transform: translateY(-2px); }
.why-icon { font-size: 22px; flex-shrink: 0; }
.why-item h4 { font-size: 15px; font-weight: 600; color: var(--purple-dark); margin-bottom: 4px; }
.why-item p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

.faq-section { background: var(--off-white); padding: 72px 80px; }
.faq-section h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 32px); color: var(--purple-dark); margin-bottom: 8px; }
.faq-intro { font-size: 15px; color: var(--gray-500); margin-bottom: 36px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: white; border: 1px solid rgba(61,17,82,0.08); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-card); transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 10px 24px -10px rgba(61,17,82,0.16); }
.faq-q { padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 12px; font-size: 15px; font-weight: 500; color: var(--purple-dark); transition: background 0.2s; }
.faq-q:hover { background: var(--orange-light); }
.faq-arrow { font-size: 18px; color: var(--orange-dark); flex-shrink: 0; transition: transform 0.25s; }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; font-size: 14px; color: var(--gray-500); line-height: 1.75; transition: max-height 0.35s ease, padding 0.2s; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-item.open .faq-q { background: var(--orange-light); color: var(--orange-dark); }

.sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--nav-h) + 20px); }
.sidebar-card {
  background: white; border: 1px solid rgba(61,17,82,0.08); border-radius: var(--radius-card);
  padding: 26px; overflow: hidden; box-shadow: var(--shadow-card);
}
.sidebar-card.featured {
  background:
    radial-gradient(ellipse 80% 60% at 90% 0%, rgba(242,137,30,0.25), transparent),
    var(--grad-purple);
  border-color: transparent;
}
.sidebar-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--purple-dark); }
.sidebar-card.featured h3 { color: white; }
.sidebar-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.sidebar-card.featured p { color: rgba(255,255,255,0.82); }
.sidebar-btn { display: block; text-align: center; text-decoration: none; padding: 13px; border-radius: 100px; font-size: 14px; font-weight: 600; transition: background 0.2s, transform 0.2s; }
.sidebar-btn:hover { transform: translateY(-1px); }
.sidebar-btn.white { background: white; color: var(--purple); }
.sidebar-btn.white:hover { background: var(--orange-light); }
.sidebar-btn.outline { background: transparent; color: rgba(255,255,255,0.85); border: 1.5px solid rgba(255,255,255,0.35); margin-top: 8px; }
.sidebar-btn.outline:hover { background: rgba(255,255,255,0.1); }
.sidebar-treatments { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.sidebar-treatments li a { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-radius: 10px; font-size: 14px; color: var(--gray-700); text-decoration: none; transition: background 0.15s, color 0.15s; }
.sidebar-treatments li a:hover { background: var(--orange-light); color: var(--orange-dark); }
.sidebar-treatments li a.active { background: var(--orange-light); color: var(--orange-dark); font-weight: 500; }
.sidebar-treatments li a span { font-size: 11px; color: var(--gray-300); }
.contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-700); margin-bottom: 10px; }
.contact-item a { color: var(--orange-dark); text-decoration: none; font-weight: 500; }

.cta-banner {
  background:
    radial-gradient(ellipse 50% 90% at 90% 20%, rgba(242,137,30,0.22), transparent),
    var(--grad-purple);
  padding: 72px 80px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.cta-text h2 { font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 36px); color: white; margin-bottom: 10px; }
.cta-text p { font-size: 16px; color: rgba(255,255,255,0.78); max-width: 440px; line-height: 1.75; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.btn-white {
  background: white; color: var(--purple-dark); padding: 15px 30px; border-radius: 100px;
  font-size: 15px; font-weight: 700; text-decoration: none; text-align: center; white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.2s; box-shadow: 0 12px 28px -8px rgba(0,0,0,0.35);
}
.btn-white:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.85); padding: 13px 30px; border-radius: 100px; font-size: 14px; font-weight: 500; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.35); text-align: center; white-space: nowrap; transition: border-color 0.2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.75); color: white; }

.related { padding: 72px 80px; background: var(--off-white); }
.related h2 { font-family: var(--font-display); font-size: clamp(23px, 2.6vw, 28px); color: var(--purple-dark); margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.related-card {
  background: white; border: 1px solid rgba(61,17,82,0.08); border-radius: 16px; padding: 26px;
  text-decoration: none; box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex; flex-direction: column; gap: 10px; color: inherit;
}
.related-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.related-icon { font-size: 24px; }
.related-card h4 { font-size: 15px; font-weight: 600; color: var(--purple-dark); }
.related-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.related-card span { font-size: 13px; color: var(--orange-dark); font-weight: 600; }

/* ── 404 ── */
.error-page { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 60px; gap: 16px; }
.error-page h1 {
  font-family: var(--font-display); font-size: 80px;
  background: linear-gradient(120deg, var(--orange), var(--purple));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.error-page p { color: var(--gray-500); margin-bottom: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  /* Ticker is first in DOM on mobile (see header.php) so it can appear
     above the hero, but the nav is fixed and would otherwise overlap/hide
     it at the top of the page — push it below the nav's height. */
  .ticker-wrap { margin-top: var(--nav-h); }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 48px 24px; }
  .hero-visual { min-height: 300px; }
  .hero-img-placeholder { width: 220px; height: 260px; }
  .hero-trust { gap: 20px; }

  section { padding: 60px 24px; }

  .treatments-grid, .all-treatments-grid, .values-grid, .testimonials-grid, .blog-grid,
  .related-grid, .contact-wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .landmarks-intro { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sticky-bar { display: flex; }
  footer { padding: 48px 24px 90px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Hidden on mobile — the sticky bar's WhatsApp button and the footer link
     already cover it there; keep the floating bubble desktop-only. */
  .float-wa { display: none; }

  .breadcrumb { padding: 12px 20px; font-size: 12px; }
  .treatment-hero { grid-template-columns: 1fr; }
  .treatment-hero-content { padding: 40px 24px; }
  .treatment-hero-visual { min-height: 220px; }
  .img-placeholder { width: 180px; height: 220px; }
  .stats-bar { padding: 20px 24px; flex-wrap: wrap; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 12px 0; width: 50%; flex: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .content-wrap { grid-template-columns: 1fr; padding: 48px 24px; gap: 32px; }
  .sidebar { position: static; }
  .faq-section { padding: 56px 24px; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; padding: 52px 24px; text-align: center; }
  .cta-text p { max-width: 100%; }
  .cta-actions { width: 100%; }
  .related { padding: 56px 24px; }
  .vision-block { padding: 56px 24px; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .site-nav { padding: 0 28px; }
  .hero-content { padding: 60px 40px 60px 48px; }
  section { padding: 72px 48px; }
  .treatment-hero-content { padding: 48px 36px 48px 48px; }
  .content-wrap { padding: 56px 48px; }
  .stats-bar, .faq-section, .cta-banner, .related, footer { padding-left: 48px; padding-right: 48px; }
}


/* ═══════════════════════════════════════════════════════════════
   2026 MODERN PASS — bold motion & imagery layer.
   Additive only: no selectors above were removed, markup unchanged.
   ═══════════════════════════════════════════════════════════════ */

/* ── HERO ENTRANCE CHOREOGRAPHY (plays on load) ── */
@keyframes rise-in { from { opacity: 0; transform: translateY(34px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
.hero-eyebrow  { animation: rise-in 0.7s cubic-bezier(0.22,1,0.36,1) 0.05s both; }
.hero h1       { animation: rise-in 0.8s cubic-bezier(0.22,1,0.36,1) 0.15s both; }
.hero-sub      { animation: rise-in 0.8s cubic-bezier(0.22,1,0.36,1) 0.28s both; }
.hero-actions  { animation: rise-in 0.8s cubic-bezier(0.22,1,0.36,1) 0.4s both; }
.hero-trust    { animation: rise-in 0.9s cubic-bezier(0.22,1,0.36,1) 0.55s both; }
@keyframes hero-visual-in { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: none; } }
.hero-visual   { animation: hero-visual-in 1.1s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero h1, .hero-sub, .hero-actions, .hero-trust, .hero-visual { animation: none; }
}

/* Drifting ambient blobs behind hero photo */
@keyframes blob-drift { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-30px,24px) scale(1.12); } 66% { transform: translate(24px,-18px) scale(0.94); } }
.hero-shape  { animation: blob-drift 14s ease-in-out infinite; }
.hero-shape2 { animation: blob-drift 18s ease-in-out infinite reverse; }
@media (prefers-reduced-motion: reduce) { .hero-shape, .hero-shape2 { animation: none; } }

/* Rotating conic halo behind the hero photo card */
.hero-img-placeholder::before {
  content: ''; position: absolute; inset: -14px; border-radius: 36px; z-index: -1;
  background: conic-gradient(from 0deg, rgba(242,137,30,0.55), rgba(61,17,82,0.35), rgba(242,137,30,0.55));
  filter: blur(14px); opacity: 0.55;
  animation: halo-spin 10s linear infinite;
}
@keyframes halo-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-img-placeholder::before { animation: none; } }

/* Slow Ken Burns on hero photo */
.hero-img-placeholder.hero-img-photo img { animation: ken-burns 16s ease-in-out infinite alternate; }
@keyframes ken-burns { from { transform: scale(1); } to { transform: scale(1.08) translate(1.5%, -1.5%); } }
@media (prefers-reduced-motion: reduce) { .hero-img-placeholder.hero-img-photo img { animation: none; } }

/* Floating chips over the hero visual */
.hero-chip {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.9); border-radius: 16px;
  padding: 12px 18px; display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--purple-dark);
  box-shadow: 0 18px 40px -12px rgba(61,17,82,0.3);
  animation: chip-float 5s ease-in-out infinite;
}
.hero-chip .chip-icon {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: var(--grad-orange); color: white;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  box-shadow: 0 6px 14px -4px rgba(242,137,30,0.55);
}
.hero-chip small { display: block; font-size: 11px; font-weight: 400; color: var(--gray-500); }
.hero-chip.chip-tl { top: 15%; left: 8%; animation-delay: 0.6s; }
.hero-chip.chip-br { bottom: 13%; right: 7%; }
@keyframes chip-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .hero-chip { animation: none; } }
@media (max-width: 900px) { .hero-chip { display: none; } }

/* ── BUTTON SHINE SWEEP ── */
.btn-primary, .nav-cta, .btn-white { position: relative; overflow: hidden; }
.btn-primary::after, .nav-cta::after, .btn-white::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -80%; width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease; pointer-events: none;
}
.btn-primary:hover::after, .nav-cta:hover::after, .btn-white:hover::after { left: 130%; }

/* ── TREATMENT CARD: pointer-tracked glow (JS sets --mx/--my) ── */
.treatment-card { --mx: 50%; --my: 50%; }
.treatment-card:hover {
  background:
    radial-gradient(220px circle at var(--mx) var(--my), rgba(242,137,30,0.08), transparent 65%),
    white;
}

/* ── SECTION HEADER reveals get their own rhythm (classes added by JS) ── */
.section-eyebrow.reveal { transition-delay: 0ms; }
.section-title.reveal   { transition-delay: 90ms; }
.section-sub.reveal     { transition-delay: 180ms; }

/* ── COUNTER shimmer while counting (JS adds .counting) ── */
.hero-trust-item strong.counting, .stat-item strong.counting { opacity: 0.85; }

/* ── VALUE ICON: gentle wobble on hover ── */
.value-item:hover .value-icon { animation: icon-wobble 0.5s ease; }
@keyframes icon-wobble { 0% { transform: rotate(0); } 30% { transform: rotate(-8deg) scale(1.08); } 60% { transform: rotate(6deg) scale(1.05); } 100% { transform: rotate(0); } }

/* ── GALLERY: duotone lift on hover ── */
.gallery-item { position: relative; }
.gallery-item::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(61,17,82,0.45));
  opacity: 0; transition: opacity 0.35s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* ── ABOUT PAGE INTRO ── */
.about-hero-wrap { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center; }
.about-hero-photo { position: relative; }
.about-hero-photo img {
  width: 100%; border-radius: 28px; position: relative; z-index: 1;
  box-shadow: 0 32px 72px -16px rgba(61,17,82,0.35);
}
.about-hero-photo::before {
  content: ''; position: absolute; inset: -12px; border-radius: 36px; z-index: 0;
  background: conic-gradient(from 40deg, rgba(242,137,30,0.5), rgba(61,17,82,0.3), rgba(242,137,30,0.5));
  filter: blur(16px); opacity: 0.5; animation: halo-spin 12s linear infinite;
}
@media (max-width: 900px) { .about-hero-wrap { grid-template-columns: 1fr; gap: 40px; } .about-hero-photo { max-width: 320px; margin: 0 auto; } }

/* ── DOCTOR SECTION (about page) ── */
.doctor-wrap { display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: center; }
.doctor-photo { position: relative; }
.doctor-photo img {
  width: 100%; border-radius: 28px; position: relative; z-index: 1;
  box-shadow: 0 32px 72px -16px rgba(61,17,82,0.35);
}
.doctor-photo::before {
  content: ''; position: absolute; inset: -12px; border-radius: 36px; z-index: 0;
  background: conic-gradient(from 40deg, rgba(242,137,30,0.5), rgba(61,17,82,0.3), rgba(242,137,30,0.5));
  filter: blur(16px); opacity: 0.5; animation: halo-spin 12s linear infinite;
}
.doctor-badge {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: white; border: 1px solid var(--gray-100); border-radius: 100px;
  padding: 11px 22px; white-space: nowrap; font-size: 13px; font-weight: 600; color: var(--purple);
  box-shadow: 0 12px 28px rgba(61,17,82,0.18);
}
.doctor-info h3 { font-family: var(--font-display); font-size: clamp(24px, 2.8vw, 34px); color: var(--purple-dark); margin-bottom: 6px; }
.doctor-info .doctor-role { color: var(--orange-dark); font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.doctor-info p { font-size: 15px; color: var(--gray-700); line-height: 1.85; margin-bottom: 14px; }
.doctor-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.doctor-cred {
  background: var(--orange-light); border: 1px solid rgba(242,137,30,0.25); color: var(--orange-dark);
  font-size: 12.5px; font-weight: 600; border-radius: 100px; padding: 8px 16px;
}
@media (max-width: 900px) { .doctor-wrap { grid-template-columns: 1fr; gap: 40px; } .doctor-photo { max-width: 320px; margin: 0 auto; } }

/* ── PHOTO STRIP (full-bleed imagery band, home/about) ── */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding: 0; }
.photo-strip figure { margin: 0; overflow: hidden; aspect-ratio: 4/3; position: relative; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.photo-strip figure:hover img { transform: scale(1.07); }
.photo-strip figcaption {
  position: absolute; left: 18px; bottom: 14px; z-index: 1;
  color: white; font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.photo-strip figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(42,11,58,0.55)); }
@media (max-width: 900px) { .photo-strip { grid-template-columns: 1fr; } .photo-strip figure { aspect-ratio: 16/9; } }

/* ── CTA banner ambient pulse ── */
.cta-banner { position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: rgba(242,137,30,0.18); filter: blur(90px); right: -120px; top: -140px;
  animation: blob-drift 12s ease-in-out infinite; pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .cta-banner::before { animation: none; } }

/* ── ILLUSTRATED CARD HEADERS (treatments listing) ── */
.treatment-card .card-art { margin: -34px -30px 20px; height: 160px; overflow: hidden; }
.treatment-card .card-art img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.treatment-card:hover .card-art img { transform: scale(1.06); }

/* ── HERO BACKGROUND VIDEO (admin-uploadable, stock video ready) ── */
.hero-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,11,58,0.3), rgba(42,11,58,0.62)); z-index: 0; pointer-events: none; }
