:root {
  --navy: #063483;
  --deep-navy: #06265f;
  --blue: #80bcca;
  --blue-soft: #eaf4f7;
  --gray: #5d5858;
  --text: #1f2633;
  --muted: #6f7580;
  --line: #dbe5ea;
  --white: #ffffff;
  --off: #f7fafb;
  --shadow: 0 24px 70px rgba(6, 52, 131, .12);
  --radius: 28px;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 12px; background: var(--navy); color: white; padding: 10px 14px; border-radius: 10px; z-index: 100; }
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219,229,234,.8);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 86px; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); min-width: fit-content; }
.brand-mark { display: grid; place-items: center; width: 56px; height: 56px; flex: 0 0 56px; }
.brand-mark img { width: 56px; height: 56px; object-fit: contain; display: block; }
.brand strong { display: block; font-family: var(--serif); text-transform: uppercase; letter-spacing: .08em; font-size: 1.22rem; line-height: 1.05; }
.brand small { display: block; text-transform: uppercase; letter-spacing: .32em; font-size: .66rem; color: #58729a; margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 34px; font-weight: 600; color: #273044; font-size: 1.02rem; }
.nav a { position: relative; padding: 30px 0 26px; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 20px; height: 3px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: .2s ease; border-radius: 999px; }
.nav a:hover::after, .nav a:first-child::after { transform: scaleX(1); }

.hero { position: relative; overflow: hidden; background: linear-gradient(115deg, #fff 0%, #fff 58%, #eef7fa 58%, #eef7fa 100%); }
.hero::before { content: ""; position: absolute; inset: auto -8% -16% 55%; width: 660px; height: 660px; border-radius: 50%; border: 1px solid rgba(128,188,202,.32); box-shadow: inset 0 0 0 22px rgba(128,188,202,.06); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 680px; align-items: center; gap: 44px; padding: 64px 0 58px; position: relative; }
.eyebrow, .section-label { margin: 0 0 14px; color: var(--navy); font-weight: 700; letter-spacing: .02em; }
h1, h2, h3 { margin: 0; color: var(--deep-navy); }
h1 { font-family: var(--serif); font-size: clamp(2.6rem, 5.4vw, 5.2rem); line-height: 1.05; letter-spacing: -.055em; max-width: 760px; }
.lead { font-size: 1.22rem; color: #3f4650; max-width: 650px; margin: 22px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 28px; border-radius: 12px; font-weight: 700; font-size: 1.03rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: white; box-shadow: 0 14px 30px rgba(6,52,131,.22); }
.button-primary:hover { background: #052c70; }
.button-secondary { border: 1.5px solid var(--navy); color: var(--navy); background: rgba(255,255,255,.8); }
.trust-line { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; color: #48505a; }
.trust-line span { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--blue-soft); color: var(--navy); font-weight: 800; }
.trust-line p { margin: 0; font-size: 1.04rem; }
.hero-media { align-self: stretch; display: flex; align-items: flex-end; justify-content: center; }
.portrait-card { position: relative; width: min(470px, 100%); height: 590px; border-radius: 260px 260px 32px 32px; overflow: hidden; background: linear-gradient(180deg, #f2f5f5, #dfe9ec); box-shadow: var(--shadow); }
.portrait-card img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; transform: scale(1.01); }
.name-tag { position: absolute; right: 22px; bottom: 28px; background: rgba(255,255,255,.88); color: var(--navy); border-left: 4px solid var(--blue); padding: 12px 20px; font-weight: 700; border-radius: 4px; box-shadow: 0 12px 30px rgba(6,52,131,.12); }

.quick-panel { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.panel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.panel-item { padding: 42px 34px; min-height: 280px; border-right: 1px solid var(--line); }
.panel-item:last-child { border-right: 0; }
.icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-soft); color: var(--navy); font-weight: 800; letter-spacing: .08em; margin-bottom: 22px; }
.panel-item h2 { font-family: var(--serif); font-size: 1.45rem; margin-bottom: 18px; }
ul { list-style: none; padding: 0; margin: 0; }
li { position: relative; padding-left: 25px; margin: 8px 0; color: #39414c; }
li::before { content: "✓"; position: absolute; left: 0; color: #2d90b8; font-weight: 800; }

.section { padding: 92px 0; }
.two-col { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.section h2 { font-family: var(--serif); font-size: clamp(2rem, 3.3vw, 3.5rem); line-height: 1.12; letter-spacing: -.035em; }
.text-block { font-size: 1.18rem; color: #3f4650; }
.text-block p:first-child { margin-top: 0; }
.treatment { background: var(--off); }
.section-heading { max-width: 820px; }
.centered { text-align: center; margin: 0 auto 42px; }
.section-heading p:not(.section-label) { color: #4d5560; font-size: 1.18rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.card { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 30px; box-shadow: 0 16px 40px rgba(6,52,131,.07); }
.card h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 12px; }
.card p { margin: 0; color: #4a525d; }
.specialties-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.specialties-copy p:not(.section-label) { font-size: 1.15rem; color: #4a525d; }
.specialty-list { display: grid; gap: 14px; }
.specialty-list div { display: grid; grid-template-columns: 96px 1fr; gap: 20px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px 22px; box-shadow: 0 12px 34px rgba(6,52,131,.06); }
.specialty-list strong { color: var(--navy); font-size: 1.1rem; }
.specialty-list span { color: #46505b; }
.quote-section { background: linear-gradient(180deg, var(--off), #fff); padding: 44px 0; }
.quote-card { display: flex; align-items: center; justify-content: center; gap: 20px; text-align: center; color: var(--deep-navy); }
.quote-card span { font-family: var(--serif); font-size: 5rem; color: rgba(128,188,202,.72); line-height: .6; }
.quote-card p { margin: 0; font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 700; }
.contact-section { padding: 72px 0 92px; background: white; }
.contact-card { display: grid; grid-template-columns: 1fr auto; gap: 44px; align-items: center; background: var(--deep-navy); color: white; border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow); }
.contact-card h2, .contact-card .section-label { color: white; }
.contact-card p { color: rgba(255,255,255,.78); max-width: 620px; }
.contact-actions { display: flex; flex-direction: column; gap: 14px; min-width: 290px; }
.contact-card .button-secondary { color: white; border-color: rgba(255,255,255,.55); background: transparent; }
.contact-card .button-primary { background: white; color: var(--navy); box-shadow: none; }
.footer { background: #041b46; color: rgba(255,255,255,.78); padding: 28px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer p { margin: 0; }
.footer a { color: white; }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero { background: linear-gradient(180deg, #fff 0%, #fff 55%, #eef7fa 55%, #eef7fa 100%); }
  .hero-grid, .two-col, .specialties-grid, .contact-card { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding-top: 48px; }
  .hero-media { align-items: center; }
  .portrait-card { height: 520px; width: min(420px, 100%); }
  .panel-grid, .cards { grid-template-columns: 1fr; }
  .panel-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .panel-item:last-child { border-bottom: 0; }
  .contact-actions { min-width: 0; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 74px; }
  .brand strong { font-size: 1rem; }
  .brand small { letter-spacing: .18em; }
  .brand-mark { width: 44px; height: 44px; flex-basis: 44px; }
  .brand-mark img { width: 44px; height: 44px; }
  h1 { font-size: clamp(2.28rem, 12vw, 3.5rem); }
  .lead { font-size: 1.08rem; }
  .hero-actions, .button { width: 100%; }
  .portrait-card { height: 470px; border-radius: 220px 220px 24px 24px; }
  .panel-item, .card, .contact-card { padding: 26px; }
  .section { padding: 66px 0; }
  .specialty-list div { grid-template-columns: 1fr; gap: 4px; }
  .quote-card { align-items: flex-start; }
  .footer-inner { display: block; }
  .footer p + p { margin-top: 10px; }
}
