:root {
  --ink: #10242b;
  --muted: #63777c;
  --soft: #f4f7f5;
  --paper: #ffffff;
  --line: rgba(16, 36, 43, .12);
  --brand: #23656c;
  --brand-dark: #153f47;
  --brand-soft: #dcebea;
  --cream: #fbf7f0;
  --shadow: 0 24px 80px rgba(16, 36, 43, .10);
  --shadow-small: 0 14px 38px rgba(16, 36, 43, .08);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(35, 101, 108, .14), transparent 34rem),
    linear-gradient(180deg, #f9fbfa 0%, var(--cream) 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 251, 250, .84);
  border-bottom: 1px solid rgba(16, 36, 43, .08);
  backdrop-filter: blur(18px);
}

.header-grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  width: fit-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--brand-dark);
  background: linear-gradient(135deg, #ffffff, var(--brand-soft));
  border: 1px solid rgba(16, 36, 43, .10);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: .06em;
  box-shadow: 0 10px 24px rgba(35, 101, 108, .10);
}

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

.brand strong {
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -.01em;
}

.brand small {
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border: 1px solid rgba(16, 36, 43, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 30px rgba(16, 36, 43, .04);
}

.main-nav a {
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
  padding: 9px 14px;
  border-radius: 999px;
}

.main-nav a:hover {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(21, 63, 71, .18);
}

.header-cta:hover,
.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(21, 63, 71, .22);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) 0 clamp(54px, 8vw, 98px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 36, 43, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 36, 43, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(1px);
}

.hero-orb-one {
  width: 480px;
  height: 480px;
  top: 30px;
  right: -190px;
  background: radial-gradient(circle, rgba(35, 101, 108, .20), rgba(35, 101, 108, 0) 67%);
}

.hero-orb-two {
  width: 380px;
  height: 380px;
  left: -160px;
  bottom: 10px;
  background: radial-gradient(circle, rgba(220, 235, 234, .90), rgba(220, 235, 234, 0) 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(470px, .9fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
}

.kicker,
.section-kicker,
.card-label {
  margin: 0 0 14px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
}

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

h1 {
  max-width: 640px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.6vw, 78px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 500;
  color: var(--ink);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.42;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: .18s ease;
}

.button-primary {
  color: #fff;
  background: var(--brand-dark);
  box-shadow: 0 16px 32px rgba(21, 63, 71, .18);
}

.button-secondary {
  color: var(--brand-dark);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(16, 36, 43, .10);
}

.button-secondary:hover {
  background: #fff;
  transform: translateY(-1px);
}

.hero-visual {
  position: relative;
  min-height: auto;
  isolation: isolate;
  display: grid;
  gap: 18px;
}

.portrait-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 545px;
  margin: 0;
  border-radius: 42px;
  background: #e7eceb;
  border: 1px solid rgba(16, 36, 43, .10);
  box-shadow: var(--shadow);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 10% 10%, rgba(255,255,255,.16), transparent 32rem);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 545px;
  display: block;
  object-fit: cover;
  object-position: 38% 50%;
}

.portrait-caption {
  display: none;
  position: absolute;
  z-index: 1;
  left: 28px;
  bottom: 26px;
  color: #fff;
  text-shadow: 0 1px 18px rgba(0,0,0,.30);
}

.portrait-caption strong,
.portrait-caption span {
  display: block;
}

.portrait-caption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.035em;
}

.portrait-caption span {
  margin-top: 5px;
  font-size: 15px;
  opacity: .88;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: clamp(30px, 4vw, 46px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 56%, rgba(220, 235, 234, .92) 100%);
  border: 1px solid rgba(16, 36, 43, .10);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -68px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 42px solid rgba(35, 101, 108, .10);
}

.hero-card::after {
  content: "";
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 58px;
  height: 74px;
  border: 2px solid rgba(35, 101, 108, .22);
  border-top: 0;
  border-radius: 0 0 140px 140px;
}

.card-topline {
  width: 72px;
  height: 5px;
  margin-bottom: 42px;
  border-radius: 999px;
  background: var(--brand);
}

.hero-card h2 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.04em;
}

.card-subtitle {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
}

.contact-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-list div {
  padding: 18px 18px 17px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(16, 36, 43, .08);
}

.contact-list dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.contact-list a {
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--brand);
}

.contact-card {
  position: relative;
  z-index: 2;
  left: auto;
  bottom: auto;
  width: 100%;
  min-height: auto;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
}

.contact-card::before,
.contact-card::after {
  display: none;
}

.contact-card .card-topline {
  width: 54px;
  height: 4px;
  margin-bottom: 22px;
}

.contact-card h2 {
  font-size: clamp(26px, 2.6vw, 34px);
}

.contact-card .card-subtitle {
  margin-bottom: 18px;
  font-size: 15px;
}

.contact-card .contact-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-card .contact-list div {
  padding: 13px 14px 12px;
  border-radius: 15px;
}

.intro-section,
.treatments-section,
.member-section {
  padding: clamp(42px, 7vw, 88px) 0;
}

.intro-panel {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid rgba(16, 36, 43, .08);
  box-shadow: var(--shadow-small);
}

.intro-panel h2,
.section-heading h2,
.member-panel h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 500;
}

.intro-panel > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
}

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

.treatment-card {
  min-height: 244px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(16, 36, 43, .08);
  box-shadow: 0 14px 34px rgba(16, 36, 43, .045);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.treatment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 101, 108, .18);
  box-shadow: 0 18px 48px rgba(16, 36, 43, .08);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 15px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.treatment-card h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -.025em;
}

.treatment-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.member-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-lg);
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 0 24px 80px rgba(21, 63, 71, .18);
}

.member-panel .section-kicker {
  color: rgba(255,255,255,.68);
}

.member-panel img {
  max-width: min(300px, 45vw);
  height: auto;
  padding: 14px 18px;
  border-radius: 18px;
  background: #fff;
}

.site-footer {
  padding: 34px 0 46px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(16, 36, 43, .10);
  padding-top: 24px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--brand);
}

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

  .main-nav {
    display: none;
  }

  .hero-grid,
  .intro-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .portrait-card,
  .portrait-card img {
    min-height: 460px;
  }

  .hero-card {
    min-height: auto;
  }

  .hero-card::after {
    display: none;
  }

 .contact-card {
    width: 100%;
    margin: 0;
  }

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-grid {
    min-height: 72px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 13px;
  }

  .hero {
    padding-top: 46px;
  }

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

  .portrait-card,
  .portrait-card img {
    min-height: 380px;
  }

  .portrait-caption strong {
    font-size: 25px;
  }

 .contact-card {
    width: 100%;
    margin-top: 0;
    padding: 22px;
    border-radius: 24px;
  }

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

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

  .treatment-card {
    min-height: auto;
  }

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

  .member-panel img {
    max-width: 100%;
  }
}
