﻿/* GOLDEN FORTUNE 路 瑙嗚绯荤粺
   瀵归綈鍝佺墝 Logo锛氭捣鍐涜摑搴?脳 閾傞噾閾跺瓧 脳 鍐风櫧鍖荤編搴?*/

:root {
  --bg: #f3f5f8;
  --bg-alt: #e8edf3;
  --surface: rgba(255, 255, 255, 0.86);
  --ink: #1f304c;
  --ink-soft: #4a5568;
  --muted: #7a8494;
  --navy: #1f304c;
  --navy-deep: #152338;
  --navy-mid: #263751;
  --silver: #9aa6b5;
  --silver-soft: #c9d0da;
  --platinum: #e6eaef;
  --line: rgba(11, 27, 51, 0.1);
  --shadow: 0 24px 60px rgba(11, 27, 51, 0.12);
  --radius: 2px;
  --container: 1180px;
  --header-h: 76px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-en: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --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);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 8% -12%, rgba(154, 166, 181, 0.22), transparent 55%),
    radial-gradient(900px 500px at 92% 0%, rgba(11, 27, 51, 0.08), transparent 50%),
    linear-gradient(180deg, #f7f9fb 0%, var(--bg) 42%, #eef2f6 100%);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* Topbar */
.topbar {
  background: var(--navy-deep);
  color: rgba(232, 236, 241, 0.9);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 16px;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar a {
  color: inherit;
}

.topbar__btn {
  padding: 6px 14px;
  border: 1px solid rgba(201, 208, 218, 0.55);
  color: var(--silver-soft);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.topbar__btn:hover {
  background: var(--silver);
  color: var(--navy-deep);
  border-color: var(--silver);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(243, 245, 248, 0.86);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 249, 251, 0.94);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo__img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(154, 166, 181, 0.35);
}

.logo__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--silver);
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-deep));
  color: var(--silver-soft);
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.06em;
  box-shadow: inset 0 1px 0 rgba(232, 236, 241, 0.18);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__text strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.logo__text em {
  font-style: normal;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 12px;
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.25s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--navy);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn--primary {
  background: var(--navy);
  color: #e8ecf1;
  box-shadow: 0 10px 28px rgba(11, 22, 38, 0.35);
}

.btn--primary:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
}

.btn--ghost {
  border-color: rgba(232, 236, 241, 0.55);
  color: #e8ecf1;
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(232, 236, 241, 0.12);
}

.btn--outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn--outline:hover {
  background: var(--navy);
  color: #e8ecf1;
}

.btn--block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.text-link:hover {
  border-bottom-color: var(--navy);
}

/* Hero — medical aesthetics carousel (facial collage + planning marks) */
.hero--med {
  position: relative;
  min-height: clamp(420px, 62vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: #1a2740;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s var(--ease), visibility 0.9s var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-collage {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 100%;
  width: 100%;
}

.hero-collage__panel {
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-collage__panel:last-child {
  border-right: 0;
}

.hero-collage__panel img,
.hero-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  filter: saturate(0.9) contrast(1.05) brightness(1.03);
  transform: scale(1.03);
  transition: transform 8s var(--ease);
}

.hero-slide.is-active .hero-collage__panel img,
.hero-slide.is-active .hero-full img {
  transform: scale(1.08);
}

/* On procedure panels that already include markings, soften SVG overlay */
.hero-collage__panel:nth-child(3) .hero-marks,
.hero-collage__panel:nth-child(4) .hero-marks,
.hero-collage__panel:nth-child(5) .hero-marks {
  opacity: 0.35;
}

.hero-full {
  position: absolute;
  inset: 0;
}

.hero-marks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}

.hero-marks path,
.hero-marks polygon {
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-marks polygon {
  fill: rgba(255, 255, 255, 0.92);
  stroke: none;
}

.hero-marks--lg path {
  stroke-width: 2;
}

.hero-slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 28, 48, 0.22) 0%, rgba(15, 28, 48, 0.12) 40%, rgba(15, 28, 48, 0.52) 100%),
    linear-gradient(90deg, rgba(15, 28, 48, 0.28) 0%, transparent 28%, transparent 72%, rgba(15, 28, 48, 0.28) 100%);
  pointer-events: none;
}

.hero-slide__shade--soft {
  background:
    linear-gradient(180deg, rgba(15, 28, 48, 0.18) 0%, rgba(15, 28, 48, 0.32) 55%, rgba(15, 28, 48, 0.62) 100%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 40px 24px 88px;
  max-width: 880px;
}

.hero-copy__brand {
  margin: 0 0 10px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232, 236, 241, 0.92);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-copy__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #16345f;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85),
    0 0 24px rgba(255, 255, 255, 0.55),
    0 8px 28px rgba(10, 20, 40, 0.2);
}

.hero-copy__tagline {
  margin: 0 auto 28px;
  max-width: 36em;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero-copy__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 64px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-controls__btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(15, 28, 48, 0.35);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.hero-controls__btn:hover {
  background: rgba(15, 28, 48, 0.6);
  border-color: #fff;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.hero-dots button.is-active {
  background: #fff;
  transform: scale(1.25);
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 5;
  line-height: 0;
  pointer-events: none;
}

.hero-wave svg {
  width: 100%;
  height: 56px;
  display: block;
}

.hero-wave path {
  fill: var(--bg);
}

@media (max-width: 900px) {
  .hero-collage {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-collage__panel:nth-child(n + 4) {
    display: none;
  }

  .hero--med {
    min-height: clamp(460px, 70vh, 620px);
  }
}

@media (max-width: 640px) {
  .hero-collage {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-collage__panel:nth-child(n + 3) {
    display: none;
  }
}

/* helpers reused by page-hero */
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 78% 35%, rgba(201, 208, 218, 0.28), transparent 60%),
    radial-gradient(ellipse 40% 35% at 15% 70%, rgba(31, 48, 76, 0.35), transparent 55%);
  mix-blend-mode: soft-light;
}

.hero__glow--soft { opacity: 0.7; }

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 22, 38, 0.78) 0%, rgba(11, 22, 38, 0.48) 36%, rgba(11, 22, 38, 0.18) 58%, rgba(11, 22, 38, 0.28) 100%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.12) 0%, rgba(11, 22, 38, 0.18) 50%, rgba(11, 22, 38, 0.62) 100%);
}

/* Quick cats */
.quick-cats {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.quick-cats__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 0;
}

.quick-cats__list a {
  display: block;
  padding: 16px 18px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  transition: color 0.25s var(--ease);
}

.quick-cats__list a:hover {
  color: var(--navy);
}

/* Sections */
.section {
  padding: 100px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(232, 237, 243, 0.7), rgba(243, 245, 248, 0.25));
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
}

.section-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.section-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 300;
}

.section-cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Brand */
.brand__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.brand__points {
  list-style: none;
  margin: 32px 0;
  padding: 0;
  display: grid;
  gap: 22px;
}

.brand__points li {
  display: grid;
  gap: 6px;
  padding-left: 18px;
  border-left: 2px solid var(--silver);
}

.brand__points strong {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
}

.brand__points span {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 300;
}

.brand__figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.brand__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.brand__figure:hover img {
  transform: scale(1.04);
}

.brand__figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(6, 18, 34, 0.78));
  color: #e8ecf1;
  display: grid;
  gap: 6px;
}

.brand__figure em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.1em;
}

.brand__figure span {
  font-size: 13px;
  opacity: 0.85;
}

/* Service tabs */
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.service-tabs__btn {
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: all 0.3s var(--ease);
}

.service-tabs__btn.is-active,
.service-tabs__btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #e8ecf1;
}

.service-panel {
  display: none;
}

.service-panel.is-active {
  display: block;
  animation: fadeUp 0.5s var(--ease);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-item {
  display: grid;
  gap: 10px;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease);
}

.service-item:hover {
  border-color: var(--silver);
  transform: translateY(-4px);
  background: rgba(255, 252, 250, 0.95);
}

.service-item__no {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--silver);
}

.service-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
}

.service-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 300;
}

/* Doctors */
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.doctor {
  overflow: hidden;
}

.doctor__photo {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-alt);
}

.doctor__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: saturate(0.92);
}

.doctor:hover .doctor__photo img {
  transform: scale(1.05);
}

.doctor__info {
  padding: 18px 4px 0;
}

.doctor__dept {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--silver);
  text-transform: uppercase;
}

.doctor__info h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
}

.doctor__info p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 300;
}

/* Cases */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.case img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1s var(--ease);
}

.case:hover img {
  transform: scale(1.06);
}

.case__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(6, 18, 34, 0.78));
  color: #e8ecf1;
}

.case__meta h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.08em;
}

.case__meta p {
  margin: 0;
  font-size: 13px;
  opacity: 0.85;
}

/* Quality */
.quality-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.quality-steps li {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.quality-steps__num {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--silver);
}

.quality-steps h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
}

.quality-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 300;
}

/* Appointment */
.appointment__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.appointment__info {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.appointment__info li {
  display: grid;
  gap: 4px;
}

.appointment__info strong {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--silver);
  font-weight: 500;
}

.appointment__form {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: rgba(255, 252, 250, 0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.appointment__form label {
  display: grid;
  gap: 8px;
}

.appointment__form label span {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.appointment__form input,
.appointment__form select,
.appointment__form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s var(--ease);
}

.appointment__form input:focus,
.appointment__form select:focus,
.appointment__form textarea:focus {
  border-color: var(--silver);
}

.form-tip {
  margin: 0;
  font-size: 13px;
  color: var(--navy);
}

/* Footer */
.footer {
  background: var(--navy-deep);
  color: rgba(232, 236, 241, 0.78);
  padding: 72px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(232, 236, 241, 0.12);
}

.logo--footer .logo__img {
  box-shadow: 0 0 0 1px rgba(201, 208, 218, 0.35);
}

.logo--footer .logo__mark {
  border-color: var(--silver-soft);
  color: var(--silver-soft);
}

.logo--footer .logo__text strong {
  color: #e8ecf1;
}

.logo--footer .logo__text em {
  color: rgba(232, 236, 241, 0.5);
}

.footer__tagline {
  margin: 18px 0 0;
  font-weight: 300;
  font-size: 14px;
}

.footer h4 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #e8ecf1;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
}

.footer a:hover {
  color: var(--silver-soft);
}

.footer__bottom {
  padding-top: 24px;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(232, 236, 241, 0.48);
}

.footer__bottom p {
  margin: 0 0 8px;
}

/* Page hero / services catalog */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  color: #e8ecf1;
  overflow: hidden;
  background: linear-gradient(135deg, #152338 0%, #1f304c 50%, #2a3d58 100%);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.92) contrast(1.04);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 0 56px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.1em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.page-hero p:last-child {
  margin: 0;
  max-width: 36em;
  font-weight: 300;
  color: rgba(232, 236, 241, 0.9);
}

.anchor-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  background: rgba(243, 245, 248, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.anchor-nav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  padding: 10px 0;
}

.anchor-nav a {
  padding: 8px 14px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.anchor-nav a:hover {
  color: var(--navy);
}

.catalog-block {
  margin-bottom: 72px;
  scroll-margin-top: 140px;
}

.catalog-block__head {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.catalog-block__head h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.08em;
}

.catalog-block__head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 300;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.catalog-card {
  padding: 28px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.catalog-card:hover {
  border-color: var(--silver);
  transform: translateY(-3px);
}

.catalog-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
}

.catalog-card p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 300;
}

.catalog-cta {
  text-align: center;
  padding: 56px 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(154, 166, 181, 0.22), transparent 70%),
    rgba(255, 252, 250, 0.7);
}

.catalog-cta h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.08em;
}

.catalog-cta p {
  margin: 0 0 24px;
  color: var(--ink-soft);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .brand__grid,
  .appointment__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-grid,
  .doctor-grid,
  .case-grid,
  .quality-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 768px) {
  .topbar__inner {
    font-size: 12px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: calc(40px + var(--header-h)) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    background: rgba(247, 249, 251, 0.98);
    border-bottom: 1px solid var(--line);
    gap: 0;
  }

  .nav.is-open {
    display: flex;
  }

  .nav__link {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav__link::after {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero__content {
    padding-bottom: 72px;
  }

  .section {
    padding: 72px 0;
  }

  .service-grid,
  .doctor-grid,
  .case-grid,
  .quality-steps,
  .catalog-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .case {
    min-height: 340px;
  }

  .appointment__form {
    padding: 22px;
  }

  .quick-cats__list {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .quick-cats__list a {
    white-space: nowrap;
    padding: 14px 12px;
  }
}
