/* Crystal Laser Aesthetics — brand: deep violet, magenta pink, gold, ink black */

:root {
  --ink: #07040f;
  --ink-2: #12081f;
  --violet: #5b2a8a;
  --violet-deep: #2d1248;
  --pink: #ff2d8a;
  --pink-soft: #ff6bb5;
  --pink-glow: rgba(255, 45, 138, 0.45);
  --gold: #d4af37;
  --gold-soft: #f0d78c;
  --cream: #f7f0f5;
  --muted: rgba(247, 240, 245, 0.68);
  --line: rgba(212, 175, 55, 0.28);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--cream);
  background: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1rem; }

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(91, 42, 138, 0.35), transparent 55%),
    #07040f;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
}

.page-loader-inner img {
  width: clamp(96px, 22vw, 130px);
  height: auto;
  animation: loader-pulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 8px 28px rgba(255, 45, 138, 0.25));
}

.page-loader-bar {
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  position: relative;
}

.page-loader-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, var(--pink-soft), var(--pink), var(--gold-soft));
  animation: loader-slide 1.1s linear infinite;
}

@keyframes loader-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes loader-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(280%); }
}

.ambient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(91, 42, 138, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(255, 45, 138, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(45, 18, 72, 0.5), transparent 60%),
    var(--ink);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.menu-open {
  z-index: 230;
}

.site-header.scrolled {
  background: rgba(7, 4, 15, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  order: 1;
}

.nav,
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  order: 2;
  margin-left: auto;
  margin-right: 0.85rem;
}

.nav-drawer {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 3;
  order: 3;
}

.brand img {
  width: 48px;
  height: auto;
  object-fit: contain;
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.nav a,
.nav-desktop a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}

.nav a:hover,
.nav-desktop a:hover {
  color: var(--cream);
}

.nav-book {
  color: var(--cream) !important;
  background: linear-gradient(135deg, var(--pink), #c2185b);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 0 0 0 var(--pink-glow);
  animation: pulse-ring 2.2s ease-out infinite;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--muted);
  border: 1px solid rgba(247, 240, 245, 0.14);
  border-radius: 50%;
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s;
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link:hover {
  color: var(--pink-soft);
  border-color: rgba(255, 45, 138, 0.45);
  background: rgba(255, 45, 138, 0.1);
  transform: translateY(-1px);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(247, 240, 245, 0.18);
  border-radius: 999px;
  background: rgba(7, 4, 15, 0.55);
  backdrop-filter: blur(10px);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.lang-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink));
}

.lang-btn:hover:not(.is-active) {
  color: var(--cream);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 4, 15, 0.45) 0%, rgba(7, 4, 15, 0.25) 35%, rgba(7, 4, 15, 0.88) 78%),
    radial-gradient(ellipse at 50% 70%, rgba(255, 45, 138, 0.18), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem 6.75rem;
  width: min(920px, 100%);
  max-width: 920px;
  animation: rise 1s var(--ease) both;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin: 0 0 0.4rem;
  line-height: 1.02;
}

.hero-title-line {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 13vw, 6.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(
    115deg,
    #fff 0%,
    #ff9ec8 28%,
    var(--pink-soft) 48%,
    #ff2d8a 62%,
    #f0d78c 88%,
    #fff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 32px rgba(255, 45, 138, 0.4));
  animation: title-shimmer 7s ease-in-out infinite;
}

.hero-title-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2.8vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 182, 213, 0.95);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

@keyframes title-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-headline {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  margin: 0 auto 0.35rem;
  max-width: 34rem;
}

.hero-tagline,
.hero-content > p.hero-tagline {
  font-size: clamp(0.95rem, 2.1vw, 1.1rem);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  max-width: 34rem;
  margin: 0 auto 1.25rem;
  line-height: 1.45;
}

.hero-content > p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  font-weight: 300;
  max-width: 28rem;
  margin: 0 auto 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(247, 240, 245, 0.45);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-hint span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--pink-soft);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-pulse {
  color: #fff;
  background: linear-gradient(135deg, var(--pink) 0%, #e91e63 50%, #c2185b 100%);
  box-shadow: 0 0 0 0 var(--pink-glow);
  animation: pulse-ring 2.2s ease-out infinite;
}

.btn-pulse:hover {
  box-shadow: 0 8px 28px var(--pink-glow);
}

.btn-ghost {
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(247, 240, 245, 0.35);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn-pink {
  color: #fff;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink));
}

.btn-wide {
  width: 100%;
  margin-top: 0.5rem;
}

.btn-sm {
  padding: 0.65rem 1.15rem;
  font-size: 0.75rem;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255, 45, 138, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(255, 45, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 45, 138, 0); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes scroll-dot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* Sections shared */
.section-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 0.75rem;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

/* Services — windowed cards */
.services {
  background: linear-gradient(180deg, transparent, rgba(45, 18, 72, 0.35) 40%, transparent);
}

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

.service-window {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(36, 16, 58, 0.55) 0%, rgba(12, 6, 22, 0.92) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: border-color 0.35s, transform 0.4s var(--ease), box-shadow 0.4s;
}

.service-window:hover {
  border-color: rgba(255, 45, 138, 0.55);
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 45, 138, 0.12),
    0 0 36px rgba(255, 45, 138, 0.12);
}

.service-video-frame {
  position: relative;
  aspect-ratio: 16 / 11;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(91, 42, 138, 0.45), transparent 60%),
    #0a0514;
  overflow: hidden;
}

.service-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 1;
}

.service-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.media-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, rgba(7, 4, 15, 0.72) 100%),
    linear-gradient(90deg, rgba(7, 4, 15, 0.2), transparent 40%);
}

.media-badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.75rem;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.service-body {
  padding: 1.35rem 1.3rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.service-body h3 {
  color: var(--cream);
  margin: 0;
  font-size: 1.45rem;
}

.service-body > p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.55;
}

.service-preview {
  list-style: none;
  padding: 0.35rem 0 0.15rem;
  margin: 0.15rem 0 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-preview li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1rem;
  font-size: 0.8rem;
  color: rgba(247, 240, 245, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-preview li:last-child {
  border-bottom: none;
}

.service-preview li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink-glow);
}

.service-body .btn {
  align-self: stretch;
  margin-top: auto;
  justify-content: center;
}

/* Service details modal */
.service-modal {
  border: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--cream);
  padding: 0;
  max-width: min(560px, calc(100vw - 2rem));
  width: 100%;
}

.service-modal::backdrop {
  background: rgba(7, 4, 15, 0.78);
  backdrop-filter: blur(8px);
}

.service-modal-inner {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  max-height: min(80vh, 640px);
  overflow-y: auto;
}

.service-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.service-modal-close:hover {
  color: var(--cream);
}

.service-modal h3 {
  font-size: 1.75rem;
  margin: 0 1.5rem 0.5rem 0;
  color: var(--gold-soft);
}

.service-modal-body {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-modal-body .modal-tag {
  color: var(--pink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-modal-body h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin: 1.1rem 0 0.45rem;
  font-weight: 600;
}

.service-modal-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}

.service-modal-body li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.service-modal-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.service-modal-body p {
  margin: 0.75rem 0 0;
}

.service-modal-book {
  display: inline-flex;
}

/* About / Doctor */
.doctor {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 45, 138, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(91, 42, 138, 0.35), transparent 55%),
    var(--ink);
  border-block: 1px solid var(--line);
}

.about-header {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.about-lede {
  margin-bottom: 0;
}

.about-lede strong {
  font-weight: 700;
  color: var(--cream);
}

.doctor-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.doctor-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  align-items: center;
}

.doctor-portrait {
  position: relative;
  display: grid;
  place-items: end center;
}

.doctor-portrait::before {
  content: "";
  position: absolute;
  inset: 12% 8% 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(255, 45, 138, 0.28), transparent 65%);
  filter: blur(28px);
  z-index: 0;
}

.doctor-portrait img {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

.doctor-identity {
  display: none;
}

.doctor-copy .lede {
  margin-bottom: 1rem;
}

.doctor-copy > .lede::before {
  display: none;
}

.about-tagline {
  margin: 0 0 1.5rem;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.about-powered {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.55rem;
}

.powered-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.deka-logo-badge {
  width: clamp(130px, 30vw, 190px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(255, 45, 138, 0.22));
  opacity: 0.95;
  transition: filter 0.35s var(--ease), opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.about-powered:hover .deka-logo-badge,
.about-powered:focus-within .deka-logo-badge {
  filter: drop-shadow(0 10px 28px rgba(255, 45, 138, 0.5)) brightness(1.08);
  opacity: 1;
  transform: translateY(-2px) scale(1.03);
}

.doctor-role {
  margin: 0 0 0.25rem;
  color: var(--pink-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.doctor-identity h3 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  color: var(--cream);
}

.doctor-role-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.doctor-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-bottom: 2rem;
  padding-top: 0.25rem;
}

.doctor-stats > div {
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Instagram live window */
.instagram {
  background: linear-gradient(180deg, transparent, rgba(45, 18, 72, 0.28), transparent);
}

.ig-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.ig-head .lede {
  margin-bottom: 0;
}

.ig-window {
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(12, 6, 22, 0.92);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  max-width: 540px;
  margin: 0 auto;
}

.ig-window-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 4, 15, 0.9);
}

.ig-window-bar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 45, 138, 0.35);
}

.ig-window-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
  flex: 1;
}

.ig-window-meta strong {
  font-size: 0.9rem;
  color: var(--cream);
}

.ig-window-meta span {
  font-size: 0.72rem;
  color: var(--muted);
}

.ig-follow-pill {
  flex-shrink: 0;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink));
}

.ig-feed-frame {
  position: relative;
  width: 100%;
  height: min(620px, 78vh);
  background: #0a0514;
}

.ig-feed-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #fff;
}

.ig-window-foot {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.ig-window-foot a {
  font-size: 0.82rem;
  color: var(--pink-soft);
  letter-spacing: 0.04em;
}

.ig-window-foot a:hover {
  color: var(--gold-soft);
}

/* Tech */
.tech {
  background: var(--ink-2);
  border-block: 1px solid var(--line);
}

.tech-intro {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.tech-intro .lede {
  margin-bottom: 0;
}

.tech-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.5rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: clamp(0.88rem, 2.4vw, 1.02rem);
}

.tech-list li:last-child {
  border-bottom: none;
}

.tech-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink-glow);
}

.tech-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.tech-visual::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 138, 0.22), transparent 68%);
  filter: blur(18px);
  z-index: 0;
}

.tech-machine {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  height: auto;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.45));
  animation: float-soft 7s ease-in-out infinite;
}

.tech-label {
  position: relative;
  z-index: 1;
  margin: 0.85rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-align: center;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* Experience */
.exp-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.exp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.exp-item h3 {
  margin-bottom: 0.4rem;
}

.exp-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Visit */
.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.visit-address {
  font-style: normal;
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.visit-address strong {
  color: var(--cream);
  font-weight: 600;
}

.visit-address a {
  color: var(--pink-soft);
  text-decoration: none;
}

.visit-address a:hover {
  color: var(--pink);
}

.visit-meta {
  margin: 1.5rem 0;
}

.visit-meta > div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.visit-meta dt {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.visit-meta dd {
  margin: 0;
  color: var(--muted);
}

.visit-meta a:hover {
  color: var(--pink-soft);
}

.map-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--pink-soft);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.map-link:hover {
  color: var(--gold-soft);
}

.map-frame {
  min-height: 320px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--violet-deep);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05) brightness(0.85);
}

/* Book */
.book {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 45, 138, 0.18), transparent 55%),
    var(--ink);
}

.book-panel {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding-block: clamp(4rem, 10vw, 6.5rem);
}

.book-logo {
  margin: 0 auto 1.25rem;
  width: 120px;
  height: auto;
  object-fit: contain;
}

.book-panel .lede,
.book-panel > p {
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

.book-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
  margin-top: 2rem;
}

.thank-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.thank-main {
  width: min(560px, calc(100% - 2rem));
  padding: 3rem 0;
}

.thank-card {
  text-align: center;
  padding: 2rem 1.25rem;
}

.thank-card img {
  width: 110px;
  height: auto;
  margin: 0 auto 1.25rem;
}

.thank-card h1 {
  margin-bottom: 0.75rem;
  background: linear-gradient(115deg, #fff, var(--pink-soft), var(--pink), #f0d78c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.thank-card .lede {
  margin-left: auto;
  margin-right: auto;
}

.thank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(247, 240, 245, 0.12);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 45, 138, 0.15);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f0d78c' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.field select option {
  background: var(--ink-2);
  color: var(--cream);
}

.form-status {
  grid-column: 1 / -1;
  text-align: center;
  min-height: 1.5em;
  font-size: 0.95rem;
  color: var(--pink-soft);
  margin: 0.5rem 0 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem clamp(1rem, 4vw, 2.5rem);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-social .social-link {
  width: 40px;
  height: 40px;
}

.footer-social .social-link svg {
  width: 18px;
  height: 18px;
}

.visit-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.visit-social a:hover {
  color: var(--pink-soft);
}

.site-footer p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  text-align: right;
}

.footer-credit {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.footer-credit a {
  color: rgba(255, 107, 181, 0.42);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.footer-credit a:hover {
  color: rgba(255, 107, 181, 0.78);
}

.site-footer .brand img {
  width: 40px;
  height: auto;
}

/* Floating book FAB */
.fab-book {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 90;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--pink-soft), var(--pink) 55%, #c2185b);
  box-shadow: 0 8px 28px rgba(255, 45, 138, 0.45);
  animation: pulse-ring 2.2s ease-out infinite;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
  transition: opacity 0.35s, transform 0.35s var(--ease);
}

.fab-whatsapp-icon {
  width: 30px;
  height: 30px;
  display: block;
}

.fab-book.visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Mobile */
.nav-backdrop {
  display: none;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav-desktop {
    display: none !important;
  }

  .header-actions {
    margin-left: auto;
    position: relative;
    z-index: 120;
  }

  .brand {
    position: relative;
    z-index: 120;
  }

  .site-header.menu-open,
  .site-header.menu-open.scrolled {
    background: rgba(7, 4, 15, 0.96);
    border-bottom-color: var(--line);
    backdrop-filter: blur(12px);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.55);
  }

  .nav-backdrop[hidden] {
    display: none !important;
  }

  .nav-drawer {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 300px);
    z-index: 210;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: calc(var(--header-h) + 1.25rem) 0 1.5rem;
    background: #12081f;
    border-left: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: -12px 0 32px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.16s linear;
    overflow-y: auto;
    pointer-events: none;
  }

  .nav-drawer.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-drawer > a {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.95rem 1.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
    width: 100%;
  }

  .nav-drawer > a:hover,
  .nav-drawer > a:active {
    color: var(--cream);
    background: rgba(255, 45, 138, 0.08);
  }

  .nav-drawer .nav-social {
    margin-top: 1rem;
    padding: 0 1.35rem;
    justify-content: flex-start;
  }

  .nav-drawer .nav-book {
    margin: 1.15rem 1.35rem 0;
    text-align: center;
    width: calc(100% - 2.7rem);
    color: #fff !important;
  }

  body.menu-open .fab-book {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .service-grid,
  .exp-strip,
  .doctor-layout,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .doctor-intro {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0.85rem;
    align-items: center;
    margin-bottom: 1rem;
  }

  .doctor-portrait {
    order: unset;
    place-items: center start;
  }

  .doctor-portrait img {
    width: 100%;
    max-width: 280px;
  }

  .doctor-copy > .lede::before {
    display: none;
  }

  .doctor-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .ig-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .ig-feed-frame {
    height: min(560px, 70vh);
  }

  .ig-window {
    max-width: 100%;
  }

  .tech-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0.85rem;
  }

  .tech-list li {
    padding: 0.55rem 0 0.55rem 1.2rem;
    font-size: 0.82rem;
  }

  .tech-visual {
    max-width: none;
    margin: 0;
    min-height: 0;
  }

  .tech-machine {
    width: 100%;
    max-width: 210px;
  }

  .tech-label {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    margin-top: 0.45rem;
  }

  .book-form {
    grid-template-columns: 1fr;
  }

  .brand-text {
    display: none;
  }

  .footer-meta {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

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

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

@media (max-width: 480px) {
  :root {
    --header-h: 64px;
  }

  .section-inner {
    width: calc(100% - 2rem);
  }

  .fab-book {
    width: 58px;
    height: 58px;
    right: 1rem;
    bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
