:root {
  --ink: #25162f;
  --ink-soft: #5d5264;
  --paper: #fffdfb;
  --surface: #ffffff;
  --surface-soft: #f8f2fb;
  --line: rgba(67, 39, 83, 0.12);
  --violet: #4a229c;
  --purple: #6d209a;
  --magenta: #bd2783;
  --coral: #ef405e;
  --orange: #ff7a2f;
  --cream: #ded4c7;
  --shadow: 0 22px 70px rgba(75, 32, 99, 0.13);
  --shadow-soft: 0 12px 34px rgba(75, 32, 99, 0.09);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--violet);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(var(--shell), calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(255, 253, 251, .89);
  border-bottom: 1px solid rgba(86, 43, 105, .08);
  box-shadow: 0 8px 30px rgba(68, 26, 90, .07);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  width: min(var(--shell), calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img { width: 126px; height: 74px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  position: relative;
  padding: 10px 13px;
  font-size: .92rem;
  font-weight: 750;
  color: #43334b;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--purple); background: rgba(109, 32, 154, .07); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.85);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 78px;
  background:
    radial-gradient(circle at 9% 12%, rgba(255, 122, 47, .12), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(76, 31, 157, .13), transparent 32%),
    linear-gradient(135deg, #fffdfb 0%, #fff 52%, #faf3ff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(95, 42, 122, .18), transparent);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 70px; }
.hero-copy h1 {
  margin: 12px 0 20px;
  max-width: 760px;
  font-size: clamp(2.75rem, 5.3vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.hero-copy h1 span {
  background: linear-gradient(115deg, var(--orange) 0%, var(--coral) 32%, var(--magenta) 58%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-weight: 850;
  font-size: .76rem;
  color: var(--magenta);
}
.eyebrow.light { color: #f8cbdc; }
.hero-lead { margin: 0 0 28px; color: var(--ink-soft); font-size: clamp(1.08rem, 1.8vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .94rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(105deg, var(--orange), var(--coral) 42%, var(--magenta) 72%, var(--violet)); box-shadow: 0 14px 30px rgba(173, 43, 124, .24); }
.btn-secondary { border: 1px solid rgba(81, 38, 105, .15); background: rgba(255,255,255,.72); box-shadow: var(--shadow-soft); }
.btn-light { color: var(--violet); background: #fff; box-shadow: 0 12px 28px rgba(30, 10, 61, .18); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta > div { padding: 13px 16px; min-width: 200px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.66); backdrop-filter: blur(10px); }
.meta-label { display: block; margin-bottom: 2px; color: var(--ink-soft); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.hero-meta strong { font-size: .92rem; }

.hero-visual { display: flex; justify-content: center; }
.logo-stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border-radius: 42% 58% 55% 45% / 44% 43% 57% 56%;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(128, 60, 142, .12);
  box-shadow: var(--shadow);
  animation: floatStage 8s ease-in-out infinite;
}
.logo-stage::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(133, 66, 160, .12);
}
.logo-stage img { position: relative; z-index: 2; width: 76%; height: 76%; object-fit: contain; }
.logo-glow { position: absolute; width: 78%; height: 78%; border-radius: 50%; background: conic-gradient(from 30deg, rgba(255,122,47,.19), rgba(236,47,94,.15), rgba(185,39,131,.17), rgba(74,34,156,.2), rgba(255,122,47,.19)); filter: blur(18px); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .7; }
.hero-orb-one { width: 240px; height: 240px; right: -80px; top: 160px; background: radial-gradient(circle at 30% 30%, rgba(255, 122, 47, .2), rgba(188, 39, 130, .05)); animation: orb 10s ease-in-out infinite; }
.hero-orb-two { width: 160px; height: 160px; left: 4%; bottom: 4%; background: radial-gradient(circle at 40% 30%, rgba(75, 34, 157, .18), rgba(75, 34, 157, .03)); animation: orb 12s ease-in-out infinite reverse; }

.section { padding: 104px 0; }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading h2, .clinic-panel h2, .schedule-panel h2, .contact h2, .closing h2 {
  margin: 5px 0 14px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.section-heading p:not(.eyebrow) { margin: 0; color: var(--ink-soft); font-size: 1.05rem; }

.services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 275px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #fff 0%, #fff 65%, #faf5fc 100%);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(156, 52, 139, .22); }
.service-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -70px; bottom: -70px; border-radius: 50%; background: linear-gradient(135deg, rgba(255,122,47,.13), rgba(181,39,130,.12), rgba(75,34,157,.12)); }
.service-number { position: absolute; top: 18px; right: 20px; color: rgba(90, 41, 111, .14); font-size: 2.8rem; font-weight: 900; letter-spacing: -.08em; }
.service-icon { width: 66px; height: 66px; margin: 54px 0 28px; display: grid; place-items: center; color: var(--magenta); border-radius: 20px; background: linear-gradient(135deg, rgba(255,122,47,.12), rgba(75,34,157,.10)); }
.service-icon svg { width: 36px; height: 36px; }
.service-card h3 { position: relative; z-index: 2; margin: 0; font-size: 1.55rem; letter-spacing: -.025em; }

.modes { background: linear-gradient(180deg, #fbf7fc 0%, #fff 100%); }
.modes-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.modes .section-heading { margin: 0; }
.mode-cards { display: grid; gap: 16px; }
.mode-card { display: flex; align-items: center; gap: 18px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.94); box-shadow: var(--shadow-soft); }
.mode-mark { flex: 0 0 auto; width: 72px; height: 72px; display: grid; place-items: center; color: #fff; border-radius: 22px; background: linear-gradient(145deg, var(--orange), var(--magenta) 57%, var(--violet)); box-shadow: 0 12px 26px rgba(177, 43, 126, .2); }
.mode-mark svg { width: 38px; height: 38px; }
.mode-kicker { margin: 0 0 2px; color: var(--ink-soft); font-size: .74rem; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.mode-card h3 { margin: 0; font-size: 1.5rem; }

.clinic { background: #fff; }
.clinic-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; }
.clinic-panel, .schedule-panel { min-height: 390px; border-radius: var(--radius-xl); padding: clamp(28px, 5vw, 54px); }
.clinic-panel { display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); background: linear-gradient(145deg, #fff 0%, #fff8f4 52%, #f8f3ff 100%); box-shadow: var(--shadow-soft); }
.clinic-detail { display: flex; align-items: center; gap: 18px; margin-top: 44px; }
.detail-icon { width: 58px; height: 58px; flex: 0 0 auto; display: grid; place-items: center; color: var(--violet); border-radius: 18px; background: rgba(91, 31, 166, .08); }
.detail-icon svg { width: 30px; height: 30px; }
.clinic-detail span { display: block; color: var(--ink-soft); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.clinic-detail strong { display: block; margin-top: 2px; font-size: 1.25rem; }
.clinic-detail p { margin: 1px 0 0; color: var(--ink-soft); }
.schedule-panel { color: #fff; background: linear-gradient(140deg, #71249b 0%, #4a229c 62%, #34217f 100%); box-shadow: 0 24px 55px rgba(76, 32, 134, .25); }
.schedule-panel h2 { margin-bottom: 24px; }
.schedule-time { display: flex; align-items: baseline; gap: 12px; margin-bottom: 36px; font-size: clamp(2.7rem, 5vw, 4.6rem); line-height: 1; font-weight: 900; letter-spacing: -.05em; }
.schedule-time span { font-size: 1rem; font-weight: 700; opacity: .7; letter-spacing: 0; }

.contact { padding-top: 74px; }
.contact-shell { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: start; padding: clamp(28px, 5vw, 58px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(135deg, #fff 0%, #fff9f5 48%, #f8f2fb 100%); box-shadow: var(--shadow-soft); }
.contact-intro { max-width: 440px; color: var(--ink-soft); }
.contact-list { display: grid; gap: 12px; }
.contact-item { display: flex; align-items: center; gap: 15px; padding: 18px; border: 1px solid rgba(79, 37, 103, .09); border-radius: 18px; background: rgba(255,255,255,.8); transition: transform .2s ease, border-color .2s ease; }
a.contact-item:hover { transform: translateX(5px); border-color: rgba(184, 39, 129, .23); }
.contact-icon { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; color: var(--magenta); border-radius: 15px; background: rgba(184, 39, 129, .08); }
.contact-icon svg { width: 25px; height: 25px; }
.contact-item small { display: block; margin-bottom: 2px; color: var(--ink-soft); font-weight: 800; text-transform: uppercase; letter-spacing: .11em; font-size: .67rem; }
.contact-item strong { display: block; font-size: .98rem; line-height: 1.35; }

.closing { margin-top: 104px; padding: 48px 0; color: #fff; background: linear-gradient(105deg, #f36b38 0%, #e73e68 34%, #ad287f 64%, #4a229c 100%); }
.closing-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.closing img { width: 176px; height: 132px; object-fit: contain; padding: 10px; border-radius: 24px; background: rgba(255,255,255,.94); }
.closing h2 { margin: 0 0 8px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.closing p { margin: 2px 0; opacity: .9; }

.site-footer { padding: 30px 0; color: #eae2ee; background: #24142d; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; }
.footer-inner p { margin: 0; }
.footer-inner a { color: #fff; font-weight: 850; }

.floating-call { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 9px; min-height: 50px; padding: 10px 16px; border-radius: 999px; color: #fff; background: linear-gradient(120deg, var(--coral), var(--magenta), var(--violet)); box-shadow: 0 16px 34px rgba(90, 32, 124, .28); font-size: .9rem; font-weight: 850; }
.floating-call svg { width: 23px; height: 23px; }

.reveal { opacity: 1; transform: none; transition: transform .35s ease, box-shadow .35s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes floatStage { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(1deg); } }
@keyframes orb { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(18px,-12px,0) scale(1.06); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .nav-wrap { min-height: 78px; }
  .brand img { width: 112px; height: 66px; }
  .menu-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { padding: 12px 14px; }
  .hero { min-height: auto; padding: 126px 0 76px; }
  .hero-grid, .modes-grid, .clinic-grid, .contact-shell { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .hero-copy { text-align: center; }
  .hero-copy h1 { margin-inline: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-meta > div { text-align: left; }
  .hero-visual { order: -1; }
  .logo-stage { width: min(78vw, 430px); }
  .service-grid { grid-template-columns: 1fr; }
  .modes-grid { gap: 34px; }
  .contact-shell { gap: 24px; }
  .closing-inner { grid-template-columns: auto 1fr; }
  .closing-inner .btn { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 26px, var(--shell)); }
  .nav-wrap { width: calc(100% - 26px); }
  .main-nav { left: 13px; right: 13px; }
  .hero { padding-top: 112px; }
  .hero-copy h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { display: grid; }
  .hero-meta > div { min-width: 0; }
  .section { padding: 78px 0; }
  .service-card { min-height: 235px; }
  .clinic-panel, .schedule-panel { min-height: auto; }
  .schedule-time { flex-wrap: wrap; }
  .closing { margin-top: 78px; }
  .closing-inner { grid-template-columns: 1fr; text-align: center; }
  .closing img { margin: 0 auto; }
  .closing-inner .btn { justify-self: stretch; }
  .footer-inner { justify-content: center; text-align: center; }
  .floating-call { right: 14px; bottom: 14px; width: 52px; height: 52px; padding: 0; justify-content: center; }
  .floating-call span { position: absolute; width: 1px; height: 1px; clip: rect(0 0 0 0); overflow: hidden; }
}
