:root {
  --primary: #124890;
  --secondary: #A5CD39;
  --ink: #142033;
  --muted: #5d6a7c;
  --line: #dce5ec;
  --paper: #ffffff;
  --soft: #f5f9fb;
  --wash: #eef6e4;
  --aqua: #dff4f5;
  --sun: #f4b14a;
  --shadow: 0 22px 60px rgba(18, 72, 144, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(18, 72, 144, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 48%, #ffffff 100%);
  background-size: 46px 46px, auto;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 50%;
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px;
  border: 1px solid rgba(18, 72, 144, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(18, 72, 144, 0.12);
  transform: translateX(-50%);
  transition: box-shadow 180ms ease, top 180ms ease;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  top: 8px;
  box-shadow: 0 14px 36px rgba(18, 72, 144, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #26384f;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--primary);
  background: rgba(165, 205, 57, 0.18);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.header-action {
  padding: 0 14px;
  color: #fff;
  background: var(--primary);
}

.header-action svg,
.button svg,
.text-link svg,
.contact-methods svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--primary);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 96vh;
  overflow: hidden;
  align-items: end;
  padding: 148px max(24px, calc((100vw - var(--max)) / 2)) 54px;
  color: #fff;
  isolation: isolate;
}

#hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(18, 72, 144, 0.92) 0%, rgba(18, 72, 144, 0.74) 34%, rgba(18, 72, 144, 0.18) 72%),
    linear-gradient(0deg, rgba(8, 22, 42, 0.72), rgba(8, 22, 42, 0.06) 54%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 22%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  content: "";
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d9f298;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
}

h1 {
  margin-bottom: 22px;
  max-width: 920px;
  font-size: clamp(2.7rem, 7vw, 6.5rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  color: var(--primary);
}

h3 {
  margin-bottom: 10px;
  color: #172942;
  font-size: 1.18rem;
  line-height: 1.22;
}

.hero-copy {
  width: min(680px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

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

.button {
  padding: 0 18px;
  border: 1px solid transparent;
}

.button.primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 16px 28px rgba(18, 72, 144, 0.24);
}

.button.light {
  color: var(--primary);
  background: #fff;
}

.button.outline {
  color: var(--primary);
  border-color: rgba(18, 72, 144, 0.22);
  background: #fff;
}

.button:hover,
.header-action:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.hero-status {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 54px;
  display: grid;
  width: min(315px, calc(100% - 48px));
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
}

.hero-status strong {
  font-size: 1.12rem;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 8px rgba(165, 205, 57, 0.25);
}

.quick-lane {
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -30px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-lane div {
  min-height: 122px;
  padding: 22px;
  background: #fff;
}

.quick-lane strong {
  display: block;
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
}

.quick-lane span,
p,
dd,
small {
  color: var(--muted);
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.care-desk-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.care-intro {
  position: sticky;
  top: 118px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
}

.care-route {
  position: relative;
  display: grid;
  gap: 18px;
}

.care-route::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 24px;
  width: 2px;
  background: linear-gradient(var(--secondary), var(--primary));
  content: "";
}

.care-route article {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  min-height: 130px;
  padding: 24px 0;
}

.care-route article span {
  position: relative;
  z-index: 2;
  display: grid;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: var(--primary);
  background: var(--secondary);
  font-weight: 900;
}

.care-route article h3,
.care-route article p {
  grid-column: 2;
}

.care-route article h3 {
  grid-row: 1;
  align-self: end;
  margin-bottom: 4px;
}

.care-route article p {
  grid-row: 2;
}

.service-path {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.service-path a {
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fbfd);
}

.service-path a:last-child {
  border-right: 0;
}

.service-path a:hover {
  background: linear-gradient(180deg, rgba(165, 205, 57, 0.14), #fff);
}

.service-path span,
.service-ledger span {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(165, 205, 57, 0.2);
  font-size: 0.75rem;
  font-weight: 800;
}

.service-path strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.12;
}

.doctor-note {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 52px;
  align-items: center;
}

.doctor-photo {
  margin: 0;
}

.doctor-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.doctor-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.doctor-points span,
.nearby-grid span {
  padding: 10px 12px;
  border: 1px solid rgba(18, 72, 144, 0.14);
  border-radius: var(--radius);
  color: var(--primary);
  background: #fff;
  font-weight: 750;
}

.gallery-band {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, #f8fbfd, #fff);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.05fr 1.45fr 0.85fr;
  grid-auto-rows: 210px;
  gap: 12px;
}

.gallery-mosaic img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.gallery-mosaic img:nth-child(2) {
  grid-row: span 2;
}

.gallery-mosaic img:nth-child(4) {
  grid-column: span 2;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.review-stage {
  position: relative;
  min-height: 340px;
  padding: 36px;
  border-left: 8px solid var(--secondary);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.review-card {
  display: none;
}

.review-card.is-active {
  display: block;
}

.review-card p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  line-height: 1.18;
}

.review-card span {
  color: var(--primary);
  font-weight: 850;
}

.review-controls {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.review-controls button,
.filter-controls button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(18, 72, 144, 0.16);
  border-radius: var(--radius);
  color: var(--primary);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.review-controls button:hover,
.filter-controls button:hover,
.filter-controls button.is-active {
  color: #fff;
  background: var(--primary);
}

.visit-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: stretch;
}

.visit-copy,
.contact-methods,
.whatsapp-composer,
.location-facts,
.nearby-care {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.map-wrap {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.site-footer {
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  grid-template-columns: 1fr auto;
  gap: 28px;
  margin: 0 auto 24px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.site-footer img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer p {
  max-width: 420px;
  margin-bottom: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer a {
  color: var(--primary);
  font-weight: 750;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.page-hero {
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
  margin: 0 auto;
  padding: 150px 0 70px;
}

.page-hero h1 {
  color: var(--primary);
  font-size: clamp(2.5rem, 5.5vw, 5.8rem);
}

.page-hero p {
  max-width: 680px;
  font-size: 1.12rem;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-hero img,
.location-hero img {
  aspect-ratio: 1 / 1;
}

.filter-section {
  padding-top: 40px;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.service-ledger article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-ledger article.is-hidden {
  display: none;
}

.service-ledger a {
  color: var(--primary);
  font-weight: 850;
}

.media-lab {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  background: var(--aqua);
}

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

.video-strip video {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background: #0d1c2f;
  object-fit: cover;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
  border: 1px solid rgba(18, 72, 144, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--wash), #fff);
}

.contact-grid,
.location-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 14px;
}

.contact-methods a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-methods svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact-methods strong {
  display: block;
  color: var(--primary);
}

.whatsapp-composer {
  display: grid;
  gap: 16px;
}

.whatsapp-composer label {
  display: grid;
  gap: 7px;
  color: var(--primary);
  font-weight: 800;
}

.whatsapp-composer select,
.whatsapp-composer textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  background: #fff;
}

.whatsapp-composer textarea {
  resize: vertical;
}

.map-wrap.tall {
  min-height: 560px;
}

.location-facts dl {
  display: grid;
  gap: 18px;
  margin: 26px 0 0;
}

.location-facts dt {
  color: var(--primary);
  font-weight: 850;
}

.location-facts dd {
  margin: 0;
}

.nearby-care {
  margin-bottom: 92px;
}

.nearby-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

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

  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 82px 16px auto;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    justify-content: stretch;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 126px;
  }

  .hero-status {
    position: static;
    margin-top: 34px;
  }

  .quick-lane,
  .service-path,
  .service-ledger,
  .video-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .care-desk-grid,
  .doctor-note,
  .reviews,
  .visit-panel,
  .page-hero,
  .contact-grid,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .care-intro {
    position: static;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .service-path a {
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand span {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: auto;
    padding: 122px 16px 42px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .button {
    width: 100%;
    white-space: normal;
  }

  .hero-actions {
    width: 100%;
  }

  .quick-lane,
  .service-path,
  .service-ledger,
  .video-strip {
    grid-template-columns: 1fr;
  }

  .quick-lane div {
    min-height: auto;
  }

  .section {
    width: calc(100% - 28px);
    padding: 62px 0;
  }

  .care-route::before {
    left: 20px;
  }

  .care-route article {
    grid-template-columns: 54px 1fr;
  }

  .care-route article h3 {
    margin-top: 0;
  }

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

  .gallery-mosaic img:nth-child(2),
  .gallery-mosaic img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .review-stage,
  .visit-copy,
  .contact-methods,
  .whatsapp-composer,
  .location-facts,
  .nearby-care {
    padding: 24px;
  }

  .page-hero {
    width: calc(100% - 28px);
    padding-top: 132px;
    gap: 24px;
  }

  .service-cta,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

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