:root {
  --ink: #142227;
  --text: #425057;
  --muted: #eef5f4;
  --line: #d7e4e2;
  --white: #ffffff;
  --teal: #0d817d;
  --teal-dark: #075f5d;
  --gold: #bf8b2e;
  --coral: #c85f4a;
  --cyan: #12b8d4;
  --lime: #7ac943;
  --magenta: #d64aa0;
  --shadow: 0 18px 45px rgba(20, 34, 39, 0.13);
  --shadow-strong: 0 24px 62px rgba(20, 34, 39, 0.18);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(180deg, rgba(238, 245, 244, 0.34), rgba(255, 255, 255, 0) 360px),
    var(--white);
  animation: pageFade 0.7s var(--ease) both;
}

body.nav-open {
  overflow: hidden;
}

.site-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--gold), var(--coral), var(--magenta));
  box-shadow: 0 0 20px rgba(18, 184, 212, 0.55);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  animation: headerDrop 0.8s var(--ease) both;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-header.scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(20, 34, 39, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  transition: transform 0.25s var(--ease);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--cyan), var(--gold));
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(13, 129, 125, 0.28);
  animation: markPulse 3.8s ease-in-out infinite;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  font-size: 12px;
  opacity: 0.82;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.nav-dropdown-toggle {
  position: relative;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.site-nav a::before,
.nav-dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.25s ease, transform 0.3s var(--ease);
}

.site-nav a:hover::before,
.site-nav a.active::before,
.nav-dropdown:hover .nav-dropdown-toggle::before,
.nav-dropdown:focus-within .nav-dropdown-toggle::before {
  opacity: 0.65;
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a.active,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  border-color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  min-width: 240px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 11px 12px;
  border-bottom: 0;
  border-radius: var(--radius);
  color: var(--ink);
}

.nav-dropdown-menu a:hover {
  color: var(--teal-dark);
  background: var(--muted);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--ease);
}

.header-call:hover {
  color: var(--white);
  background: var(--teal);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 82px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(191, 139, 46, 0.24), transparent 26%),
    linear-gradient(90deg, rgba(10, 35, 38, 0.94), rgba(10, 35, 38, 0.72)),
    url("assets/hero-clinic.png") center / cover no-repeat;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.12) 40%, transparent 46%),
    linear-gradient(115deg, transparent 0 62%, rgba(13, 129, 125, 0.16) 67%, transparent 74%);
  animation: sheenMove 7s ease-in-out infinite;
  pointer-events: none;
}

.subpage-hero .container {
  position: relative;
  z-index: 1;
}

.subpage-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 78px);
}

.subpage-hero p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.hero-media,
.hero-overlay,
.hero-canvas {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.56;
  mix-blend-mode: screen;
}

.hero-media {
  background:
    url("assets/dr-home.png") right 4% bottom / auto 92% no-repeat,
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(90deg, #0a2326 0%, rgba(10, 35, 38, 0.94) 42%, rgba(10, 35, 38, 0.42) 100%),
    linear-gradient(135deg, #0a2326, #0d817d);
  transform: scale(1.02);
  animation: heroZoom 12s ease-in-out infinite alternate;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 78% 18%, rgba(191, 139, 46, 0.28), transparent 28%),
    radial-gradient(circle at 70% 82%, rgba(13, 129, 125, 0.38), transparent 26%),
    linear-gradient(90deg, rgba(10, 35, 38, 0.93) 0%, rgba(10, 35, 38, 0.7) 42%, rgba(10, 35, 38, 0.04) 82%),
    linear-gradient(0deg, rgba(10, 35, 38, 0.42), rgba(10, 35, 38, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
  margin-left: clamp(24px, 7vw, 96px);
  padding-top: 82px;
  animation: riseIn 0.9s var(--ease) 0.15s both;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 94px;
  width: 4px;
  height: 76%;
  max-height: 360px;
  border-radius: 999px;
  background: linear-gradient(var(--cyan), var(--gold), var(--coral));
  box-shadow: 0 0 18px rgba(18, 184, 212, 0.5);
  animation: lineGrow 1s var(--ease) 0.35s both;
}

.doctor-portrait {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.doctor-portrait::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 1;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--cyan), var(--lime), var(--gold), var(--coral), var(--magenta));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: portraitGlow 4.8s ease-in-out infinite;
  pointer-events: none;
}

.doctor-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.34) 46%, transparent 60%);
  transform: translateX(-120%);
  animation: portraitSheen 5.4s ease-in-out infinite;
  pointer-events: none;
}

.doctor-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
  animation: portraitSettle 1s var(--ease) both, portraitFloat 6.5s ease-in-out 1s infinite;
}

.hero-portrait {
  position: absolute;
  z-index: 1;
  right: clamp(28px, 7vw, 96px);
  bottom: clamp(34px, 7vw, 88px);
  width: min(31vw, 390px);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  animation: portraitCardIn 0.95s var(--ease) 0.35s both;
}

.doctor-profile-card {
  display: grid;
  gap: 18px;
}

.about-portrait {
  aspect-ratio: 4 / 5;
  height: clamp(300px, 34vw, 390px);
  min-height: 0;
  border: 1px solid rgba(13, 129, 125, 0.16);
  animation: techFloat 7s ease-in-out infinite;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

p,
li {
  text-align: justify;
  text-justify: inter-word;
}

.section-kicker,
.hero-stats span,
.feature-list span,
.btn,
.brand,
.site-nav,
.header-call,
.breadcrumb,
.phone,
.footer-grid h3,
.social-icons a {
  text-align: initial;
}

h1 {
  position: relative;
  margin: 0;
  max-width: 680px;
  color: var(--white);
  font-size: clamp(50px, 8vw, 104px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  position: relative;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.heading-animated {
  position: relative;
  isolation: isolate;
}

.heading-canvas {
  position: absolute;
  z-index: -1;
  inset: -18px -22px -20px;
  width: calc(100% + 44px);
  height: calc(100% + 38px);
  opacity: 1;
  pointer-events: none;
}

.heading-animated::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -10px;
  right: -10px;
  bottom: 0.04em;
  height: 0.28em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18, 184, 212, 0.28), rgba(122, 201, 67, 0.24), rgba(191, 139, 46, 0.34), rgba(214, 74, 160, 0.18));
  transform: scaleX(0);
  transform-origin: left;
  animation: headingPaint 1.1s var(--ease) 0.3s both;
}

.hero .heading-animated::before,
.subpage-hero .heading-animated::before {
  background: linear-gradient(90deg, rgba(18, 184, 212, 0.42), rgba(191, 139, 46, 0.58), rgba(214, 74, 160, 0.28));
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(200, 95, 74, 0.18);
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.25s ease;
}

.btn.primary {
  animation: buttonPulse 3.2s ease-in-out infinite;
}

.btn:hover {
  box-shadow: 0 18px 34px rgba(200, 95, 74, 0.28);
  transform: translateY(-3px);
}

.btn.primary {
  color: var(--white);
  background: var(--coral);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.btn.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(680px, 100%);
  margin-top: 52px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  animation: riseIn 0.9s var(--ease) 0.35s both;
}

.hero-stats span {
  position: relative;
  overflow: hidden;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s var(--ease);
}

.hero-stats span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 30%, rgba(18, 184, 212, 0.34) 40%, rgba(191, 139, 46, 0.32) 50%, transparent 62%);
  transform: translateX(-120%);
  animation: techSweep 4.8s ease-in-out infinite;
  animation-delay: calc(var(--reveal-index, 0) * 0.18s);
}

.hero-stats span:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.band {
  padding: 42px 0;
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.82);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.intro h2 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
}

.intro p:last-child {
  margin: 0;
  font-size: 18px;
}

.page-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.98)),
    var(--section-bg, none) center / cover no-repeat;
  background-attachment: local;
}

.page-section::before {
  content: "";
  position: absolute;
  top: 14%;
  right: max(-110px, -8vw);
  width: clamp(160px, 20vw, 320px);
  aspect-ratio: 1;
  border: 1px solid rgba(13, 129, 125, 0.1);
  border-radius: 50%;
  background: rgba(13, 129, 125, 0.045);
  animation: softFloat 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.page-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0 32%, rgba(18, 184, 212, 0.08) 41%, transparent 50%),
    radial-gradient(circle at 18% 22%, rgba(191, 139, 46, 0.08), transparent 24%),
    radial-gradient(circle at 86% 72%, rgba(214, 74, 160, 0.06), transparent 22%);
  animation: sectionImageSheen 9s ease-in-out infinite;
  pointer-events: none;
}

.page-section:nth-of-type(even)::before {
  right: auto;
  left: max(-120px, -9vw);
  background: rgba(191, 139, 46, 0.055);
  animation-delay: -4s;
}

.page-section > .container,
.cta-band > .container,
.band > .container {
  position: relative;
  z-index: 1;
}

.page-section.muted {
  background:
    linear-gradient(180deg, rgba(238, 245, 244, 0.94), rgba(238, 245, 244, 0.98)),
    var(--section-bg, none) center / cover no-repeat;
}

.page-section:nth-of-type(3n + 1) {
  --section-bg: url("assets/card-urology-treatment.png");
}

.page-section:nth-of-type(3n + 2) {
  --section-bg: url("assets/card-laparoscopic-urology.png");
}

.page-section:nth-of-type(3n) {
  --section-bg: url("assets/card-uro-oncology.png");
}

.page-section:nth-of-type(4n) {
  --section-bg: url("assets/card-kidney-stone.png");
}

.two-column,
.split-feature,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.content-block h2 {
  position: relative;
}

.section-heading h2::after,
.content-block h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--teal), var(--lime), var(--gold), var(--coral));
  box-shadow: 0 0 16px rgba(18, 184, 212, 0.22);
  transform: scaleX(0.72);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}

.section-heading.is-visible h2::after,
.content-block.is-visible h2::after,
.page-section.is-visible .content-block h2::after {
  transform: scaleX(1);
}

.content-block {
  max-width: 860px;
}

.content-block p,
.content-block li {
  font-size: 18px;
}

.content-block ul {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.content-block a,
.faq-list a,
.highlight-panel a {
  color: var(--teal-dark);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(20, 34, 39, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}

.faq-list article:hover {
  border-color: rgba(13, 129, 125, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.faq-list p {
  margin-bottom: 0;
}

.section-heading p:last-child {
  font-size: 18px;
}

.highlight-panel,
.privacy-panel,
.contact-card,
.condition-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.highlight-panel::before,
.privacy-panel::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 36%, rgba(255, 255, 255, 0.36) 46%, transparent 58%);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 0.3s ease, transform 0.7s var(--ease);
  pointer-events: none;
}

.highlight-panel:hover,
.privacy-panel:hover,
.contact-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}

.highlight-panel:hover::before,
.privacy-panel:hover::before,
.contact-card:hover::before {
  opacity: 1;
  transform: translateX(60%);
}

.highlight-panel,
.privacy-panel {
  padding: clamp(26px, 4vw, 42px);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
  transition: transform 0.25s var(--ease);
}

.check-list li:hover::before {
  transform: rotate(-45deg) scale(1.12);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-grid:has(> .service-card:nth-child(2):last-child),
.service-grid:has(> .service-card:nth-child(4):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid:has(> .service-card:nth-child(3):last-child),
.service-grid:has(> .service-card:nth-child(6):last-child) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid:has(> .service-card:nth-child(5):last-child) {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-treatment-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-by-two-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(20, 34, 39, 0.06);
  animation: techFloat 7s ease-in-out infinite;
  animation-delay: calc(var(--reveal-index, 0) * -0.45s);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card h3 {
  transition: color 0.3s ease, transform 0.3s var(--ease);
}

.service-card:hover h3 {
  color: var(--teal-dark);
  transform: translateX(4px);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(18, 184, 212, 0.85), rgba(122, 201, 67, 0.5), rgba(191, 139, 46, 0.62), rgba(214, 74, 160, 0.32));
  opacity: 0;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card:hover::before,
.service-card.is-visible::before {
  opacity: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 184, 212, 0.22), rgba(191, 139, 46, 0.12) 45%, transparent 68%);
  transform: scale(0.8);
  animation: colorOrbit 6.5s ease-in-out infinite;
  pointer-events: none;
}

.linked-card {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 160px;
  grid-auto-flow: dense;
  gap: 22px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(24px);
  animation: galleryRise 0.78s var(--ease) forwards;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, 0.42) 48%, transparent 62%);
  opacity: 0;
  transform: translateX(-90%);
  transition: opacity 0.25s ease, transform 0.75s var(--ease);
  pointer-events: none;
}

.gallery-card::after {
  content: "+";
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(10, 35, 38, 0.78);
  box-shadow: 0 12px 24px rgba(10, 35, 38, 0.22);
  font-size: 26px;
  line-height: 1;
  opacity: 0;
  transform: scale(0.76);
  transition: opacity 0.25s ease, transform 0.3s var(--ease);
}

.gallery-card-reception {
  grid-column: span 8;
  grid-row: span 2;
  animation-delay: 0.14s;
}

.gallery-card-doctor {
  grid-column: span 4;
  grid-row: span 3;
  animation-delay: 0.05s;
}

.gallery-card-profile {
  grid-column: span 4;
  grid-row: span 1;
  animation-delay: 0.23s;
}

.gallery-card-conference {
  grid-column: span 5;
  grid-row: span 1;
  animation-delay: 0.41s;
}

.gallery-card-speaker {
  grid-column: span 4;
  grid-row: span 2;
  animation-delay: 0.32s;
}

.gallery-card-exterior {
  grid-column: span 7;
  grid-row: span 1;
  animation-delay: 0.5s;
}

.gallery-card:hover {
  border-color: rgba(13, 129, 125, 0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.gallery-card:hover::before {
  opacity: 1;
  transform: translateX(90%);
}

.gallery-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.gallery-zoom {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 12% 12%, rgba(18, 184, 212, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(238, 245, 244, 0.9), rgba(255, 255, 255, 0.92));
  cursor: zoom-in;
}

.gallery-zoom:focus-visible {
  outline: 3px solid rgba(13, 129, 125, 0.45);
  outline-offset: -3px;
}

.gallery-card img,
.gallery-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.gallery-card:hover img {
  filter: saturate(1.05) contrast(1.02);
}

.gallery-card-profile .gallery-zoom,
.gallery-card-speaker .gallery-zoom {
  padding: 18px;
}

.gallery-card-doctor img {
  object-position: center top;
}

.gallery-card-profile img,
.gallery-card-speaker img {
  object-fit: contain;
}

.gallery-card-profile img {
  max-width: 185px;
}

.gallery-card-speaker img {
  max-width: 232px;
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(18, 184, 212, 0.14), rgba(191, 139, 46, 0.16)),
    rgba(238, 245, 244, 0.9);
}

.gallery-card figcaption {
  padding: 16px 18px 18px;
  color: var(--ink);
  font-weight: 700;
}

.gallery-lightbox[hidden] {
  display: none;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  animation: galleryBackdropIn 0.24s ease both;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 23, 27, 0.82);
  cursor: zoom-out;
}

.gallery-lightbox-panel {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  animation: galleryZoomIn 0.34s var(--ease) both;
}

.gallery-lightbox-panel img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
  object-fit: contain;
}

.gallery-lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.linked-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 30%, rgba(18, 184, 212, 0.24) 40%, rgba(255, 255, 255, 0.48) 48%, rgba(191, 139, 46, 0.24) 56%, transparent 68%);
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity 0.28s ease, transform 0.75s var(--ease);
  pointer-events: none;
}

.linked-card a {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 28px;
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--muted);
  animation: imageSettle 0.9s var(--ease) both;
  transition: transform 0.55s var(--ease), filter 0.35s ease;
}

.linked-card span {
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 900;
}

.linked-card:hover {
  border-color: rgba(13, 129, 125, 0.35);
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
}

.linked-card:hover::after {
  opacity: 1;
  transform: translateX(70%);
}

.linked-card:hover .card-image {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-list span {
  position: relative;
  overflow: hidden;
  min-height: 108px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--muted);
  font-weight: 900;
  text-align: center;
  animation: techFloat 6.5s ease-in-out infinite;
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.feature-list span:nth-child(2),
.service-card:nth-child(2),
.hero-stats span:nth-child(2) {
  animation-delay: -1.2s;
}

.feature-list span:nth-child(3),
.service-card:nth-child(3),
.hero-stats span:nth-child(3) {
  animation-delay: -2.4s;
}

.feature-list span:nth-child(4),
.service-card:nth-child(4),
.hero-stats span:nth-child(4) {
  animation-delay: -3.6s;
}

.feature-list span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 30%, rgba(18, 184, 212, 0.42) 40%, rgba(191, 139, 46, 0.36) 50%, transparent 64%);
  transform: translateX(-120%);
  animation: techSweep 5.2s ease-in-out infinite;
  pointer-events: none;
}

.feature-list span::before {
  content: "";
  position: absolute;
  inset: auto 18px 16px 18px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.18;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.35s var(--ease), opacity 0.35s ease;
}

.feature-list span:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--cyan), var(--gold));
  box-shadow: 0 18px 36px rgba(18, 184, 212, 0.28);
  transform: translateY(-4px);
}

.feature-list span:hover::before {
  opacity: 0.6;
  transform: scaleX(1);
}

.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.privacy-panel {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.privacy-panel h3 {
  color: var(--white);
  font-size: 30px;
}

.condition-box {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.condition-box h3,
.condition-box a,
.condition-box span {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 20px 24px;
  background: var(--white);
}

.condition-box a::before,
.condition-box span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(var(--teal), var(--gold));
  transform: scaleY(0.28);
  transform-origin: top;
  transition: transform 0.35s var(--ease);
}

.condition-box a:hover::before,
.condition-box span:hover::before {
  transform: scaleY(1);
}

.condition-box span {
  color: var(--text);
  font-weight: 800;
}

.condition-box a {
  color: var(--teal-dark);
  font-weight: 900;
  transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s var(--ease);
}

.condition-box a:hover {
  color: var(--coral);
  background: #f8fbfa;
  padding-left: 30px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 96px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 23, 26, 0.95), rgba(12, 23, 26, 0.84)),
    url("assets/card-sexologist.png") center / cover no-repeat;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.1) 46%, transparent 58%);
  animation: sectionImageSheen 8s ease-in-out infinite;
  pointer-events: none;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  padding: 28px;
  color: var(--text);
}

.contact-card p {
  color: var(--text);
}

.appointment-card {
  align-self: stretch;
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.appointment-form label {
  display: grid;
  gap: 7px;
}

.appointment-form span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.appointment-form textarea {
  resize: vertical;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  outline: 3px solid rgba(13, 129, 125, 0.18);
  border-color: var(--teal);
}

.form-wide,
.appointment-form button,
.appointment-form .form-note,
.appointment-form .map-link {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  font-size: 14px;
  text-align: center;
}

.form-note a {
  color: var(--teal-dark);
  font-weight: 900;
}

.contact-card .map-link {
  color: var(--ink);
  border: 1px solid var(--line);
}

.phone {
  display: block;
  color: var(--teal-dark);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.1;
}

.site-footer {
  padding: 44px 0;
  background: #0c171a;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  grid-template-columns: 1.25fr 0.85fr 1.25fr 0.65fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.footer-grid strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.2;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
}

.footer-grid p {
  margin: 10px 0 0;
}

.footer-menu,
.footer-contact,
.footer-social {
  display: grid;
  align-content: start;
}

.footer-menu a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.footer-menu {
  gap: 9px;
}

.footer-contact a {
  margin-top: 12px;
  color: var(--white);
  font-size: 18px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icons a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--white);
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-icons .facebook {
  background: #1877f2;
}

.social-icons .instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 72%, #515bd4 100%);
}

.social-icons .twitter {
  background: #111111;
}

.social-icons a:hover {
  border-color: rgba(255, 255, 255, 0.52);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-grid .service-card.reveal {
  transition-delay: calc(var(--reveal-index, 0) * 80ms);
}

@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes markPulse {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(13, 129, 125, 0.28);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 14px 32px rgba(13, 129, 125, 0.42);
    transform: scale(1.04);
  }
}

@keyframes lineGrow {
  from {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  to {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

@keyframes headingPaint {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 12px 26px rgba(200, 95, 74, 0.18);
  }

  50% {
    box-shadow: 0 18px 38px rgba(200, 95, 74, 0.38), 0 0 0 7px rgba(200, 95, 74, 0.12);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageSettle {
  from {
    opacity: 0.78;
    transform: scale(1.04);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes galleryRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes galleryBackdropIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes galleryZoomIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes portraitCardIn {
  from {
    opacity: 0;
    transform: translate3d(28px, 28px, 0) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes portraitSettle {
  from {
    opacity: 0.72;
    filter: saturate(0.88) contrast(0.96);
    transform: scale(1.08);
  }

  to {
    opacity: 1;
    filter: saturate(1.03) contrast(1.02);
    transform: scale(1.01);
  }
}

@keyframes portraitFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes portraitSheen {
  0%,
  42% {
    transform: translateX(-120%);
  }

  66%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes portraitGlow {
  0%,
  100% {
    opacity: 0.58;
  }

  50% {
    opacity: 1;
  }
}

@keyframes techFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes techSweep {
  0%,
  35% {
    transform: translateX(-120%);
  }

  58%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes colorOrbit {
  0%,
  100% {
    opacity: 0.45;
    transform: translate3d(0, 0, 0) scale(0.82);
  }

  50% {
    opacity: 0.9;
    transform: translate3d(-18px, 18px, 0) scale(1.08);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes sheenMove {
  0%,
  100% {
    transform: translate3d(-10%, 0, 0);
    opacity: 0.45;
  }

  50% {
    transform: translate3d(10%, 0, 0);
    opacity: 0.8;
  }
}

@keyframes softFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-18px, 16px, 0) scale(1.08);
  }
}

@keyframes sectionImageSheen {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(-8%);
  }

  50% {
    opacity: 0.9;
    transform: translateX(8%);
  }
}

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

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    color: inherit;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 24px 22px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 32px rgba(20, 34, 39, 0.12);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown-toggle {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 10px 0;
    border-radius: 0;
    color: var(--ink);
  }

  .header-call {
    display: none;
  }

  .intro-grid,
  .two-column,
  .split-feature,
  .reverse,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-card-reception,
  .gallery-card-doctor,
  .gallery-card-profile,
  .gallery-card-conference,
  .gallery-card-speaker,
  .gallery-card-exterior {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-zoom {
    min-height: 220px;
  }

  .gallery-card img,
  .gallery-placeholder {
    height: auto;
  }

  .service-grid:has(> .service-card:nth-child(2):last-child),
  .service-grid:has(> .service-card:nth-child(3):last-child),
  .service-grid:has(> .service-card:nth-child(4):last-child),
  .service-grid:has(> .service-card:nth-child(5):last-child),
  .service-grid:has(> .service-card:nth-child(6):last-child) {
    grid-template-columns: 1fr;
  }

  .home-treatment-grid {
    grid-template-columns: 1fr;
  }

  .two-by-two-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid div:last-child {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-media {
    background:
      url("assets/dr-home.png") center top / auto 58% no-repeat,
      linear-gradient(180deg, rgba(10, 35, 38, 0.06) 0%, rgba(10, 35, 38, 0.54) 46%, rgba(10, 35, 38, 0.98) 100%),
      linear-gradient(135deg, #0a2326, #0d817d);
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 74% 16%, rgba(191, 139, 46, 0.12), transparent 30%),
      linear-gradient(180deg, rgba(10, 35, 38, 0.02) 0%, rgba(10, 35, 38, 0.58) 42%, rgba(10, 35, 38, 0.96) 100%),
      linear-gradient(90deg, rgba(10, 35, 38, 0.78), rgba(10, 35, 38, 0.36));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 112px 0 42px;
  }

  .hero-content::before {
    display: none;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 34px;
  }

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

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
  }

  .about-portrait {
    height: 340px;
  }

  .container {
    width: calc(100% - 36px);
  }

  .band {
    padding: 34px 0;
  }

  .page-section {
    padding: 54px 0;
  }

  .subpage-hero {
    padding: 122px 0 58px;
    background-position: 58% center;
  }

  .service-card,
  .linked-card a,
  .faq-list article,
  .contact-card {
    padding: 22px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

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