:root {
  --ink: #183238;
  --ink-soft: #354e52;
  --paper: #fbfcfa;
  --pearl: #f5f8f6;
  --mist: #e8f0ed;
  --foam: #dbe8e4;
  --sea-glass: #9fb8b2;
  --tide: #6f9293;
  --storm: #34565d;
  --shell-sand: #d8cabb;
  --line: #bdcfca;
  --shell: min(1160px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-180%);
  background: var(--paper);
  border: 2px solid var(--storm);
  color: var(--ink);
  font-weight: 700;
}

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

:focus-visible {
  outline: 3px solid var(--tide);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(251, 252, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--storm);
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: -0.04em;
}

.brand-mark::after {
  position: absolute;
  right: 8px;
  bottom: 7px;
  left: 8px;
  height: 3px;
  border-top: 1px solid var(--sea-glass);
  border-radius: 50%;
  content: "";
  transform: rotate(-4deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
}

.brand-text small {
  margin-top: 4px;
  color: var(--storm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

nav a {
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.nav-contact {
  padding: 9px 16px;
  border: 1px solid var(--storm);
  border-radius: 999px;
  background: var(--foam);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pearl) 0%, var(--mist) 58%, #dfeae6 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.4fr) minmax(230px, 0.6fr);
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
  padding-block: 72px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--storm);
}

.eyebrow span {
  display: inline-block;
  margin-right: 8px;
  font-family: var(--serif);
  color: var(--tide);
  font-size: 1.18rem;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 710px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.7vw, 4.5rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  letter-spacing: -0.025em;
}

.hero-lede {
  max-width: 630px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease;
}

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

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  background: var(--storm);
}

.button-light {
  background: rgba(251, 252, 250, 0.52);
  color: var(--ink);
}

.button-light:hover {
  background: var(--paper);
}

.availability-note {
  margin: 18px 0 0;
  color: var(--storm);
  font-size: 0.88rem;
}

.portrait-wrap {
  position: relative;
  width: 100%;
  max-width: 250px;
  justify-self: end;
}

.portrait-wrap::before {
  position: absolute;
  z-index: -1;
  width: 96%;
  aspect-ratio: 1;
  right: -10%;
  bottom: -3%;
  border: 1px solid var(--tide);
  border-radius: 50%;
  content: "";
}

.portrait-frame {
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--storm);
  border-radius: 50%;
  padding: 8px;
  background: var(--paper);
  box-shadow: 0 18px 38px rgba(24, 50, 56, 0.18);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  filter: saturate(0.78) contrast(1.01);
}

.portrait-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 17px 2px 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.portrait-caption span:last-child {
  color: var(--storm);
  font-size: 0.72rem;
}

.tide-lines {
  position: absolute;
  pointer-events: none;
  opacity: 0.3;
}

.tide-lines-one {
  width: 640px;
  height: 640px;
  top: -320px;
  right: 18%;
  border: 1px solid var(--tide);
  border-radius: 50%;
  box-shadow: 0 0 0 34px transparent, 0 0 0 35px var(--sea-glass), 0 0 0 70px transparent, 0 0 0 71px var(--sea-glass), 0 0 0 106px transparent, 0 0 0 107px var(--sea-glass);
}

.quick-facts {
  background: var(--foam);
  border-bottom: 1px solid var(--line);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.facts-grid > div {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 40px;
  border-left: 1px solid var(--line);
}

.facts-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.facts-grid strong {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
}

.facts-grid span {
  color: var(--storm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(82px, 10vw, 140px);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(54px, 10vw, 140px);
}

.intro-grid h2 {
  max-width: 520px;
}

.prose-large p {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.52rem);
  line-height: 1.65;
}

.prose-large p:last-child {
  margin-bottom: 0;
}

.ink-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--ink) 0%, #21434a 68%, var(--storm) 100%);
  color: var(--paper);
}

.tide-lines-two {
  width: 720px;
  height: 720px;
  right: -420px;
  bottom: -420px;
  border: 1px solid var(--sea-glass);
  border-radius: 50%;
  box-shadow: 0 0 0 42px transparent, 0 0 0 43px var(--sea-glass), 0 0 0 84px transparent, 0 0 0 85px var(--sea-glass), 0 0 0 126px transparent, 0 0 0 127px var(--sea-glass);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.section-heading > p:last-child {
  max-width: 640px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.light-heading > p:last-child {
  color: #d7e6e2;
}

.light-heading .eyebrow,
.contact-inner .eyebrow {
  color: #d7e6e2;
}

.light-heading .eyebrow span,
.contact-inner .eyebrow span {
  color: var(--sea-glass);
}

.audience-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(190, 213, 207, 0.4);
  border-left: 1px solid rgba(190, 213, 207, 0.4);
}

.audience-card {
  min-height: 290px;
  padding: clamp(28px, 5vw, 52px);
  border-right: 1px solid rgba(190, 213, 207, 0.4);
  border-bottom: 1px solid rgba(190, 213, 207, 0.4);
}

.card-number {
  display: block;
  margin-bottom: 48px;
  color: var(--sea-glass);
  font-family: var(--serif);
  font-size: 0.85rem;
}

.audience-card p {
  max-width: 450px;
  margin: 0;
  color: #dce9e5;
}

.specialties-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(159, 184, 178, 0.22) 0 9px, transparent 10px),
    radial-gradient(circle at 5% 21%, rgba(159, 184, 178, 0.16) 0 5px, transparent 6px),
    linear-gradient(180deg, var(--paper) 0%, var(--pearl) 100%);
}

.sea-life-banner {
  min-height: clamp(250px, 34vw, 390px);
  margin-bottom: clamp(64px, 8vw, 100px);
  border: 1px solid var(--line);
  border-radius: 2px 72px 2px 72px;
  background-color: var(--mist);
  background-image:
    linear-gradient(90deg, rgba(24, 50, 56, 0.08), transparent 45%),
    url("/assets/muted-underwater-sea-life.webp");
  background-position: center;
  background-size: cover;
  box-shadow: 16px 16px 0 var(--foam);
}

.specialties-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 9vw, 120px);
  align-items: end;
  margin-bottom: 56px;
}

.specialties-intro h2 {
  margin-bottom: 0;
}

.specialties-intro > p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.8vw, 1.36rem);
  line-height: 1.65;
}

.specialty-list {
  border-top: 1px solid var(--ink);
}

.specialty-list details {
  border-bottom-color: var(--line);
}

.specialty-list summary {
  display: grid;
  min-height: 110px;
  align-content: center;
  gap: 6px;
  padding: 24px 64px 24px 0;
}

.specialty-list summary::after {
  top: 38px;
  right: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--tide);
  border-radius: 50%;
  background: var(--foam);
  line-height: 1;
}

.specialty-list summary span {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.specialty-list summary small {
  color: var(--storm);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 48px 28px 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--mist);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.specialty-note {
  max-width: 760px;
  margin: 0 48px 30px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--tide);
  background: var(--foam);
  color: var(--ink-soft);
}

.approach-section {
  background: var(--mist);
}

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

.approach-grid article {
  min-height: 330px;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--sea-glass);
}

.approach-grid article:nth-child(2) {
  border-top-color: var(--tide);
}

.approach-grid article:nth-child(3) {
  border-top-color: var(--shell-sand);
}

.approach-symbol {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 72px;
  place-items: center;
  border: 1px solid var(--tide);
  border-radius: 50%;
  background: var(--foam);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.8rem;
}

.approach-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.appointment-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--pearl) 100%);
  border-bottom: 1px solid var(--line);
}

.appointment-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(58px, 10vw, 140px);
}

.appointment-intro p:last-child {
  max-width: 420px;
  color: var(--ink-soft);
}

.appointment-list {
  border-top: 1px solid var(--ink);
}

.appointment-list article {
  padding-block: 34px 40px;
  border-bottom: 1px solid var(--line);
}

.appointment-list article:last-child {
  border-bottom-color: var(--ink);
}

.mode-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 11px;
  border: 1px solid var(--tide);
  border-radius: 999px;
  background: var(--foam);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.appointment-list p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
}

.insurance-section {
  background: var(--mist);
}

.insurance-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 9vw, 120px);
  padding: clamp(36px, 7vw, 76px);
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 14px 14px 0 var(--shell-sand);
}

.insurance-card h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.insurance-card > div:last-child {
  align-self: center;
}

.insurance-card p {
  margin-top: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  border-bottom: 1px solid var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 150ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(54px, 9vw, 120px);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 26px 48px 26px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 26px;
  right: 4px;
  content: "+";
  font-family: var(--sans);
  font-size: 1.2rem;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 650px;
  margin: -4px 48px 26px 0;
  color: var(--ink-soft);
}

details[open] summary {
  color: var(--storm);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 12vw, 160px);
  background: linear-gradient(145deg, #122b31 0%, var(--ink) 48%, #28535a 100%);
  color: var(--paper);
}

.tide-lines-three {
  width: 620px;
  height: 620px;
  top: -390px;
  left: -180px;
  border: 1px solid var(--sea-glass);
  border-radius: 50%;
  box-shadow: 0 0 0 35px transparent, 0 0 0 36px var(--sea-glass), 0 0 0 70px transparent, 0 0 0 71px var(--sea-glass);
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.contact-inner h2 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.contact-lede {
  max-width: 660px;
  margin: 0 auto;
  color: #dce9e5;
  font-size: 1.15rem;
}

.contact-options {
  display: grid;
  max-width: 760px;
  margin: 48px auto 0;
  grid-template-columns: 0.75fr 1.25fr;
  border-top: 1px solid rgba(190, 213, 207, 0.45);
  border-left: 1px solid rgba(190, 213, 207, 0.45);
}

.contact-options a {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid rgba(190, 213, 207, 0.45);
  border-bottom: 1px solid rgba(190, 213, 207, 0.45);
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}

.contact-options a:hover {
  background: var(--foam);
  color: var(--ink);
}

.contact-options span {
  margin-bottom: 7px;
  color: var(--sea-glass);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-options a:hover span {
  color: var(--storm);
}

.contact-options strong {
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 400;
}

.privacy-note {
  max-width: 620px;
  margin: 26px auto 0;
  color: #b7ccc6;
  font-size: 0.8rem;
}

.site-footer {
  padding-block: 52px 34px;
  background: #0d2429;
  color: var(--paper);
}

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

.footer-grid > div:first-child {
  display: flex;
  flex-direction: column;
}

.footer-grid strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
}

.footer-grid span {
  margin-top: 7px;
  color: #b7cbc6;
  font-size: 0.82rem;
}

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

.footer-links a {
  font-size: 0.86rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.footer-fine-print {
  display: grid;
  margin-top: 42px;
  padding-top: 24px;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 40px;
  border-top: 1px solid #365158;
  color: #a9bfba;
  font-size: 0.75rem;
}

.footer-fine-print p {
  margin: 0;
}

.footer-fine-print p:last-child {
  text-align: right;
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

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

  nav a:not(.nav-contact) {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
    padding-block: 70px 76px;
  }

  .hero-copy {
    max-width: 720px;
  }

  h1 {
    max-width: 660px;
  }

  .portrait-wrap {
    width: min(70vw, 250px);
    justify-self: center;
  }

  .facts-grid > div {
    padding-inline: 20px;
  }

  .intro-grid,
  .appointment-grid,
  .faq-grid,
  .specialties-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .approach-grid article {
    min-height: auto;
  }

  .approach-symbol {
    margin-bottom: 48px;
  }

  .insurance-card {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text small {
    display: none;
  }

  .nav-contact {
    padding: 8px 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .portrait-caption {
    flex-direction: column;
    gap: 3px;
  }

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

  .facts-grid > div,
  .facts-grid > div:last-child {
    min-height: 98px;
    padding-inline: 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

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

  .audience-card {
    min-height: 250px;
  }

  .sea-life-banner {
    min-height: 300px;
    border-radius: 2px 40px 2px 40px;
    background-position: 66% center;
    box-shadow: 8px 8px 0 var(--foam);
  }

  .specialty-list summary {
    min-height: 104px;
    padding-right: 54px;
  }

  .specialty-list summary small {
    font-size: 0.75rem;
  }

  .pill-list,
  .specialty-note {
    margin-right: 0;
  }

  .insurance-card {
    box-shadow: 8px 8px 0 var(--ink);
  }

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

  .footer-grid,
  .footer-links {
    flex-direction: column;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-fine-print {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-fine-print p:last-child {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
