@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  --bg: oklch(99% 0.006 240);
  --surface: oklch(100% 0 0);
  --fg: oklch(24% 0.055 245);
  --muted: oklch(52% 0.028 245);
  --border: oklch(91% 0.018 240);
  --accent: oklch(63% 0.16 235);
  --accent-strong: oklch(52% 0.17 240);
  --navy: oklch(22% 0.07 245);
  --page-wash: oklch(98% 0.012 235);
  --ice: oklch(97% 0.018 230);
  --ice-strong: oklch(93% 0.04 230);
  --champagne: oklch(80% 0.045 85);
  --success: oklch(58% 0.12 155);
  --warn: oklch(74% 0.12 78);
  --danger: oklch(58% 0.16 25);
  --shadow: 0 24px 70px -40px rgba(6, 43, 70, .32);
  --soft-shadow: 0 16px 45px -34px rgba(6, 43, 70, .42);
  --display: 'Sora', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --body: 'Manrope', 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --ease: cubic-bezier(.23, 1, .32, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page-wash);
  color: var(--fg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open,
body.preview-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
:where(a, button, [role="button"], [tabindex]:not([tabindex="-1"])):focus-visible {
  outline: 3px solid color-mix(in oklch, var(--accent) 72%, white);
  outline-offset: 4px;
}
:where(a, button, [role="button"]):focus-visible:not(.btn) {
  border-radius: 10px;
}

.site {
  min-height: 100vh;
  background: var(--page-wash);
  overflow: clip;
}
.container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}
.wide {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
}
.top-strip {
  background: linear-gradient(90deg, #087cc2, #0b8ed8);
  color: #fff;
  font-size: 13px;
}
.top-strip__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-strip__group {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.top-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  white-space: nowrap;
  opacity: .96;
}
.dot-icon {
  width: 7px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  display: inline-block;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
.nav {
  height: 92px;
  display: grid;
  grid-template-columns: 254px 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--navy);
}
.brand-logo {
  width: 220px;
  height: 74px;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.brand-mark {
  width: 148px;
  line-height: 1;
}
.brand-mark b {
  display: block;
  font-weight: 300;
  letter-spacing: .06em;
  font-size: 38px;
  color: #087cc2;
}
.brand-mark span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .42em;
}
.brand-rule {
  display: none;
}
.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--navy);
  font-weight: 600;
}
.menu a {
  position: relative;
  padding: 12px 0;
}
.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease);
}
.menu a:hover::after,
.menu a.active::after { transform: scaleX(1); }
.menu-mobile-contact {
  display: none;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  align-items: center;
  justify-content: center;
}
.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  content: '';
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
  position: absolute;
  transition: transform 180ms var(--ease), opacity 160ms var(--ease);
}
.mobile-toggle { position: relative; }
.mobile-toggle::before { transform: translateY(-6px); }
.mobile-toggle::after { transform: translateY(6px); }
.menu-open .mobile-toggle span { opacity: 0; }
.menu-open .mobile-toggle::before { transform: rotate(45deg); }
.menu-open .mobile-toggle::after { transform: rotate(-45deg); }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #0b8ed8, #087cc2);
  color: #fff;
  box-shadow: 0 18px 38px -24px rgba(8, 124, 194, .95);
}
.btn-secondary {
  background: #fff;
  color: var(--accent-strong);
  border-color: color-mix(in oklch, var(--accent) 72%, white);
}
.btn-light {
  background: color-mix(in oklch, var(--ice) 70%, white);
  color: var(--navy);
  border-color: var(--border);
}
.arrow { font-size: 20px; line-height: 1; }
.cta-panel .btn-primary,
.alert-strip .btn-primary {
  background: #fff;
  color: var(--accent-strong);
  border-color: rgba(255,255,255,.82);
  box-shadow: 0 18px 34px -28px rgba(6, 43, 70, .72);
}
.cta-panel .btn-primary .arrow,
.alert-strip .btn-primary .arrow {
  color: var(--accent-strong);
}
.cta-panel .btn-primary:hover,
.alert-strip .btn-primary:hover {
  background: color-mix(in oklch, white 92%, var(--ice));
}

.hero {
  position: relative;
  padding: 76px 0 52px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(430px, .82fr);
  gap: 50px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 700;
}
.kicker::before {
  content: '';
  width: 42px;
  height: 2px;
  background: currentColor;
}
h1, h2, h3 { color: var(--navy); margin: 0; text-wrap: pretty; }
.display {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.02em;
  font-size: clamp(44px, 5.4vw, 78px);
  margin: 18px 0 22px;
}
.display em,
.section-title em {
  font-family: var(--display);
  font-style: italic;
  color: var(--accent-strong);
}
.lead {
  max-width: 620px;
  color: color-mix(in oklch, var(--muted), var(--navy) 18%);
  font-size: clamp(18px, 1.8vw, 22px);
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 34px 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
}
.trust-card {
  min-height: 86px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .9);
  box-shadow: none;
}
.line-icon {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  background: transparent;
}
.line-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-card b {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.2;
}
.trust-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.hero-photo {
  position: relative;
  min-height: 610px;
  border-radius: 30px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(231,245,252,.72)),
    radial-gradient(circle at 20% 20%, rgba(216,199,168,.32), transparent 30%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.hero-photo:hover,
.hero-photo:focus-visible,
.image-card[data-preview-image-card]:hover,
.image-card[data-preview-image-card]:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in oklch, var(--accent) 24%, var(--border));
  box-shadow: 0 22px 52px rgba(6, 43, 70, .12);
  outline: 3px solid color-mix(in oklch, var(--accent) 62%, white);
  outline-offset: 5px;
}
.hero-photo:active,
.image-card[data-preview-image-card]:active { transform: translateY(0) scale(.995); }
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 36px 44px auto auto;
  width: 170px;
  height: 170px;
  border: 1px solid color-mix(in oklch, var(--accent) 24%, transparent);
  border-radius: 999px;
}
.hero-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 24px;
  filter: saturate(.92) brightness(1.04);
}
.hero-photo__caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: start;
  padding: 24px 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255,255,255,.76);
  backdrop-filter: blur(18px);
}
.hero-photo__caption > span {
  display: block;
  width: 100%;
}
.hero-photo__caption b { color: var(--navy); }
.mono {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}
.service-marquee {
  overflow: hidden;
  background: var(--ice);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(20px, 3vw, 34px) 0 clamp(22px, 3.2vw, 38px);
  outline: none;
}
.service-marquee:focus-visible {
  box-shadow: inset 0 0 0 2px color-mix(in oklch, var(--accent) 72%, white);
}
.service-marquee__track {
  display: flex;
  width: max-content;
  animation: service-marquee-scroll 64s linear infinite;
  will-change: transform;
}
.service-marquee:hover .service-marquee__track,
.service-marquee:focus-visible .service-marquee__track {
  animation-play-state: paused;
}
.service-marquee__group {
  display: inline-flex;
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
  padding-right: clamp(22px, 4vw, 54px);
  white-space: nowrap;
}
.service-marquee__group span {
  font-family: var(--body);
  font-size: clamp(42px, 5.85vw, 82px);
  line-height: 1;
  letter-spacing: -.018em;
  font-weight: 760;
  color: color-mix(in oklch, var(--navy) 44%, var(--ice));
  -webkit-text-stroke: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .42);
  text-rendering: optimizeLegibility;
  font-kerning: normal;
}
.service-marquee__group b {
  font-size: clamp(42px, 5.4vw, 80px);
  line-height: 1;
  color: var(--navy);
  font-weight: 800;
}
@keyframes service-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.page-hero {
  padding: 78px 0 52px;
  background: var(--page-wash);
  border-bottom: 1px solid var(--border);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr .64fr;
  gap: 42px;
  align-items: end;
}
.page-title {
  margin: 14px 0 16px;
  font-family: var(--display);
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -.02em;
}

.section {
  padding: 78px 0;
  background: var(--page-wash);
}
.section.alt { background: var(--page-wash); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(260px, .48fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 38px;
}
.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.018em;
}
.section-copy {
  color: var(--muted);
  font-size: 17px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--soft-shadow);
  padding: 24px;
}
.card h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}
.card p { margin: 0; color: var(--muted); }
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}
.stat {
  padding: 26px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  color: var(--accent-strong);
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
}
.stat span { color: var(--muted); }

.doctor-panel {
  display: grid;
  grid-template-columns: .58fr 1fr;
  gap: 34px;
  align-items: stretch;
}
.doctor-panel img,
.image-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 24px;
}
.image-card[data-preview-image-card] {
  border-radius: 24px;
  cursor: zoom-in;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.doctor-panel__text {
  padding: clamp(28px, 4vw, 54px);
  border-radius: 28px;
  background: linear-gradient(145deg, #fff, var(--ice));
  border: 1px solid var(--border);
}
.timeline {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
}
.timeline-item b { color: var(--accent-strong); }

.service-toolbar,
.portfolio-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}
.pill.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.content-filter-list,
.portfolio-filter-list {
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.content-filter-list__item,
.portfolio-filter-list__item {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 4px 0 12px;
  font: inherit;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  transition: color 160ms var(--ease);
}
.content-filter-list__item::after,
.portfolio-filter-list__item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity 160ms var(--ease), transform 160ms var(--ease);
}
.content-filter-list__item:hover,
.content-filter-list__item:focus-visible,
.content-filter-list__item.active,
.portfolio-filter-list__item:hover,
.portfolio-filter-list__item:focus-visible,
.portfolio-filter-list__item.active {
  color: var(--navy);
}
.content-filter-list__item:focus-visible,
.portfolio-filter-list__item:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--accent) 22%, transparent);
  outline-offset: 6px;
}
.content-filter-list__item.active::after,
.portfolio-filter-list__item.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.service-toolbar.custom-filter,
.portfolio-toolbar.custom-filter {
  position: relative;
  display: block;
  width: min(100%, 380px);
  margin-bottom: 28px;
  padding-inline: 0;
  z-index: 8;
}
.custom-select,
.custom-filter {
  position: relative;
}
.custom-select__button,
.custom-filter__button {
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr 18px;
  align-items: center;
  gap: 12px;
  border: 1px solid color-mix(in oklch, var(--accent) 22%, var(--border));
  border-radius: 14px;
  background: linear-gradient(180deg, var(--ice), color-mix(in oklch, var(--ice) 86%, #fff));
  color: var(--navy);
  padding: 14px 16px;
  font-weight: 720;
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease);
}
.custom-select__button:hover,
.custom-filter__button:hover {
  border-color: color-mix(in oklch, var(--accent) 46%, var(--border));
  background: #fff;
}
.custom-select.is-open .custom-select__button,
.custom-filter.is-open .custom-filter__button,
.custom-select__button:focus-visible,
.custom-filter__button:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent) 16%, transparent);
  outline: none;
}
.custom-select__arrow {
  width: 10px;
  height: 10px;
  justify-self: end;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms var(--ease);
}
.custom-select.is-open .custom-select__arrow,
.custom-filter.is-open .custom-select__arrow {
  transform: translateY(2px) rotate(225deg);
}
.custom-select__menu,
.custom-filter__menu {
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 6px);
  display: grid;
  gap: 3px;
  max-height: min(280px, 52vh);
  overflow: auto;
  padding: 6px;
  border: 1px solid color-mix(in oklch, var(--accent) 18%, var(--border));
  border-radius: 14px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 48px rgba(6, 43, 70, .14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms var(--ease), transform 160ms var(--ease);
  z-index: 40;
}
.custom-select.is-open .custom-select__menu,
.custom-filter.is-open .custom-filter__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.custom-select__option {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--fg);
  padding: 11px 12px;
  font-weight: 650;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: background 140ms var(--ease), color 140ms var(--ease);
}
.custom-select__option:hover,
.custom-select__option:focus-visible {
  background: var(--ice);
  color: var(--navy);
  outline: none;
}
.custom-select__option.is-selected,
.custom-select__option.active {
  background: var(--accent);
  color: #fff;
}
.service-card {
  position: relative;
  min-height: 245px;
  display: flex;
  flex-direction: column;
}
.service-card .tag {
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 13px;
}
.service-card .price {
  margin-top: auto;
  padding-top: 20px;
  color: var(--navy);
  font-weight: 800;
}
.services-showcase {
  padding: clamp(70px, 7vw, 116px) 0;
}
.services-showcase__grid {
  display: grid;
  grid-template-columns: minmax(320px, .68fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: start;
}
.services-showcase__intro {
  position: sticky;
  top: 118px;
  max-width: 560px;
}
.services-showcase__intro .section-title {
  margin: 16px 0 22px;
  font-size: clamp(40px, 4.7vw, 66px);
  line-height: 1.04;
}
.services-showcase__intro .section-copy {
  max-width: 56ch;
  margin: 0 0 32px;
}
.services-showcase__list {
  display: grid;
  gap: 26px;
  padding-right: 28px;
}
.service-feature-card {
  position: relative;
  min-height: 242px;
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: stretch;
  padding: 20px 72px 20px 20px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--soft-shadow);
  overflow: visible;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}
.service-feature-card::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: 34px;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--page-wash);
  z-index: 0;
}
.service-feature-card:hover,
.service-feature-card:focus-visible {
  transform: translateY(-3px);
  border-color: color-mix(in oklch, var(--accent) 26%, white);
  box-shadow: 0 26px 62px rgba(6, 43, 70, .13);
  outline: 3px solid color-mix(in oklch, var(--accent) 62%, white);
  outline-offset: 5px;
}
.service-feature-card:active { transform: translateY(-1px) scale(.997); }
.service-feature-card__media {
  overflow: hidden;
  border-radius: 22px;
  background: var(--ice);
}
.service-feature-card__media img {
  width: 100%;
  height: 100%;
  min-height: 202px;
  object-fit: cover;
  filter: saturate(.9) brightness(1.03);
  transition: transform 260ms var(--ease), filter 260ms var(--ease);
}
.service-feature-card:hover .service-feature-card__media img,
.service-feature-card:focus-visible .service-feature-card__media img {
  transform: scale(1.035);
  filter: saturate(.96) brightness(1.05);
}
.service-feature-card__body {
  min-height: 202px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  align-content: start;
  padding: 24px 0 16px;
}
.service-feature-card__top {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  gap: 12px;
}
.service-feature-card__tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.35;
  text-transform: uppercase;
}
.service-feature-card__tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}
.service-feature-card__title {
  display: block;
  color: var(--navy);
  font-size: clamp(24px, 2.15vw, 32px);
  line-height: 1.12;
  letter-spacing: -.018em;
  font-weight: 650;
}
.service-feature-card__text {
  display: block;
  align-self: end;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.service-feature-card__arrow {
  position: absolute;
  right: -19px;
  bottom: 43px;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 22px;
  box-shadow: 0 14px 32px rgba(6, 43, 70, .10);
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease);
}
.service-feature-card:hover .service-feature-card__arrow,
.service-feature-card:focus-visible .service-feature-card__arrow {
  transform: none;
  background: var(--accent);
  color: #fff;
}
.service-card.is-hidden,
.case-card.is-hidden { display: none; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.case-card {
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.case-card:hover,
.case-card:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in oklch, var(--accent) 28%, var(--border));
  box-shadow: 0 18px 42px rgba(6, 43, 70, .10);
  outline: 3px solid color-mix(in oklch, var(--accent) 62%, white);
  outline-offset: 5px;
}
.case-card:active { transform: translateY(0) scale(.995); }
.case-card[data-preview-image-card] > img {
  width: 100%;
  aspect-ratio: 1.18 / .78;
  object-fit: cover;
  transition: transform 260ms var(--ease), filter 260ms var(--ease);
}
.case-card[data-preview-image-card]:hover > img,
.case-card[data-preview-image-card]:focus-visible > img {
  transform: scale(1.025);
  filter: saturate(.92) contrast(1.02);
}
.case-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.case-pair figure {
  position: relative;
  margin: 0;
  min-width: 0;
  background: var(--ice);
  overflow: hidden;
}
.case-pair img {
  width: 100%;
  aspect-ratio: 1 / .78;
  object-fit: cover;
  filter: saturate(.85);
  display: block;
  transition: transform 260ms var(--ease), filter 260ms var(--ease);
}
.case-card:hover .case-pair img,
.case-card:focus-visible .case-pair img {
  transform: scale(1.025);
  filter: saturate(.92) contrast(1.02);
}
.case-pair figure span {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 8px 22px rgba(6, 43, 70, .08);
}
.case-card__body { padding: 20px; }
.case-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}
.case-card h3 { margin: 12px 0 8px; }
.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  background: rgba(6, 43, 70, .82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease);
}
.portfolio-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.portfolio-lightbox__panel {
  width: min(1180px, 100%);
  max-height: min(820px, 92dvh);
  display: grid;
  gap: 16px;
  transform: translateY(12px) scale(.985);
  transition: transform 220ms var(--ease);
}
.portfolio-lightbox.is-open .portfolio-lightbox__panel {
  transform: translateY(0) scale(1);
}
.portfolio-lightbox__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
}
.portfolio-lightbox__head span {
  color: color-mix(in oklch, var(--champagne) 82%, white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.portfolio-lightbox__head h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -.018em;
}
.portfolio-lightbox__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(255,255,255,.16);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
}
.portfolio-lightbox__pair figure {
  position: relative;
  margin: 0;
  min-height: 0;
  background: #fff;
}
.portfolio-lightbox__pair img {
  width: 100%;
  height: min(68dvh, 680px);
  object-fit: contain;
  display: block;
  background: color-mix(in oklch, var(--ice) 70%, white);
}
.portfolio-lightbox__pair span {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.portfolio-lightbox__close {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  top: clamp(18px, 3vw, 34px);
  z-index: 31;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: transform 160ms var(--ease), background-color 160ms var(--ease);
}
.portfolio-lightbox__close:hover,
.portfolio-lightbox__close:focus-visible {
  transform: translateY(-1px);
  background: #fff;
  outline: 3px solid color-mix(in oklch, var(--accent) 62%, white);
  outline-offset: 4px;
}
.portfolio-lightbox__close:active { transform: scale(.96); }
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 32;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(6, 43, 70, .86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease);
}
.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.image-lightbox__panel {
  width: min(1120px, 100%);
  max-height: 88dvh;
  margin: 0;
  display: grid;
  gap: 12px;
  transform: translateY(12px) scale(.985);
  transition: transform 220ms var(--ease);
}
.image-lightbox.is-open .image-lightbox__panel {
  transform: translateY(0) scale(1);
}
.image-lightbox__panel img {
  width: 100%;
  max-height: min(76dvh, 760px);
  object-fit: contain;
  display: block;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: color-mix(in oklch, var(--ice) 72%, white);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}
.image-lightbox__panel figcaption {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.image-lightbox__close {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  top: clamp(18px, 3vw, 34px);
  z-index: 33;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: transform 160ms var(--ease), background-color 160ms var(--ease);
}
.image-lightbox__close:hover,
.image-lightbox__close:focus-visible {
  transform: translateY(-1px);
  background: #fff;
  outline: 3px solid color-mix(in oklch, var(--accent) 62%, white);
  outline-offset: 4px;
}
.image-lightbox__close:active { transform: scale(.96); }
.reviews-section {
  overflow: hidden;
}
.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}
.reviews-head .section-title {
  max-width: 780px;
  margin-top: 16px;
}
.reviews-controls {
  display: flex;
  gap: 10px;
}
.reviews-control {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--navy) 44%, var(--border));
  border-radius: 8px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transition: background-color 160ms var(--ease), border-color 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease);
}
.reviews-control:hover,
.reviews-control:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  outline: 3px solid color-mix(in oklch, var(--accent) 62%, white);
  outline-offset: 4px;
}
.reviews-control:disabled {
  opacity: .38;
  cursor: default;
  transform: none;
}
.reviews-shell {
  overflow: visible;
}
.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 0 8px 34px 2px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--accent) 24%, transparent);
  outline-offset: 8px;
  border-radius: 28px;
}
.review-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 320px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 24px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--soft-shadow);
  scroll-snap-align: start;
}
.section-actions { margin-top: 28px; }
.review-card::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 30px;
  z-index: 0;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--page-wash) 82%, white);
}
.review-quote {
  position: absolute;
  right: 28px;
  top: 34px;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(11, 142, 216, .2);
}
.review-quote svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}
.review-stars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 4px;
  color: var(--navy);
  font-size: 19px;
  letter-spacing: .02em;
}
.review-card p {
  position: relative;
  z-index: 1;
  max-width: 40ch;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.review-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: end;
  margin-top: 0;
}
.review-avatar {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,.86), transparent 34%),
    linear-gradient(145deg, var(--accent), var(--navy));
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 12px 28px rgba(6, 43, 70, .16);
}
.review-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.review-avatar .review-avatar__img--a {
  object-position: 70% 34%;
  transform: scale(1.22);
}
.review-avatar .review-avatar__img--m {
  object-position: 50% 30%;
  transform: scale(1.12);
}
.review-avatar .review-avatar__img--r {
  object-position: 50% 28%;
  transform: scale(1.12);
}
.review-avatar .review-avatar__img--k {
  object-position: 50% 28%;
  transform: scale(1.34);
}
.review-author b {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.25;
}
.review-author small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.35;
  text-transform: uppercase;
}
.accordion {
  display: grid;
  gap: 14px;
}
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  transition: border-color 200ms var(--ease), background-color 200ms var(--ease);
}
.accordion-item.open {
  border-color: color-mix(in oklch, var(--accent) 24%, var(--border));
  background: color-mix(in oklch, var(--ice) 18%, white);
}
.accordion-button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--navy);
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}
.accordion-arrow {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--accent) 34%, var(--border));
  border-radius: 999px;
  color: var(--accent-strong);
  background: #fff;
  transition: transform 220ms var(--ease), border-color 200ms var(--ease), background-color 200ms var(--ease);
}
.accordion-arrow::before {
  content: '';
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 220ms var(--ease);
}
.accordion-button:hover .accordion-arrow,
.accordion-button:focus-visible .accordion-arrow {
  border-color: var(--accent);
  background: var(--ice);
}
.accordion-item.open .accordion-arrow {
  transform: rotate(180deg);
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #fff;
}
.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms var(--ease);
}
.accordion-item.open .accordion-panel { grid-template-rows: 1fr; }
.accordion-panel > div {
  overflow: hidden;
  padding: 0 22px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms var(--ease), transform 220ms var(--ease), padding-bottom 220ms var(--ease);
}
.accordion-item.open .accordion-panel > div {
  padding-bottom: 22px;
  opacity: 1;
  transform: translateY(0);
}
.check-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.check-list li { margin: 8px 0; }
.info-hero {
  padding: 30px 0 26px;
  background: var(--page-wash);
}
.info-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(20px, 3vw, 34px);
  align-items: end;
}
.info-hero .page-title {
  max-width: 640px;
  font-size: clamp(36px, 4.2vw, 58px);
}
.info-hero .lead {
  max-width: 660px;
  font-size: clamp(16px, 1.35vw, 18px);
}
.info-brief {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid color-mix(in oklch, var(--accent) 22%, var(--border));
  border-radius: 14px;
  background: color-mix(in oklch, var(--ice) 48%, white);
}
.info-brief .mono { color: var(--accent-strong); }
.info-brief dl {
  margin: 0;
  display: grid;
  gap: 0;
}
.info-brief dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 9px 0;
  border-top: 1px solid var(--border);
}
.info-brief dt {
  color: var(--muted);
  font-size: 13px;
}
.info-brief dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
}
.prep-section {
  padding-top: 34px;
  background: var(--page-wash);
}
.info-board {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .74fr);
  gap: 18px;
  align-items: start;
}
.clinical-panel {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: none;
}
.panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.panel-head h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
  letter-spacing: -.016em;
}
.panel-head .mono { color: var(--accent-strong); }
.route-panel { padding: 0; }
.clinical-timeline {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}
.clinical-timeline li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
}
.clinical-timeline li:last-child { border-bottom: 0; }
.clinical-timeline span {
  color: var(--accent-strong);
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .08em;
}
.clinical-timeline b {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.2;
}
.clinical-timeline p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}
.analysis-board { overflow: hidden; }
.analysis-board__head {
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(240px, .38fr);
  gap: 22px;
  align-items: end;
  padding: clamp(20px, 3vw, 28px);
  border-bottom: 1px solid var(--border);
}
.analysis-board__head h2 {
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.1;
  letter-spacing: -.016em;
}
.analysis-table { display: grid; }
.analysis-row {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 18px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
}
.analysis-row:last-child { border-bottom: 0; }
.analysis-row b {
  color: var(--accent-strong);
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.analysis-row span { color: var(--fg); }
.operation-day {
  grid-column: 1 / span 2;
  display: block;
  padding: 0;
  background: rgba(255,255,255,.92);
  overflow: hidden;
}
.operation-day .panel-head {
  align-items: baseline;
  justify-content: flex-start;
  border-right: 0;
  border-bottom: 1px solid var(--border);
}
.day-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}
.day-checklist li {
  display: grid;
  grid-template-columns: minmax(92px, .32fr) minmax(0, 1fr);
  gap: 14px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
}
.day-checklist li:nth-child(odd) { border-right: 1px solid var(--border); }
.day-checklist li:nth-last-child(-n + 2) { border-bottom: 0; }
.day-checklist li:last-child { border-bottom: 0; }
.day-checklist b { color: var(--navy); }
.day-checklist span { color: var(--muted); }
.alert-strip {
  grid-column: 1 / span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 18px;
  background: var(--navy);
  color: rgba(255,255,255,.78);
}
.alert-strip h2 {
  max-width: 820px;
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.16;
  font-weight: 600;
}
.alert-strip .mono { color: color-mix(in oklch, var(--champagne) 72%, white); }
.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(6, 43, 70, .96), rgba(8, 124, 194, .9)),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.18), transparent 34%);
  color: #fff;
  overflow: hidden;
}
.cta-panel h2 { color: #fff; }
.cta-panel p { color: rgba(255,255,255,.78); }
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--fg);
  background: var(--ice);
  outline: none;
}
.custom-select input[type="hidden"] {
  display: none;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent) 18%, transparent);
}
.form-status {
  min-height: 22px;
  margin-top: 12px;
  color: var(--success);
  font-weight: 700;
}
.contact-hero {
  padding: 42px 0 30px;
  background: var(--page-wash);
}
.contact-hero__inner { max-width: 980px; }
.contact-hero .page-title {
  max-width: 940px;
  margin-bottom: 12px;
  font-size: clamp(38px, 4.8vw, 62px);
}
.contact-section { padding-top: 46px; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) 360px;
  gap: 20px;
  align-items: start;
}
.contact-form {
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: none;
}
.form-head {
  max-width: 620px;
  margin-bottom: 22px;
}
.form-head .mono { color: var(--accent-strong); }
.form-head h2 {
  margin: 8px 0 8px;
  color: var(--navy);
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.08;
  letter-spacing: -.018em;
}
.form-head p {
  margin: 0;
  color: var(--muted);
}
.contact-form .btn { margin-top: 16px; }
.contact-aside {
  display: grid;
  gap: 14px;
}
.contact-card,
.contact-note {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
}
.contact-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}
.contact-card .mono { color: var(--accent-strong); }
.contact-phone {
  color: var(--navy);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.01em;
}
.contact-list {
  margin: 0;
  display: grid;
  gap: 0;
}
.contact-list div {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.contact-list dt {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.contact-list dd {
  margin: 0;
  color: var(--fg);
}
.contact-note {
  padding: 18px;
  background: color-mix(in oklch, var(--ice) 54%, white);
}
.contact-note b { color: var(--navy); }
.contact-note p {
  margin: 8px 0 0;
  color: var(--muted);
}
.footer {
  padding: 54px 0 34px;
  background: #062b46;
  color: rgba(255,255,255,.78);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .7fr);
  gap: 28px;
}
.footer h3,
.footer b { color: #fff; }
.footer a { display: block; margin: 8px 0; color: rgba(255,255,255,.72); }
.footer-bottom {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .service-marquee { overflow-x: auto; }
  .service-marquee__track {
    animation: none !important;
    transform: none;
  }
  .service-marquee__group[aria-hidden="true"] { display: none; }
}

@media (max-width: 1180px) {
  .nav { grid-template-columns: 222px 1fr auto; gap: 16px; }
  .brand-logo {
    width: 202px;
    height: 68px;
  }
  .menu { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { min-height: 520px; }
  .hero-photo img { height: 440px; }
  .services-showcase__grid { grid-template-columns: 1fr; }
  .services-showcase__intro {
    position: static;
    max-width: 760px;
  }
  .services-showcase__intro .section-title {
    font-size: clamp(36px, 5.4vw, 56px);
  }
  .reviews-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .top-strip__inner { align-items: flex-start; flex-direction: column; padding: 10px 0; }
  .nav { position: relative; height: 78px; grid-template-columns: 1fr auto; }
  .menu {
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    width: 100vw;
    min-height: var(--mobile-menu-height, calc(100dvh - 116px));
    max-height: var(--mobile-menu-height, calc(100dvh - 116px));
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 22px 24px calc(26px + env(safe-area-inset-bottom));
    border: 1px solid var(--border);
    border-inline: 0;
    border-bottom: 0;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(247,251,255,.98), rgba(238,247,252,.98)),
      var(--page-wash);
    box-shadow: 0 26px 54px rgba(6, 43, 70, .16);
    transform: translate(-50%, -12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }
  .menu > a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 18px;
  }
  .menu > a::after { display: none; }
  .menu-open .menu { opacity: 1; transform: translateX(-50%); pointer-events: auto; }
  .menu-mobile-contact {
    display: grid;
    gap: 18px;
    align-self: end;
    margin-top: auto;
    padding-top: 26px;
    border-top: 2px solid color-mix(in oklch, var(--accent) 76%, var(--border));
  }
  .menu-phone {
    padding: 0;
    color: var(--navy);
    font-size: clamp(24px, 7vw, 31px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.02em;
  }
  .menu-phone::after,
  .menu-messenger::after {
    display: none;
  }
  .menu-messengers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .menu-messenger {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid color-mix(in oklch, var(--accent) 38%, var(--border));
    border-radius: 12px;
    background: rgba(255,255,255,.72);
    color: var(--accent-strong);
    font-weight: 800;
  }
  .mobile-toggle { display: flex; }
  .header-actions .btn { display: none; }
  .brand-rule { display: none; }
  .display { font-size: clamp(44px, 12vw, 72px); }
  .trust-row,
  .grid-3,
  .stat-band,
  .doctor-panel,
  .section-head,
  .page-hero__grid,
  .footer-grid,
  .cta-panel,
  .contact-layout,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .stat { border-right: 0; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: 0; }
  .info-hero__grid,
  .info-board,
  .analysis-board__head,
  .operation-day,
  .alert-strip {
    grid-template-columns: 1fr;
  }
  .operation-day,
  .alert-strip {
    grid-column: auto;
  }
  .day-checklist { grid-template-columns: 1fr; }
  .day-checklist li:nth-child(odd) { border-right: 0; }
  .day-checklist li:nth-last-child(-n + 2) { border-bottom: 1px solid var(--border); }
  .day-checklist li:last-child { border-bottom: 0; }
  .operation-day .panel-head { border-right: 0; }
  .contact-aside {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .reviews-controls {
    justify-content: flex-start;
  }
  .services-showcase__list {
    padding-right: 0;
  }
  .service-feature-card {
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    padding-right: 58px;
  }
  .service-feature-card::after {
    right: 12px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    background: transparent;
  }
  .service-feature-card__arrow {
    right: 16px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
}
@media (min-width: 760px) and (max-width: 1180px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .container, .wide { width: min(100% - 28px, 1320px); }
  .top-strip {
    font-size: 12px;
  }
  .top-strip__inner {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
  }
  .top-strip__group {
    gap: 10px;
    flex-wrap: nowrap;
  }
  .top-strip__group:first-child .top-strip__item:first-child,
  .top-strip__group:last-child .top-strip__item:last-child {
    display: none;
  }
  .top-strip__item {
    min-height: 24px;
    gap: 6px;
  }
  .dot-icon {
    width: 6px;
    height: 6px;
  }
  .hero, .section, .page-hero { padding: 44px 0; }
  .info-hero { padding: 30px 0 24px; }
  .prep-section { padding-top: 28px; }
  .brand-logo {
    width: 174px;
    height: 62px;
  }
  .display {
    font-size: clamp(38px, 10.4vw, 46px);
    line-height: 1.06;
    margin: 14px 0 16px;
  }
  .page-title {
    font-size: clamp(32px, 8.6vw, 40px);
    line-height: 1.08;
  }
  .lead {
    font-size: 16px;
    line-height: 1.55;
  }
  .hero-actions {
    margin: 24px 0;
    gap: 12px;
  }
  .hero-photo { min-height: 388px; padding: 10px; border-radius: 22px; }
  .hero-photo::before {
    inset: 24px 24px auto auto;
    width: 118px;
    height: 118px;
  }
  .hero-photo img { height: 326px; border-radius: 18px; }
  .service-marquee {
    padding: 18px 0 20px;
  }
  .service-marquee__group {
    gap: 18px;
    padding-right: 18px;
  }
  .service-marquee__group span {
    font-size: clamp(38px, 13vw, 56px);
    letter-spacing: -.012em;
  }
  .service-marquee__group b {
    font-size: clamp(36px, 12vw, 52px);
  }
  .services-showcase {
    padding: 50px 0;
  }
  .services-showcase__intro .section-title {
    font-size: clamp(32px, 9vw, 44px);
  }
  .services-showcase__intro .section-copy {
    margin-bottom: 22px;
  }
  .services-showcase__list {
    gap: 18px;
  }
  .service-feature-card {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 16px;
    padding: 14px 14px 74px;
    border-radius: 24px;
  }
  .service-feature-card__media {
    border-radius: 18px;
  }
  .service-feature-card__media img {
    min-height: 220px;
    max-height: 260px;
  }
  .service-feature-card__body {
    min-height: 0;
    gap: 12px;
    padding: 4px 0 0;
  }
  .service-feature-card__top {
    align-items: center;
  }
  .service-feature-card__title {
    font-size: 24px;
  }
  .service-feature-card__text {
    align-self: start;
    padding-top: 16px;
    font-size: 15px;
  }
  .reviews-head {
    margin-bottom: 24px;
  }
  .reviews-head .section-title {
    margin-top: 12px;
  }
  .reviews-control {
    width: 48px;
    height: 48px;
    font-size: 27px;
  }
  .reviews-track {
    grid-auto-columns: 100%;
    gap: 16px;
    padding-bottom: 30px;
  }
  .review-card {
    min-height: 0;
    gap: 18px;
    padding: 28px 28px 26px;
    border-radius: 24px;
  }
  .review-card::after {
    right: 22px;
    top: 24px;
    width: 52px;
    height: 52px;
  }
  .review-quote {
    right: 26px;
    top: 28px;
    width: 44px;
    height: 44px;
  }
  .review-card p {
    font-size: 16px;
  }
  .review-avatar {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }
  .hero-photo__caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: 1fr;
    padding: 16px 18px;
  }
  .trust-card {
    grid-template-columns: 32px 1fr;
    min-height: 74px;
    padding: 13px 14px;
  }
  .line-icon {
    width: 30px;
    height: 30px;
  }
  .line-icon svg {
    width: 24px;
    height: 24px;
  }
  .grid-4, .form-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .case-pair {
    grid-template-columns: 1fr;
  }
  .case-pair img {
    aspect-ratio: 1.3 / .78;
  }
  .portfolio-lightbox {
    align-items: stretch;
    padding: 64px 12px 14px;
  }
  .portfolio-lightbox__head {
    display: grid;
    align-items: start;
  }
  .portfolio-lightbox__pair {
    grid-template-columns: 1fr;
    max-height: 72dvh;
    overflow: auto;
    border-radius: 18px;
  }
  .portfolio-lightbox__pair img {
    height: auto;
    max-height: 58dvh;
  }
  .portfolio-lightbox__close {
    width: 42px;
    height: 42px;
    font-size: 25px;
  }
  .image-lightbox {
    align-items: stretch;
    padding: 70px 14px 18px;
  }
  .image-lightbox__panel {
    align-content: center;
    max-height: 82dvh;
  }
  .image-lightbox__panel img {
    max-height: 72dvh;
    border-radius: 18px;
  }
  .image-lightbox__close {
    width: 42px;
    height: 42px;
    font-size: 25px;
  }
  .contact-hero {
    padding: 34px 0 22px;
  }
  .contact-hero .page-title {
    font-size: 36px;
  }
  .contact-section {
    padding-top: 28px;
  }
  .contact-form,
  .contact-card,
  .contact-note {
    border-radius: 14px;
  }
  .contact-form {
    padding: 18px;
  }
  .form-head {
    margin-bottom: 18px;
  }
  .form-head h2 {
    font-size: 25px;
  }
  .contact-aside {
    grid-template-columns: 1fr;
  }
  .contact-phone {
    font-size: 22px;
  }
  .info-brief { padding: 14px; }
  .info-brief dl {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--border);
  }
  .info-brief dl div {
    display: grid;
    grid-template-columns: minmax(92px, .42fr) 1fr;
    gap: 10px;
    align-items: baseline;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }
  .info-brief dl div:first-child {
    border-top: 0;
  }
  .info-brief dt,
  .info-brief dd {
    font-size: 12px;
    line-height: 1.35;
  }
  .clinical-timeline li {
    grid-template-columns: 42px 1fr;
    gap: 10px;
    padding: 13px 14px;
  }
  .panel-head {
    display: grid;
    gap: 8px;
    padding: 14px;
  }
  .panel-head h2 { font-size: 24px; }
  .analysis-row,
  .day-checklist li {
    grid-template-columns: 1fr;
  }
  .analysis-row {
    gap: 6px;
    padding: 12px 14px;
  }
  .day-checklist li { padding: 12px 14px; }
  .alert-strip { padding: 18px; }
  .alert-strip { text-align: left; }
}
