:root {
  --bg: #f6f2ea;
  --bg-soft: #fbf8f3;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --ink: #2f241d;
  --text: rgba(47, 36, 29, 0.86);
  --muted: rgba(47, 36, 29, 0.62);
  --line: rgba(47, 36, 29, 0.14);
  --line-soft: rgba(47, 36, 29, 0.08);
  --brand: #9a6d48;
  --brand-strong: #7a4f2e;
  --accent: #d8b082;
  --nav-height: 74px;
  --container: 1200px;
  --shadow-sm: 0 14px 30px rgba(47, 36, 29, 0.08);
  --shadow-md: 0 24px 70px rgba(47, 36, 29, 0.14);
  --shadow-lg: 0 40px 120px rgba(47, 36, 29, 0.2);
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: clip;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% -10%, #fffdf9, transparent 45%), var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(74px, 8vw, 130px) 0;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 251, 245, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(47, 36, 29, 0.06);
}

.nav-inner {
  position: relative;
  isolation: isolate;
  min-height: var(--nav-height);
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.brand img {
  height: 260px;
  width: auto;
  display: block;
  max-width: 260px;
  object-fit: contain;
}

.brand span {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--muted);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.nav-spacer {
  height: var(--nav-height);
}

.hamburger {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 2200;
  padding: 0;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.hamburger.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.hamburger.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2100;
  background: #050505;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-shadow: -28px 0 56px rgba(0, 0, 0, 0.42);
  padding: calc(var(--nav-height) + 34px) 30px 32px;
  width: min(74vw, 420px);
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 26px;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.24s var(--ease), opacity 0.24s var(--ease);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2050;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.26));
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s var(--ease);
}

.mobile-menu-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-section {
  display: grid;
  gap: 4px;
}

.mobile-menu-label {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.34);
  opacity: 1;
  margin-bottom: 10px;
}

.mobile-menu a {
  display: block;
  padding: 13px 0;
  border-radius: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease);
}

.mobile-menu a:hover {
  transform: translateX(-3px);
  color: #ffffff;
  opacity: 1;
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu .btn,
.mobile-menu .btn-ghost {
  justify-content: flex-start;
  padding-inline: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  border-color: transparent;
  box-shadow: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 250, 242, 0.94);
  font-weight: 600;
}

.kicker:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.78;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1.04;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 600;
}

h3 {
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  line-height: 1.2;
  font-weight: 600;
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.72;
  color: var(--muted);
  max-width: 66ch;
}

.ink {
  color: var(--ink) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.82rem 1.42rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--brand-strong), var(--brand));
  color: #fff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease);
  box-shadow: 0 12px 30px rgba(122, 79, 46, 0.32);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(122, 79, 46, 0.38);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.88);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 9, 6, 0.3), rgba(13, 9, 6, 0.58));
  z-index: 2;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, transparent 24%, rgba(0, 0, 0, 0.25) 78%);
  z-index: 3;
}

.hero-mobile-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-desktop-videos {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
}

.hero-overlay-inner {
  max-width: 980px;
}

.hero-overlay h1 {
  color: #ffffff;
}

.hero-overlay .lead {
  margin-inline: auto;
  color: rgba(255, 250, 242, 0.85);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

#treatments {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
}

#treatments .kicker {
  color: #527ca2;
  background: rgba(183, 216, 240, 0.22);
  border-color: rgba(122, 156, 188, 0.32);
}

.editorial,
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4vw, 80px);
  align-items: center;
}

.split {
  margin-top: clamp(32px, 5vw, 80px);
}

.editorial-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
}

.editorial-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.editorial-media img {
  width: 100%;
  height: min(58vw, 560px);
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.editorial-media:hover img {
  transform: scale(1.04);
}

.list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
}

.li b {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  font-weight: 600;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  margin-top: 8px;
  flex: 0 0 auto;
}

.muted-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.luxury-banner {
  position: relative;
  height: clamp(320px, 45vw, 470px);
  background: url('assets/laser-featured.jpg') center/cover no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.luxury-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(58, 39, 24, 0.74), rgba(122, 79, 46, 0.58));
}

.banner-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.banner-content h2 {
  color: #fff;
}

.banner-btn {
  margin-top: 24px;
  display: inline-block;
  padding: 0.88rem 1.55rem;
  border-radius: 999px;
  color: #2f241d;
  background: #fff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 600;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.band {
  background: linear-gradient(135deg, #231912, #3e291c);
  color: rgba(255, 250, 242, 0.92);
}

.band h2 {
  color: #fff;
}

.band-kicker {
  color: rgba(255, 250, 242, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.center {
  text-align: center;
}

.center-lead {
  margin-inline: auto;
}

.metrics {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}

.metric b {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}

.metric span {
  color: rgba(255, 250, 242, 0.78);
  line-height: 1.6;
  font-size: 0.92rem;
}

.prestige-journey {
  background:
    radial-gradient(circle at 10% 20%, rgba(216, 176, 130, 0.18), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(46, 64, 87, 0.12), transparent 42%),
    linear-gradient(180deg, #f8f4ee, #efe7dc);
}

.journey-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(47, 36, 29, 0.12);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66));
  box-shadow: 0 32px 90px rgba(47, 36, 29, 0.12);
  padding: clamp(24px, 4vw, 52px);
}

.journey-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.journey-glow-a {
  width: 240px;
  height: 240px;
  background: rgba(216, 176, 130, 0.35);
  top: -90px;
  right: -40px;
}

.journey-glow-b {
  width: 290px;
  height: 290px;
  background: rgba(122, 79, 46, 0.2);
  bottom: -130px;
  left: -70px;
}

.journey-head,
.journey-track,
.journey-actions {
  position: relative;
  z-index: 1;
}

.journey-head {
  max-width: 760px;
}

.journey-head .kicker {
  color: #527ca2;
  background: rgba(183, 216, 240, 0.22);
  border-color: rgba(122, 156, 188, 0.32);
}

.journey-track {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.journey-step {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 36, 29, 0.1);
  border-radius: 18px;
  padding: 16px 16px 18px;
  min-height: 190px;
}

.journey-step:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(154, 109, 72, 0.25), rgba(154, 109, 72, 0.02));
}

.journey-index {
  display: inline-flex;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--brand-strong);
  margin-bottom: 12px;
}

.journey-step h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.journey-step p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.93rem;
}

.journey-actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.protocol-studio {
  background:
    radial-gradient(circle at 12% 18%, rgba(170, 203, 235, 0.28), transparent 34%),
    radial-gradient(circle at 84% 76%, rgba(199, 226, 244, 0.26), transparent 42%),
    linear-gradient(145deg, #edf4f9, #e8f0f7 56%, #f5f8fc);
}

.studio-shell {
  border-radius: 30px;
  border: 1px solid rgba(125, 157, 187, 0.22);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.76), rgba(245, 251, 255, 0.64));
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(93, 124, 156, 0.18);
  padding: clamp(22px, 4vw, 46px);
}

.studio-head h2 {
  color: #1f2f40;
}

.studio-head .lead {
  color: rgba(43, 65, 86, 0.74);
}

.studio-head .kicker {
  color: #5f86a8;
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(122, 156, 188, 0.34);
}

.studio-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 16px;
  align-items: stretch;
}

.studio-goals {
  display: grid;
  gap: 10px;
}

.studio-goal {
  text-align: left;
  border-radius: 14px;
  border: 1px solid rgba(122, 156, 188, 0.26);
  background: rgba(255, 255, 255, 0.7);
  color: #3f5a75;
  padding: 14px 14px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.studio-goal:hover {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.9);
}

.studio-goal.is-active {
  border-color: rgba(95, 134, 168, 0.62);
  background: linear-gradient(130deg, rgba(183, 216, 240, 0.58), rgba(211, 231, 247, 0.86));
  color: #1f3f5f;
}

.studio-panel {
  border-radius: 20px;
  border: 1px solid rgba(122, 156, 188, 0.24);
  background: rgba(255, 255, 255, 0.8);
  padding: clamp(18px, 3vw, 28px);
}

.studio-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(95, 134, 168, 0.34);
  color: #5f86a8;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.studio-panel h3 {
  color: #24384d;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
}

.studio-panel p {
  color: rgba(45, 65, 84, 0.8);
  margin-top: 8px;
  line-height: 1.66;
}

.studio-meter {
  margin-top: 18px;
  height: 9px;
  border-radius: 999px;
  background: rgba(121, 155, 186, 0.22);
  overflow: hidden;
}

.studio-meter-bar {
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, #7fb0d4, #9ec6e4);
  transition: width 0.35s var(--ease);
}

.studio-stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.studio-stat {
  padding: 12px 12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(122, 156, 188, 0.2);
  background: rgba(246, 252, 255, 0.78);
}

.studio-stat span {
  display: block;
  color: #284764;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.studio-stat small {
  display: block;
  color: rgba(63, 90, 117, 0.72);
  font-size: 0.76rem;
  margin-top: 3px;
}

.studio-plan {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.studio-plan li {
  position: relative;
  color: rgba(45, 65, 84, 0.86);
  font-size: 0.9rem;
  line-height: 1.56;
  padding-left: 22px;
}

.studio-plan li:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 10px;
  height: 2px;
  border-radius: 99px;
  background: #7fb0d4;
}

.studio-credentials {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cred-item {
  border-radius: 14px;
  border: 1px solid rgba(122, 156, 188, 0.2);
  background: rgba(247, 252, 255, 0.74);
  padding: 13px 14px;
}

.cred-item b {
  display: block;
  color: #2b4b68;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.cred-item span {
  color: rgba(63, 90, 117, 0.8);
  font-size: 0.82rem;
  line-height: 1.5;
}

.about-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(82, 173, 255, 0.28), transparent 38%),
    radial-gradient(circle at 86% 12%, rgba(255, 146, 123, 0.24), transparent 42%),
    radial-gradient(circle at 72% 82%, rgba(114, 220, 192, 0.22), transparent 40%),
    linear-gradient(140deg, #eff7ff, #fff4ec 52%, #eefcf7);
}

.about-hero-shell {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  border-radius: 30px;
  border: 1px solid rgba(82, 143, 196, 0.24);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(236, 246, 255, 0.88)),
    radial-gradient(circle at 90% 10%, rgba(255, 188, 163, 0.2), transparent 34%);
  box-shadow: 0 24px 70px rgba(59, 111, 158, 0.2);
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px);
}

.about-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  min-height: 100%;
}

.about-doctor-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-title {
  color: #1f3350;
}

.about-content .kicker {
  color: #2d628f;
  background: rgba(229, 245, 255, 0.8);
  border-color: rgba(82, 143, 196, 0.35);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #244667;
  border: 1px solid rgba(83, 138, 184, 0.3);
  background: rgba(232, 245, 255, 0.84);
}

.about-tags span:nth-child(2n) {
  color: #4d3e23;
  border-color: rgba(208, 127, 98, 0.34);
  background: rgba(255, 236, 226, 0.86);
}

.about-tags span:nth-child(3n) {
  color: #1f5947;
  border-color: rgba(79, 171, 146, 0.34);
  background: rgba(229, 252, 243, 0.88);
}

.about-story {
  background:
    radial-gradient(circle at 15% 12%, rgba(130, 192, 255, 0.18), transparent 35%),
    linear-gradient(180deg, #fff7ef, #eef5ff);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-card {
  border-radius: 22px;
  border: 1px solid rgba(106, 158, 201, 0.24);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.94), rgba(235, 246, 255, 0.84));
  box-shadow: 0 14px 30px rgba(67, 118, 165, 0.14);
  padding: clamp(18px, 3vw, 30px);
}

.about-card:nth-child(2) {
  border-color: rgba(203, 136, 110, 0.28);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.94), rgba(255, 238, 228, 0.86));
  box-shadow: 0 14px 30px rgba(170, 114, 83, 0.12);
}

.about-card h2 {
  color: #1d3f64;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
}

.about-card p {
  color: #365776;
  line-height: 1.72;
}

.about-location {
  background:
    radial-gradient(circle at 88% 20%, rgba(254, 172, 152, 0.2), transparent 34%),
    linear-gradient(180deg, #eff8ff, #eafbf5);
}

.about-location-shell {
  border-radius: 26px;
  border: 1px solid rgba(86, 149, 201, 0.25);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(236, 251, 245, 0.84));
  box-shadow: var(--shadow-md);
  padding: clamp(22px, 3vw, 40px);
}

.about-map-wrap {
  border-radius: 18px;
  border: 1px solid rgba(90, 151, 200, 0.3);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(58, 115, 163, 0.18);
}

.about-credentials {
  background:
    radial-gradient(circle at 12% 10%, rgba(122, 208, 181, 0.2), transparent 34%),
    linear-gradient(145deg, #eef6ff, #f4f9ff 56%, #edf9f3);
}

.about-cred-shell {
  border-radius: 26px;
  border: 1px solid rgba(90, 149, 198, 0.24);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.93), rgba(235, 246, 255, 0.84));
  box-shadow: var(--shadow-md);
  padding: clamp(22px, 3vw, 40px);
}

.about-cred-head .kicker {
  color: #2d628f;
  background: rgba(231, 246, 255, 0.82);
  border-color: rgba(82, 143, 196, 0.34);
}

.about-cred-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-cred-item {
  border-radius: 16px;
  border: 1px solid rgba(95, 154, 203, 0.24);
  background: linear-gradient(170deg, rgba(247, 253, 255, 0.9), rgba(233, 245, 255, 0.86));
  padding: 16px;
}

.about-cred-item:nth-child(2) {
  border-color: rgba(212, 130, 98, 0.28);
  background: linear-gradient(170deg, rgba(255, 246, 239, 0.92), rgba(255, 233, 219, 0.84));
}

.about-cred-item:nth-child(3) {
  border-color: rgba(78, 166, 142, 0.3);
  background: linear-gradient(170deg, rgba(242, 255, 250, 0.92), rgba(226, 250, 241, 0.86));
}

.about-cred-item h3 {
  color: #204a72;
  font-size: 1rem;
}

.about-cred-item p {
  color: rgba(49, 85, 116, 0.9);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 8px;
}

.booking-page {
  background:
    radial-gradient(circle at 12% 20%, rgba(185, 220, 242, 0.28), transparent 36%),
    radial-gradient(circle at 88% 78%, rgba(216, 236, 248, 0.26), transparent 42%),
    linear-gradient(150deg, #f7fbff, #f4f7fb 52%, #f8f4ee);
}

.booking-shell {
  border-radius: 30px;
  border: 1px solid rgba(122, 156, 188, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(247, 252, 255, 0.72));
  box-shadow: 0 26px 70px rgba(93, 124, 156, 0.16);
  padding: clamp(20px, 4vw, 44px);
}

.booking-head .kicker {
  color: #5f86a8;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(122, 156, 188, 0.3);
}

.booking-title {
  color: #22364b;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-field {
  display: grid;
  gap: 6px;
}

.booking-field-full {
  grid-column: 1 / -1;
}

.booking-field label {
  color: #35526d;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(122, 156, 188, 0.25);
  background: rgba(255, 255, 255, 0.92);
  color: #22364b;
  font: inherit;
  padding: 12px 12px;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: rgba(95, 134, 168, 0.68);
  box-shadow: 0 0 0 4px rgba(185, 220, 242, 0.35);
}

.booking-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.booking-note {
  color: rgba(63, 90, 117, 0.74);
  font-size: 0.88rem;
}

#consult {
  background: linear-gradient(180deg, var(--bg), #f2ece2);
}

.cta {
  position: relative;
  border-radius: 32px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.66));
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: clamp(24px, 5vw, 50px);
}

.cta:before {
  content: "";
  position: absolute;
  inset: -30% 0 auto;
  height: 150px;
  background: radial-gradient(600px 120px at 50% 20%, rgba(154, 109, 72, 0.18), transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-inner .kicker {
  color: var(--brand);
}

.cta-actions {
  margin-top: 22px;
}

footer {
  padding: 34px 0 46px;
  border-top: 1px solid var(--line-soft);
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.foot-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.foot-copy {
  white-space: nowrap;
}

.foot-social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.foot a {
  color: var(--muted);
  font-weight: 500;
}

.foot a:hover {
  color: var(--ink);
}

.future-care {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 18% 22%, #1a2736, #070b11 65%);
  color: rgba(233, 238, 245, 0.94);
  padding: clamp(80px, 10vw, 140px) 10%;
}

.future-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 80px);
  flex-wrap: wrap;
}

.future-left,
.future-right {
  flex: 1;
  min-width: min(100%, 320px);
}

.future-left h2 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
}

.future-left h2 span {
  color: #d8b082;
}

.future-left p {
  margin-top: 14px;
  color: rgba(222, 230, 241, 0.86);
}

.future-stats {
  margin-top: 28px;
  display: flex;
  gap: clamp(14px, 2vw, 32px);
  flex-wrap: wrap;
}

.stat h3 {
  color: #d8b082;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.stat p {
  margin-top: 4px;
  color: rgba(222, 230, 241, 0.72);
  font-size: 0.9rem;
}

.future-btn {
  margin-top: 34px;
  display: inline-block;
  padding: 0.86rem 1.48rem;
  border-radius: 999px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 600;
  color: #17120f;
  background: linear-gradient(120deg, #d8b082, #c89566);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.future-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(201, 149, 102, 0.32);
}

.glass-card {
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
}

.glass-card h4 {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.glass-card p {
  margin-top: 10px;
  color: rgba(222, 230, 241, 0.82);
  line-height: 1.7;
}

.sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.32;
  pointer-events: none;
}

.sphere-1 {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -90px;
  background: #d8b082;
}

.sphere-2 {
  width: 430px;
  height: 430px;
  right: -120px;
  bottom: -170px;
  background: #2e4057;
}

.service-section {
  background: linear-gradient(130deg, #f4ece2, #fbf7f0);
  padding: clamp(70px, 8vw, 120px) 10%;
}

.service-container {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
}

.service-text,
.service-image {
  flex: 1;
  min-width: min(100%, 320px);
}

.service-text {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  padding: clamp(22px, 4vw, 46px);
  box-shadow: var(--shadow-md);
}

.service-text h2 {
  color: var(--brand-strong);
}

.service-text p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.74;
}

.service-btn {
  margin-top: 24px;
  display: inline-block;
  padding: 0.76rem 1.34rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--brand-strong), var(--brand));
  color: #fff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 600;
}

.service-image img {
  width: 100%;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.mt8 {
  margin-top: 8px;
}

.mt14 {
  margin-top: 14px;
}

.mt26 {
  margin-top: 26px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.7s var(--ease) forwards;
}

.delay-1 {
  animation-delay: 0.14s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 992px) {
  .hero-mobile-video {
    display: none;
  }

  .hero-desktop-videos {
    width: min(92%, 1680px);
    height: 100%;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.7vw, 24px);
  }

  .hero-desktop-videos video {
    width: 29%;
    height: min(85vh, 860px);
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
  }

  .hero-desktop-videos .v-mid {
    width: 34%;
    height: min(91vh, 920px);
  }
}

@media (max-width: 1100px) {
  :root {
    --nav-height: 70px;
  }

  .nav-inner {
    gap: 14px;
  }

  .brand img {
    height: 70px;
    max-width: 220px;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 6px 8px;
    font-size: 0.68rem;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .journey-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-grid {
    grid-template-columns: 1fr;
  }

  .studio-goals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-credentials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .editorial,
  .split {
    grid-template-columns: 1fr;
  }

  .editorial-media img {
    height: min(72vw, 460px);
  }

  .journey-track {
    grid-template-columns: 1fr;
  }

  .about-hero-shell {
    grid-template-columns: 1fr;
  }

  .about-doctor-image {
    min-height: 340px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-cred-grid {
    grid-template-columns: 1fr;
  }

  .about-map-wrap iframe {
    height: 340px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 66px;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
  }

  .nav-spacer {
    height: var(--nav-height);
  }

  .nav-inner {
    padding: 3px 0;
    gap: 12px;
  }

  .brand img {
    height: 62px;
    max-width: 190px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    padding: calc(var(--nav-height) + 28px) 24px 24px;
    width: min(76vw, 340px);
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    border-radius: 0;
  }

  .container {
    width: min(var(--container), calc(100% - 30px));
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .kicker {
    font-size: 0.64rem;
    letter-spacing: 0.11em;
    padding: 5px 10px;
    gap: 6px;
  }

  .kicker:before {
    width: 5px;
    height: 5px;
  }

  .future-stats {
    gap: 12px 24px;
  }

  .studio-goals {
    grid-template-columns: 1fr;
  }

  .studio-stats {
    grid-template-columns: 1fr;
  }
}



.luxury-ticker{
    position: relative;
    overflow: hidden;
    padding: 12px 0;
    border-top: 1px solid rgba(75, 47, 39, 0.16);
    border-bottom: 1px solid rgba(75, 47, 39, 0.16);
    background:
      linear-gradient(90deg, rgba(248, 242, 234, 0.96), rgba(243, 234, 223, 0.94), rgba(248, 242, 234, 0.96));
    backdrop-filter: blur(8px);
}

.ticker-wrapper{
    display: flex;
    width: max-content;
    align-items: center;
    will-change: transform;
    animation: scrollTicker 30s linear infinite;
}

.ticker{
    display: flex;
    align-items: center;
    gap: 26px;
    padding-inline: 18px;
    flex-shrink: 0;
}

.ticker span{
    color: rgba(75, 47, 39, 0.9);
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    white-space: nowrap;
    opacity: 0.98;
}

@keyframes scrollTicker{
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.luxury-ticker::before,
.luxury-ticker::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 2;
}

.luxury-ticker::before{
    left: 0;
    background: linear-gradient(90deg, rgba(248, 242, 234, 1), rgba(248, 242, 234, 0));
}

.luxury-ticker::after{
    right: 0;
    background: linear-gradient(270deg, rgba(248, 242, 234, 1), rgba(248, 242, 234, 0));
}

.luxury-ticker:hover .ticker-wrapper{
    animation-play-state: paused;
}

@media (max-width: 760px){
  .luxury-ticker{
    padding: 10px 0;
  }

  .ticker-wrapper{
    animation-duration: 14s;
  }

  .ticker{
    gap: 18px;
    padding-inline: 10px;
  }

  .ticker span{
    font-size: 0.74rem;
    letter-spacing: 0.02em;
  }

  .luxury-ticker::before,
  .luxury-ticker::after{
    width: 34px;
  }
}

@media (prefers-reduced-motion: reduce){
  .ticker-wrapper{
    animation: none;
  }
}
