:root {
  --ink: #12313e;
  --ink-soft: #294b58;
  --muted: #607680;

  --deep: #0d4f6c;
  --deep-2: #08384e;
  --blue: #2f7d9a;
  --blue-mid: #74aabe;
  --blue-soft: #dceef5;
  --blue-pale: #edf6fa;

  --paper: #fbfdfe;
  --mist: #f3f8fa;
  --white: #ffffff;

  --warm: #d7b681;
  --warm-soft: #f0e6d6;

  --line: rgba(13, 79, 108, .13);
  --line-strong: rgba(13, 79, 108, .22);

  --shadow-sm: 0 14px 38px rgba(17, 61, 78, .08);
  --shadow: 0 28px 72px rgba(17, 61, 78, .13);

  --radius-sm: 18px;
  --radius: 26px;
  --radius-lg: 36px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(47, 125, 154, .45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--deep-2);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(13, 79, 108, .08);
  background: rgba(251, 253, 254, .9);
  backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 154px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.nav a {
  position: relative;
  padding-block: 8px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  transition: right .2s ease;
}

.nav a:hover::after {
  right: 0;
}

.header-cta,
.btn {
  min-height: 48px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
  text-align: center;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--deep));
  box-shadow: 0 12px 28px rgba(13, 79, 108, .22);
}

.btn-secondary {
  color: var(--deep);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .68);
}

.btn-light {
  color: var(--deep-2);
  background: #fff;
  box-shadow: 0 14px 32px rgba(1, 28, 40, .15);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 76px;
  background:
    radial-gradient(circle at 90% 8%, rgba(116, 170, 190, .20), transparent 25rem),
    radial-gradient(circle at 2% 94%, rgba(215, 182, 129, .13), transparent 24rem),
    linear-gradient(180deg, #fbfdfe 0%, #f5fafc 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 79, 108, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 79, 108, .03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-a {
  width: 300px;
  height: 300px;
  top: 42px;
  right: -120px;
  background: rgba(116, 170, 190, .13);
}

.hero-orb-b {
  width: 150px;
  height: 150px;
  left: -55px;
  bottom: 46px;
  background: rgba(215, 182, 129, .15);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 11px;
  font-weight: 900;
}

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

h1,
h2 {
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  color: var(--deep-2);
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(46px, 5.9vw, 78px);
  line-height: .98;
  letter-spacing: -.052em;
}

.hero-name {
  margin-bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-name strong {
  color: var(--deep);
  font-size: 18px;
}

.hero-name span {
  padding: 6px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  margin: 30px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-points span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, .67);
  font-size: 12px;
  font-weight: 760;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.portrait-card {
  position: relative;
  width: min(100%, 320px);
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(13, 79, 108, .12);
  border-radius: 32px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
}

.portrait-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 25px -11px -11px 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--blue), var(--deep-2));
}

.portrait-frame {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 23px;
  background: var(--blue-soft);
}

.portrait-frame picture {
  width: 100%;
  height: 100%;
  display: block;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 43%;
}

.portrait-caption {
  padding: 16px 11px 8px;
}

.portrait-kicker {
  display: block;
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.portrait-caption strong {
  display: block;
  margin-bottom: 3px;
  color: var(--deep-2);
  font-size: 14px;
}

.portrait-caption > span:last-child {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.trust-section {
  position: relative;
  z-index: 3;
  padding: 0 0 28px;
  background: var(--paper);
}

.trust-grid {
  transform: translateY(-24px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-sm);
}

.number {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
}

.trust-grid h2 {
  margin: 24px 0 8px;
  font-family: inherit;
  color: var(--deep-2);
  font-size: 19px;
  letter-spacing: -.025em;
}

.trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 94px 0;
}

.split {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 80px;
  align-items: start;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.6vw, 57px);
  line-height: 1.02;
  letter-spacing: -.042em;
}

.prose {
  color: var(--ink-soft);
  font-size: 17px;
}

.prose p {
  margin-bottom: 22px;
}

.about-signature {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.about-signature strong,
.about-signature span {
  display: block;
}

.about-signature strong {
  color: var(--deep);
}

.about-signature span {
  color: var(--muted);
  font-size: 13px;
}

.expertise {
  position: relative;
  background:
    radial-gradient(circle at 10% 15%, rgba(116, 170, 190, .16), transparent 27rem),
    linear-gradient(180deg, #eef6f9 0%, #f7fbfc 100%);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 38px;
}

.section-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.cards article {
  min-height: 154px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 30px rgba(13, 79, 108, .055);
}

.cards span {
  color: var(--blue-mid);
  font-size: 11px;
  font-weight: 900;
}

.cards h3 {
  margin: 22px 0 0;
  color: var(--deep-2);
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.service {
  background: var(--paper);
}

.service-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 96% 0%, rgba(116, 170, 190, .23), transparent 25rem),
    linear-gradient(135deg, #f7fbfd, #edf6fa);
  box-shadow: var(--shadow-sm);
}

.service-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: end;
}

.service-heading > p {
  color: var(--muted);
}

.service-grid {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.service-grid article {
  padding: 27px;
  border: 1px solid rgba(13, 79, 108, .09);
  border-radius: 23px;
  background: rgba(255, 255, 255, .92);
}

.service-label {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-grid h3 {
  margin: 12px 0 7px;
  color: var(--deep-2);
  font-size: 22px;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.clinic {
  background: #f8fbfc;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  border: 1px solid rgba(13, 79, 108, .08);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(17, 61, 78, .09);
}

.gallery img:nth-child(1),
.gallery img:nth-child(2) {
  grid-column: span 6;
  height: 315px;
}

.gallery img:nth-child(n+3) {
  grid-column: span 3;
}

.location {
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: center;
}

.address {
  color: var(--ink-soft);
  font-size: 17px;
}

.contact-list {
  margin: 26px 0 30px;
  display: grid;
  gap: 10px;
}

.contact-list a {
  padding: 14px 16px;
  display: block;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--mist);
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
}

.contact-list strong {
  color: var(--deep);
  font-size: 14px;
}

.map-card {
  overflow: hidden;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 29px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.map-card iframe {
  display: block;
  border-radius: 21px;
}

.faq {
  background: linear-gradient(180deg, #f5fafc, #edf6fa);
}

.faq-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 70px;
  align-items: start;
}

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

.faq details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
}

.faq summary {
  padding: 20px 22px;
  color: var(--deep-2);
  font-weight: 800;
  cursor: pointer;
  list-style-position: inside;
}

.faq details p {
  margin: 0;
  padding: 0 22px 21px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(116, 170, 190, .33), transparent 26rem),
    radial-gradient(circle at 10% 100%, rgba(215, 182, 129, .14), transparent 25rem),
    linear-gradient(135deg, #0d4f6c, #072f42);
}

.final-cta-inner {
  max-width: 760px;
  text-align: center;
}

.eyebrow-light {
  color: rgba(255, 255, 255, .63);
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
}

.footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, .68);
  background: #052431;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  margin-bottom: 3px;
  color: #fff;
}

.footer-brand span {
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 19px;
}

.footer a {
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .header-inner {
    padding: 13px 0;
    flex-wrap: wrap;
  }

  .brand img {
    width: 136px;
  }

  .nav {
    order: 3;
    width: 100%;
    padding-bottom: 3px;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 12px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .split,
  .location-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-name,
  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .portrait-card {
    width: min(100%, 310px);
  }

  .trust-grid {
    transform: none;
    grid-template-columns: 1fr;
  }

  .trust-section {
    padding-top: 26px;
  }

  .trust-grid article {
    min-height: 0;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-heading {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .gallery img:nth-child(1),
  .gallery img:nth-child(2) {
    grid-column: span 6;
    height: 260px;
  }

  .gallery img:nth-child(n+3) {
    grid-column: span 6;
    height: 230px;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    justify-content: center;
  }

  .brand {
    margin-right: auto;
  }

  .header-cta {
    display: none;
  }

  .nav {
    gap: 18px;
    font-size: 12px;
  }

  .hero {
    padding: 48px 0 58px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .hero-text {
    font-size: 17px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .portrait-card {
    width: min(100%, 290px);
    border-radius: 27px;
  }

  .portrait-card::before {
    inset: 23px -8px -8px 25px;
  }

  .section {
    padding: 70px 0;
  }

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

  .cards article {
    min-height: 128px;
  }

  .service-panel {
    padding: 27px 20px;
    border-radius: 27px;
  }

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

  .gallery img,
  .gallery img:nth-child(n) {
    grid-column: auto;
    height: 255px;
  }

  .gallery img:first-child {
    height: 220px;
  }

  .map-card iframe {
    height: 350px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
