@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./fonts/geist-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Domine";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/domine-latin.woff2") format("woff2");
}

:root {
  --eh-teal: #00a7cf;
  --eh-teal-dark: #0090b3;
  --eh-teal-deeper: #007a99;
  --eh-teal-light: #e6f7fb;
  --eh-teal-mid: #b3e6f2;
  --eh-navy: #1a2e35;
  --eh-ink: #1a1a1a;
  --eh-muted: #6b7280;
  --eh-border: #e5e7eb;
  --eh-bg: #fff;
  --eh-bg-alt: #f9fafb;
  --eh-white: #fff;
  --eh-radius: 0.75rem;
  --eh-radius-lg: 1rem;
  --eh-radius-xl: 2rem;
  --eh-max: 72rem;
  --eh-header-h: 4rem;
  --eh-font: "Geist", ui-sans-serif, system-ui, sans-serif;
  --eh-heading: "Domine", ui-serif, Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--eh-bg);
  color: var(--eh-ink);
  font-family: var(--eh-font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--eh-teal);
}

img {
  max-width: 100%;
  height: auto;
}

.eh-wrap {
  width: min(100% - 3rem, var(--eh-max));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .eh-wrap {
    width: min(100% - 4rem, var(--eh-max));
  }
}

@media (min-width: 1024px) {
  .eh-wrap {
    width: min(100% - 6rem, var(--eh-max));
  }
}

.eh-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--eh-white);
  color: var(--eh-navy);
  padding: 0.5rem 0.75rem;
  z-index: 200;
}

.eh-skip:focus {
  left: 0.75rem;
  top: 0.75rem;
}

/* Header */
header.wp-block-template-part {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--eh-white);
  padding-top: env(safe-area-inset-top, 0px);
  overflow: visible;
}

.eh-site-header {
  background: var(--eh-white);
  color: var(--eh-ink);
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--eh-border);
}

@media (min-width: 1024px) {
  header.wp-block-template-part {
    background: transparent;
  }

  .eh-site-header {
    background: transparent;
  }

  .eh-site-header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: var(--eh-header-h);
    background: color-mix(in srgb, var(--eh-bg) 92%, transparent);
    backdrop-filter: blur(12px);
    pointer-events: none;
    z-index: -1;
  }
}

.eh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--eh-header-h);
}

.eh-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--eh-ink);
  text-decoration: none;
}

.eh-logo img {
  height: 2rem;
  width: auto;
  display: block;
}

.eh-logo span {
  font-family: var(--eh-heading);
  font-size: 1.125rem;
  letter-spacing: -0.025em;
  color: var(--eh-ink);
}

@media (max-width: 380px) {
  .eh-logo span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}

.eh-menu {
  display: flex;
  align-items: center;
  align-self: stretch;
}

.eh-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.eh-nav > li {
  display: flex;
  align-items: center;
  position: relative;
}

.eh-nav > .eh-has-mega {
  position: static;
}

.eh-nav > li > a,
.eh-nav > li > button {
  color: var(--eh-ink);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
  touch-action: manipulation;
}

.eh-nav > li > a:hover,
.eh-nav > li > a:focus-visible,
.eh-nav > li > button:hover,
.eh-nav > li > button:focus-visible,
.eh-nav .eh-has-sub.is-open > button {
  background: var(--eh-bg-alt);
}

.eh-nav > li > a[aria-current="page"],
.eh-nav button[aria-current="true"] {
  color: var(--eh-teal-deeper);
}

.eh-nav > li > a[aria-current="page"] {
  background: var(--eh-teal-light);
}

.eh-nav .eh-has-sub.is-open > button::after,
.eh-nav button[aria-current="true"]::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 1px;
  background: var(--eh-teal);
}

.eh-nav .eh-chevron {
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.eh-has-sub.is-open > button .eh-chevron {
  transform: rotate(180deg);
}

.eh-mega {
  display: none;
}

.eh-has-sub.is-open > .eh-mega {
  display: block;
}

@media (min-width: 1024px) {
  .eh-nav > li > a,
  .eh-nav > li > button {
    height: 100%;
    border-radius: 0;
    padding-inline: 0.85rem;
  }

  .eh-nav > li > a:hover,
  .eh-nav > li > a:focus-visible,
  .eh-nav > li > button:hover,
  .eh-nav > li > button:focus-visible,
  .eh-nav .eh-has-sub.is-open > button,
  .eh-nav > li > a[aria-current="page"] {
    background: transparent;
  }

  .eh-nav .eh-has-sub.is-open > button::after,
  .eh-nav button[aria-current="true"]::after,
  .eh-nav > li > a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0;
    height: 2px;
    border-radius: 0;
    background: var(--eh-teal);
  }

  body.eh-mega-open .eh-site-header {
    border-bottom-color: transparent;
  }

  .eh-mega {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 110;
    background: var(--eh-white);
    border-top: 1px solid var(--eh-border);
    box-shadow: 0 24px 48px rgba(26, 46, 53, 0.12);
    max-height: min(38rem, calc(100vh - var(--eh-header-h) - env(safe-area-inset-top, 0px) - 1.25rem));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .eh-mega__inner {
    padding: 1.5rem 0 1.65rem;
  }

  .eh-mega__grid {
    display: grid;
    gap: 1.5rem 1.75rem;
    align-items: start;
  }

  .eh-mega__grid--services {
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(15.5rem, 0.95fr);
  }

  .eh-mega__grid--pricing {
    grid-template-columns: minmax(0, 1.7fr) minmax(16rem, 0.9fr);
    align-items: stretch;
  }

  .eh-mega__grid--about {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(16rem, 0.95fr);
  }

  .eh-mega__col {
    display: grid;
    align-content: start;
    gap: 0.2rem;
    min-width: 0;
  }

  .eh-mega__label {
    margin: 0 0 0.45rem;
    padding: 0 0.7rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eh-teal);
  }

  .eh-mega__link,
  .eh-mega__clinic,
  .eh-mega__price {
    display: grid;
    gap: 0.12rem;
    padding: 0.55rem 0.7rem;
    border-radius: 0.65rem;
    color: inherit;
    text-decoration: none;
    min-width: 0;
  }

  .eh-mega__link:hover,
  .eh-mega__link:focus-visible,
  .eh-mega__clinic:hover,
  .eh-mega__clinic:focus-visible,
  .eh-mega__price:hover,
  .eh-mega__price:focus-visible {
    background: var(--eh-bg-alt);
  }

  .eh-mega__link[aria-current="page"],
  .eh-mega__clinic[aria-current="page"],
  .eh-mega__price[aria-current="page"] {
    background: var(--eh-teal-light);
  }

  .eh-mega__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--eh-ink);
    line-height: 1.3;
  }

  .eh-mega__desc,
  .eh-mega__note,
  .eh-mega__meta {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--eh-muted);
  }

  .eh-mega__kicker {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.68rem;
    color: var(--eh-teal);
    font-weight: 600;
    margin: 0;
  }

  .eh-mega__feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    background: var(--eh-teal-light);
    border: 1px solid color-mix(in srgb, var(--eh-teal) 18%, var(--eh-border));
    border-radius: var(--eh-radius-lg);
    padding: 1.25rem 1.2rem 1.15rem;
    color: inherit;
    text-decoration: none;
    min-height: 100%;
  }

  .eh-mega__feature-title {
    font-family: var(--eh-heading);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--eh-ink);
    margin: 0;
  }

  .eh-mega__feature-text {
    margin: 0;
    color: var(--eh-muted);
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .eh-mega__feature .eh-btn {
    margin-top: 0.25rem;
  }

  .eh-mega__more {
    color: var(--eh-teal-deeper);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.35rem 0.7rem 0.15rem;
  }

  .eh-mega__feature .eh-mega__more {
    padding-left: 0;
  }

  .eh-mega__more:hover,
  .eh-mega__more:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .eh-mega__feature--photo {
    padding: 0;
    overflow: hidden;
    gap: 0;
    transition: box-shadow 0.15s ease;
  }

  .eh-mega__feature--photo:hover,
  .eh-mega__feature--photo:focus-visible {
    box-shadow: 0 0 0 1px var(--eh-teal);
  }

  .eh-mega__feature--photo img {
    width: 100%;
    height: 10.5rem;
    object-fit: cover;
    object-position: 50% 18%;
    display: block;
  }

  .eh-mega__feature-copy {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.1rem 1.15rem;
  }

  .eh-mega__clinics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .eh-mega__clinic {
    background: var(--eh-bg-alt);
    border: 1px solid var(--eh-border);
    min-height: 100%;
    padding: 1rem 1rem 0.95rem;
    gap: 0.28rem;
    transition: border-color 0.15s ease, background 0.15s ease;
  }

  .eh-mega__clinic:hover,
  .eh-mega__clinic:focus-visible {
    border-color: color-mix(in srgb, var(--eh-teal) 45%, var(--eh-border));
    background: var(--eh-white);
  }

  .eh-mega__clinic .eh-mega__title {
    font-family: var(--eh-heading);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: -0.02em;
  }

  .eh-mega__clinic .eh-mega__meta {
    margin-top: 0.35rem;
    color: var(--eh-teal-deeper);
    font-weight: 600;
  }

  .eh-mega__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.25rem;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--eh-border);
  }

  .eh-mega__foot .eh-mega__more {
    padding-left: 0;
  }

  .eh-mega__prices {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .eh-mega__price {
    background: var(--eh-bg-alt);
    border: 1px solid var(--eh-border);
    text-align: left;
    padding: 0.9rem 0.85rem 0.85rem;
  }

  .eh-mega__amount {
    font-family: var(--eh-heading);
    font-size: 1.65rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--eh-ink);
    line-height: 1;
  }

  .eh-mega__amount::after {
    content: " / mo";
    font-family: var(--eh-font);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--eh-muted);
  }

  .eh-mega__note {
    margin: 0.85rem 0 0;
    padding: 0 0.15rem;
    max-width: 40rem;
  }

  .eh-mega__grid--pricing .eh-mega__col:last-child {
    background: var(--eh-bg-alt);
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-radius-lg);
    padding: 1.1rem 0.85rem 1rem;
  }

  .eh-menu-backdrop {
    display: none;
  }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .eh-mega__grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eh-mega__grid--services .eh-mega__feature {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .eh-mega__grid--services .eh-mega__feature-text {
    max-width: 28rem;
  }

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

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

.eh-header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.eh-btn,
.wp-block-button__link,
.eh-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--eh-teal);
  color: var(--eh-white) !important;
  padding: 0.45rem 0.7rem;
  min-height: 2.25rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
}

.eh-btn:hover,
.wp-block-button__link:hover,
.eh-form button:hover {
  background: var(--eh-teal-dark);
}

.eh-btn-primary {
  background: var(--eh-teal);
  color: var(--eh-white) !important;
}

.eh-btn-outline,
.wp-block-button.is-style-outline .wp-block-button__link {
  background: var(--eh-white) !important;
  color: var(--eh-ink) !important;
  border: 1px solid var(--eh-border);
}

.eh-btn-outline:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--eh-bg-alt) !important;
}

.eh-cta {
  display: inline-flex;
}

.eh-cta__short {
  display: none;
}

@media (max-width: 639px) {
  .eh-cta__full {
    display: none;
  }

  .eh-cta__short {
    display: inline;
  }
}

.eh-menu-footer {
  display: none;
}

.eh-menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--eh-ink);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.eh-menu-toggle:hover,
.eh-menu-toggle:focus-visible {
  background: var(--eh-bg-alt);
}

.eh-menu-toggle__box {
  position: relative;
  display: block;
  width: 1.15rem;
  height: 0.85rem;
}

.eh-menu-toggle__bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.eh-menu-toggle__bar:nth-child(1) {
  top: 0;
}

.eh-menu-toggle__bar:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}

.eh-menu-toggle__bar:nth-child(3) {
  bottom: 0;
}

.eh-menu-toggle[aria-expanded="true"] .eh-menu-toggle__bar:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(45deg);
}

.eh-menu-toggle[aria-expanded="true"] .eh-menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.eh-menu-toggle[aria-expanded="true"] .eh-menu-toggle__bar:nth-child(3) {
  bottom: auto;
  top: 50%;
  margin-top: -1px;
  transform: rotate(-45deg);
}

/* Footer */
.eh-site-footer {
  background: var(--eh-bg);
  color: var(--eh-ink);
  border-top: 1px solid var(--eh-border);
  padding: 3rem 0;
  margin-top: 0;
}

.eh-footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.eh-footer-brand {
  max-width: 28rem;
}

.eh-footer-brand .eh-logo {
  margin-bottom: 0.5rem;
}

.eh-footer-brand .eh-logo img {
  height: 2.25rem;
}

.eh-footer-brand .eh-logo span {
  font-size: 1.25rem;
}

.eh-site-footer p {
  color: var(--eh-muted);
  margin: 0.5rem 0 0;
}

.eh-footer-note {
  margin-top: 1rem !important;
  font-size: 0.875rem;
  line-height: 1.6;
}

.eh-site-footer a {
  color: var(--eh-ink);
  text-decoration: none;
}

.eh-site-footer a:hover {
  color: var(--eh-teal);
}

.eh-footer-links {
  display: grid;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.eh-footer-clinics {
  display: grid;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--eh-muted);
}

@media (min-width: 900px) {
  .eh-footer-grid {
    display: grid;
    grid-template-columns: minmax(16rem, 1.2fr) minmax(16rem, 1fr) auto;
    gap: 2.5rem;
  }
}

.eh-footer-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eh-teal);
  font-weight: 600;
  margin: 0 0 0.25rem !important;
}

.eh-footer-clinics p {
  margin: 0;
  line-height: 1.5;
}

.eh-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1rem !important;
  font-size: 0.875rem;
}

.eh-kicker {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: var(--eh-teal);
  font-weight: 500;
  margin: 0 0 1rem;
}

.eh-section-title,
.eh-stats__heading,
.eh-cta-banner__heading,
.eh-hero__title,
.eh-page-hero__title {
  font-family: var(--eh-heading);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--eh-ink);
  line-height: 1.15;
  margin: 0;
}

.eh-lede {
  max-width: 42rem;
  color: var(--eh-muted);
  margin: 1rem 0 0;
  font-size: 1.125rem;
  line-height: 1.75;
}

.eh-hero,
.eh-stats,
.eh-features,
.eh-team,
.eh-prices,
.eh-split,
.eh-faq,
.eh-quotes,
.eh-consult,
.eh-cta-banner,
.eh-charts,
.eh-chart.alignfull,
.eh-biz-prices,
.eh-related.is-strip,
.wp-block-elevated-hero,
.wp-block-elevated-stats,
.wp-block-elevated-feature-grid,
.wp-block-elevated-team-grid,
.wp-block-elevated-price-grid,
.wp-block-elevated-split,
.wp-block-elevated-faq,
.wp-block-elevated-quotes,
.wp-block-elevated-consult-panel,
.wp-block-elevated-cta-banner,
.wp-block-elevated-related-posts.alignfull,
.wp-block-elevated-chart-grid,
.wp-block-elevated-bar-chart.alignfull {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
}

.entry-content > .wp-block-elevated-hero,
.entry-content > .wp-block-elevated-stats,
.entry-content > .wp-block-elevated-feature-grid,
.entry-content > .wp-block-elevated-team-grid,
.entry-content > .wp-block-elevated-price-grid,
.entry-content > .wp-block-elevated-split,
.entry-content > .wp-block-elevated-faq,
.entry-content > .wp-block-elevated-quotes,
.entry-content > .wp-block-elevated-consult-panel,
.entry-content > .wp-block-elevated-cta-banner,
.entry-content > .wp-block-elevated-related-posts,
.entry-content > .wp-block-elevated-chart-grid,
.entry-content > .wp-block-elevated-bar-chart {
  margin-block: 0;
}

/* Hero */
.eh-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
}

@media (min-width: 1024px) {
  .eh-hero {
    padding: 8rem 0;
  }
}

.eh-hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, var(--eh-teal) 0%, transparent 32%);
  opacity: 0.15;
}

.eh-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .eh-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.eh-hero__title {
  max-width: 48rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
}

.eh-hero__text {
  max-width: 42rem;
  color: var(--eh-muted);
  margin: 1.5rem 0 0;
  font-size: 1.125rem;
  line-height: 2;
}

.eh-hero__actions {
  margin-top: 2rem;
}

.eh-hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--eh-radius-xl);
  border: 1px solid var(--eh-border);
}

.eh-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Inner-page / service hero */
.eh-page-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3.5rem;
}

.eh-page-hero__inner {
  position: relative;
  z-index: 1;
}

.eh-page-hero.has-media .eh-page-hero__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .eh-page-hero.has-media .eh-page-hero__inner {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.eh-page-hero__title {
  max-width: 40rem;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
}

.eh-page-hero__text {
  max-width: 42rem;
  color: var(--eh-muted);
  margin: 1.25rem 0 0;
  font-size: 1.125rem;
  line-height: 1.75;
}

.eh-page-hero__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.eh-page-hero__actions .wp-block-buttons {
  margin: 0;
}

.eh-page-hero__call {
  text-decoration: none;
}

.eh-page-hero__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--eh-radius-xl);
  border: 1px solid var(--eh-border);
}

.eh-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eh-service,
.eh-service .wp-block-post-content,
.eh-location,
.eh-location .wp-block-post-content {
  max-width: none;
  padding: 0;
  margin: 0;
}

.eh-service-body > *:not(.alignfull),
.eh-location-body > *:not(.alignfull) {
  width: min(100% - 3rem, 45rem);
  margin-inline: auto;
}

.eh-service-body > .wp-block-elevated-pricing-table,
.eh-service-body > .eh-table-wrap,
.eh-location-body > .wp-block-elevated-pricing-table,
.eh-location-body > .eh-table-wrap {
  width: min(100% - 3rem, 52rem);
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.eh-service-body > *:not(.alignfull):first-child,
.eh-location-body > *:not(.alignfull):first-child {
  margin-top: 3rem;
}

.eh-service-body > *:not(.alignfull):last-child,
.eh-location-body > *:not(.alignfull):last-child {
  margin-bottom: 3.5rem;
}

.eh-service-includes .eh-features {
  background: var(--eh-bg-alt);
}

/* Clinic / location map */
.eh-clinic {
  padding: 0 0 3rem;
}

.eh-clinic__frame {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .eh-clinic:not(.is-overview) .eh-clinic__frame {
    grid-template-columns: minmax(18rem, 0.92fr) minmax(0, 1.2fr);
    align-items: stretch;
  }
}

.eh-clinic.is-overview .eh-clinic__frame {
  grid-template-columns: 1fr;
}

.eh-clinic__panel {
  background: var(--eh-bg-alt);
  border-radius: var(--eh-radius-xl);
  padding: 1.75rem 1.5rem;
}

@media (min-width: 640px) {
  .eh-clinic__panel {
    padding: 2rem 2rem;
  }
}

.eh-clinic__panel .eh-section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.eh-clinic__address,
.eh-clinic__contact {
  margin: 1rem 0 0;
  line-height: 1.7;
}

.eh-clinic__contact a {
  color: var(--eh-ink);
  text-decoration: none;
}

.eh-clinic__contact a:hover {
  color: var(--eh-teal);
}

.eh-clinic__label {
  margin: 1.5rem 0 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eh-teal);
}

.eh-clinic__hours,
.eh-clinic__providers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.eh-clinic__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}

.eh-clinic__hours li span:last-child {
  color: var(--eh-muted);
  text-align: right;
}

.eh-clinic__providers li {
  display: grid;
  gap: 0.15rem;
  font-size: 0.95rem;
}

.eh-clinic__providers span {
  color: var(--eh-muted);
  font-size: 0.875rem;
}

.eh-clinic__note {
  margin: 0.75rem 0 0;
  color: var(--eh-muted);
  font-size: 0.9rem;
}

.eh-clinic__actions {
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.eh-clinic__directions {
  font-size: 0.9rem;
}

.eh-clinic__map-wrap {
  display: flex;
  flex-direction: column;
  min-height: 22rem;
}

.eh-clinic.is-overview .eh-clinic__map-wrap {
  min-height: 28rem;
}

.eh-map {
  flex: 1 1 auto;
  min-height: 22rem;
  width: 100%;
  border-radius: var(--eh-radius-xl);
  overflow: hidden;
  border: 1px solid var(--eh-border);
  background: var(--eh-teal-light);
}

.eh-map.leaflet-container,
.eh-map .leaflet-container {
  height: 100%;
  width: 100%;
  min-height: 22rem;
  font-family: var(--eh-font);
}

.eh-clinic.is-overview .eh-map {
  min-height: 28rem;
}

.eh-map__credit {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--eh-muted);
}

.eh-map__credit a {
  color: inherit;
}

.eh-map-pin {
  background: transparent;
}

.eh-map-pin span {
  display: block;
  width: 18px;
  height: 18px;
  margin: 2px auto 0;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--eh-teal);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--eh-teal) 25%, transparent);
}

.leaflet-popup-content {
  font-family: var(--eh-font);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0.75rem 1rem;
}

.leaflet-popup-content a {
  color: var(--eh-teal);
}

.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.wp-block-button {
  margin: 0;
}

/* Stats */
.eh-stats {
  background: var(--eh-teal);
  color: var(--eh-white);
  padding: 5rem 0;
}

.eh-stats__heading,
.eh-stats .eh-stat__value,
.eh-stats .eh-stat__label {
  color: var(--eh-white);
}

.eh-stats__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 2.5rem;
}

.eh-stats__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .eh-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .eh-stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.eh-stat__value {
  font-family: var(--eh-heading);
  font-size: 3rem;
  margin: 0;
  line-height: 1;
}

.eh-stat__label {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Features */
.eh-features,
.eh-prices {
  background: color-mix(in srgb, var(--eh-teal-light) 40%, transparent);
  padding: 5rem 0;
}

.eh-features .eh-section-title,
.eh-prices .eh-section-title,
.eh-team .eh-section-title,
.eh-faq .eh-section-title,
.eh-split .eh-section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  max-width: 48rem;
}

.eh-features__grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .eh-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .eh-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.eh-about-body .eh-features__grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .eh-about-body .eh-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.eh-feature-card {
  background: var(--eh-white);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--eh-ink) 10%, transparent);
}

a.eh-feature-card {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

a.eh-feature-card:hover,
a.eh-feature-card:focus-visible {
  box-shadow: 0 0 0 1px var(--eh-teal);
}

a.eh-feature-card .eh-feature-card__title {
  color: var(--eh-ink);
}

a.eh-feature-card .eh-feature-card__text {
  color: var(--eh-muted);
}

.eh-feature-card__title {
  font-family: var(--eh-heading);
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
  color: var(--eh-ink);
}

.eh-feature-card__text {
  margin: 0;
  color: var(--eh-muted);
  font-size: 1rem;
}

/* Team */
.eh-team,
.eh-split,
.eh-cta-banner {
  padding: 5rem 0;
}

.eh-team__grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .eh-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .eh-team__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.eh-quotes {
  padding: 5rem 0;
  background: var(--eh-bg-alt);
}

.eh-quotes .eh-section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.eh-quotes__grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .eh-quotes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.eh-quotes .wp-block-quote {
  margin: 0;
  padding: 1.5rem 1.6rem;
  background: var(--eh-white);
  border: 0;
  border-radius: var(--eh-radius);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--eh-ink) 10%, transparent);
  height: 100%;
}

.eh-quotes .wp-block-quote p {
  margin: 0;
  color: var(--eh-ink);
}

.eh-quotes .wp-block-quote cite {
  display: block;
  margin-top: 1rem;
  color: var(--eh-muted);
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
}

.eh-consult {
  padding: 4.5rem 0 5rem;
  background: var(--eh-bg-alt);
}

.eh-consult__inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .eh-consult__inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }
}

.eh-consult .eh-section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.eh-consult .eh-form {
  max-width: none;
  background: var(--eh-white);
}

.eh-consult__call {
  margin: 1.25rem 0 0;
  font-size: 1.05rem;
}

.eh-consult__call a {
  font-weight: 600;
  text-decoration: none;
}

.eh-callbar {
  display: none;
}

@media (max-width: 767px) {
  body.eh-has-callbar {
    padding-bottom: 4.75rem;
  }

  .eh-callbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: var(--eh-white);
    border-top: 1px solid var(--eh-border);
    box-shadow: 0 -8px 24px color-mix(in srgb, var(--eh-navy) 12%, transparent);
  }

  .eh-callbar .eh-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
  }
}

.eh-team-card {
  background: var(--eh-white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--eh-ink) 10%, transparent);
}

.eh-team-card__link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.eh-team-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.eh-team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.eh-team-card__body {
  padding: 1rem;
}

.eh-team-card__name {
  font-family: var(--eh-heading);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.eh-team-card__role {
  margin: 0.25rem 0 0;
  color: var(--eh-muted);
  font-size: 0.875rem;
}

/* Prices */
.eh-prices__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .eh-prices__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.eh-price__amount {
  font-family: var(--eh-heading);
  font-size: 3rem;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  margin: 0;
  line-height: 1;
}

.eh-price__label {
  margin: 0.75rem 0 0;
  color: var(--eh-teal);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eh-prices__cta {
  margin-top: 2.5rem;
}

.eh-pricing .eh-price__amount::after,
.eh-biz-prices .eh-price__amount::after {
  content: " / mo";
  font-family: var(--eh-font);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--eh-muted);
}

/* Split */
.eh-split__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--eh-radius-xl);
  min-height: 22rem;
}

.eh-split__media {
  display: none;
}

@media (min-width: 768px) {
  .eh-split__media {
    display: block;
    position: absolute;
    inset: 0 0 0 auto;
    width: 58%;
  }

  .eh-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    display: block;
  }

  .eh-split__media--mobile {
    display: none;
  }
}

.eh-split__panel {
  position: relative;
  z-index: 1;
  background: var(--eh-teal-light);
  border-radius: var(--eh-radius-xl);
  padding: 2rem;
}

@media (min-width: 640px) {
  .eh-split__panel {
    padding: 2.5rem;
  }
}

@media (min-width: 768px) {
  .eh-split__panel {
    max-width: 54%;
  }
}

.eh-split__media--mobile {
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: var(--eh-radius-xl);
  margin-top: 1.5rem;
}

.eh-split__media--mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eh-split__panel ul,
.eh-split .wp-block-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.eh-split__panel li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.75;
}

.eh-split__panel li::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
  margin-top: 0.2rem;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300A7CF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

.eh-split__panel .wp-block-buttons {
  margin-top: 0.5rem;
}

.eh-split__panel .wp-block-button.is-style-outline .wp-block-button__link,
.eh-split__panel .wp-block-button .wp-block-button__link {
  background: transparent !important;
  color: var(--eh-teal) !important;
  border: 0;
  padding-left: 0;
  padding-right: 0;
  text-decoration: none;
  min-height: auto;
}

.eh-split__panel .wp-block-button .wp-block-button__link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.eh-split__panel > p:not(.eh-lede) {
  margin: 2rem 0 0;
  max-width: 65ch;
  line-height: 1.75;
}

/* FAQ */
.eh-faq {
  background: var(--eh-bg-alt);
  padding: 5rem 0;
}

.eh-faq__inner {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .eh-faq__inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
    gap: 4rem;
  }

  .eh-faq__intro {
    position: sticky;
    top: 6rem;
  }
}

.eh-faq__intro .eh-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.eh-faq__intro .eh-btn {
  margin-top: 2rem;
}

.eh-faq .wp-block-details,
.eh-faq__items .wp-block-details {
  border: 0;
  border-bottom: 1px solid var(--eh-border);
  padding: 0;
}

.eh-faq .wp-block-details summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--eh-ink);
  font-size: 1.125rem;
  line-height: 1.75;
  padding: 1.25rem 2rem 1.25rem 0;
  list-style: none;
  position: relative;
}

.eh-faq .wp-block-details summary::-webkit-details-marker {
  display: none;
}

.eh-faq .wp-block-details summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 1.55rem;
  width: 1rem;
  height: 1rem;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

.eh-faq .wp-block-details[open] summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 15-6-6-6 6'/%3E%3C/svg%3E");
}

.eh-faq .wp-block-details summary:hover {
  color: var(--eh-teal);
}

.eh-faq .wp-block-details p {
  color: var(--eh-muted);
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
}

.eh-faq .wp-block-details ul,
.eh-faq .wp-block-details ol {
  color: var(--eh-muted);
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
}

.eh-faq.is-stack {
  padding: 0;
}

.eh-faq.is-stack .eh-faq__inner {
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.eh-faq.is-stack .eh-faq__intro {
  position: static;
}

.eh-faq.is-stack .eh-faq__intro .eh-section-title {
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
}

.eh-faq.is-stack .eh-faq__intro .eh-lede {
  margin-top: 0.5rem;
  max-width: 40rem;
}

.eh-faq-page,
.eh-faq-page .wp-block-post-content {
  max-width: none;
  padding: 0;
  margin: 0;
}

.eh-faq-page .eh-faq.is-stack .eh-wrap {
  padding-top: 2.35rem;
  padding-bottom: 0.35rem;
}

.eh-faq-page .eh-faq.is-stack:first-child .eh-wrap {
  padding-top: 3.25rem;
}

.eh-faq-page .eh-faq.is-stack:last-child .eh-wrap {
  padding-bottom: 4rem;
}

/* CTA banner */
.eh-cta-banner__panel {
  background: var(--eh-ink);
  color: var(--eh-white);
  border-radius: var(--eh-radius-xl);
  padding: 3.5rem 2rem;
}

@media (min-width: 640px) {
  .eh-cta-banner__panel {
    padding: 3.5rem 3rem;
  }
}

.eh-cta-banner__heading {
  max-width: 48rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--eh-white);
}

.eh-cta-banner__text {
  margin: 1rem 0 0;
  max-width: 42rem;
  font-size: 1.125rem;
  opacity: 0.8;
}

.eh-cta-banner__actions {
  margin-top: 2rem;
}

.eh-cta-banner .wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background: var(--eh-teal-light) !important;
  color: var(--eh-navy) !important;
}

.eh-cta-banner .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  background: color-mix(in srgb, var(--eh-teal-light) 90%, var(--eh-ink)) !important;
}

.eh-cta-banner .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  color: var(--eh-white) !important;
  border-color: color-mix(in srgb, var(--eh-white) 25%, transparent);
}

.eh-cta-banner .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: color-mix(in srgb, var(--eh-white) 10%, transparent) !important;
}

/* Forms, tables, articles */
.eh-form {
  max-width: 40rem;
  display: grid;
  gap: 0.9rem;
  background: var(--eh-bg-alt);
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius-lg);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .eh-form {
    padding: 1.75rem 1.85rem;
  }
}

.eh-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 500;
  font-size: 0.92rem;
}

.eh-form input,
.eh-form select,
.eh-form textarea {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--eh-border);
  border-radius: 0.5rem;
  width: 100%;
  background: var(--eh-white);
}

.eh-form input[type="checkbox"],
.eh-form input[type="radio"] {
  width: auto;
  padding: 0;
}

.eh-form__row {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .eh-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.eh-form__cell {
  display: grid;
  gap: 0.3rem;
  align-content: start;
}

.eh-req {
  color: var(--eh-muted);
  font-weight: 400;
  font-size: 0.78rem;
}

.eh-form .eh-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 400;
  line-height: 1.45;
}

.eh-form .eh-check input {
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.eh-checks {
  border: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.eh-checks legend {
  font-weight: 500;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
  padding: 0;
}

.eh-hp {
  position: absolute;
  left: -9999px;
}

.eh-notice {
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.eh-notice.error {
  background: #fdecea;
  color: #8a1f11;
}

.eh-table-wrap {
  overflow-x: auto;
}

.eh-table {
  width: 100%;
  border-collapse: collapse;
}

.eh-table th,
.eh-table td {
  border: 1px solid var(--eh-border);
  padding: 0.65rem 0.8rem;
  text-align: left;
}

.eh-table th {
  background: var(--eh-bg-alt);
  color: var(--eh-navy);
}

.wp-block-details {
  border-bottom: 1px solid var(--eh-border);
  padding: 0.7rem 0;
}

.wp-block-details summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--eh-ink);
}

.eh-page {
  padding: 3rem 0 4rem;
}

.eh-page h1 {
  margin-top: 0;
  font-family: var(--eh-heading);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eh-read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--eh-teal);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 200;
  pointer-events: none;
}

/* Blog archive */
.eh-blog-hero {
  background: var(--eh-bg-alt);
  padding: 3.25rem 0 2.5rem;
  border-bottom: 1px solid var(--eh-border);
}

.eh-blog-hero__title {
  font-family: var(--eh-heading);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  max-width: 18ch;
}

.eh-blog-search {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.75rem;
  max-width: 32rem;
}

.eh-blog-search input[type="search"] {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--eh-border);
  border-radius: 0.5rem;
  padding: 0.6rem 0.85rem;
  font: inherit;
  background: var(--eh-white);
  color: var(--eh-ink);
}

.eh-blog-search input[type="search"]:focus {
  outline: 2px solid var(--eh-teal);
  outline-offset: 1px;
}

.eh-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.eh-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--eh-border);
  background: var(--eh-white);
  color: var(--eh-ink);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
}

.eh-chip:hover,
.eh-chip.is-active {
  background: var(--eh-teal);
  border-color: var(--eh-teal);
  color: var(--eh-white);
}

.eh-archive-body {
  width: min(100% - 3rem, 72rem);
  margin: 2.75rem auto 1rem;
  max-width: none;
}

@media (min-width: 640px) {
  .eh-archive-body {
    width: min(100% - 4rem, 72rem);
  }
}

.eh-archive .wp-block-post-template.is-layout-grid {
  gap: 1.35rem;
}

@media (max-width: 767px) {
  .eh-archive .wp-block-post-template.is-layout-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .eh-archive .wp-block-post-template.is-layout-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.eh-post-card,
article.eh-post-card {
  height: 100%;
  background: var(--eh-white);
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eh-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(26, 46, 53, 0.08);
}

.eh-post-card .wp-block-post-featured-image,
.eh-post-card__media {
  margin: 0;
  display: block;
  background: var(--eh-teal-light);
}

.eh-post-card .wp-block-post-featured-image img,
.eh-post-card__image,
.eh-post-card__fallback {
  display: block;
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.eh-post-card__fallback {
  background:
    radial-gradient(circle at 30% 20%, var(--eh-teal-mid), transparent 50%),
    var(--eh-teal-light);
}

.eh-post-card__body {
  padding: 1.05rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.eh-post-card .eh-kicker,
.eh-post-card .wp-block-post-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  margin: 0 0 0.15rem;
}

.eh-post-card .wp-block-post-terms__separator {
  display: none;
}

.eh-post-card .eh-kicker a,
.eh-post-card .wp-block-post-terms a {
  color: var(--eh-teal);
  text-decoration: none;
}

.eh-post-card .wp-block-post-title,
.eh-post-card__title {
  font-family: var(--eh-heading);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0;
}

.eh-post-card .wp-block-post-title a,
.eh-post-card__title a {
  color: var(--eh-ink);
  text-decoration: none;
}

.eh-post-card .wp-block-post-title a:hover,
.eh-post-card__title a:hover {
  color: var(--eh-teal);
}

.eh-post-card .wp-block-post-date,
.eh-post-card__date {
  color: var(--eh-muted);
  font-size: 0.8125rem;
  margin: 0;
}

.eh-post-card .wp-block-post-excerpt,
.eh-post-card__excerpt {
  color: var(--eh-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0.25rem 0 0;
}

.eh-post-card .wp-block-post-excerpt p {
  margin: 0;
}

.eh-post-card .wp-block-post-terms:not(:has(a)),
.eh-article-tags:not(:has(a)) {
  display: none;
}

@media (min-width: 900px) {
  .eh-home-posts .wp-block-post-template.is-layout-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .eh-home-posts .wp-block-post-template > .wp-block-post:first-child {
    grid-column: 1 / -1;
  }

  .eh-home-posts .wp-block-post:first-child .eh-post-card {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    align-items: stretch;
  }

  .eh-home-posts .wp-block-post:first-child .wp-block-post-featured-image,
  .eh-home-posts .wp-block-post:first-child .wp-block-post-featured-image img {
    height: 100%;
    min-height: 22rem;
  }

  .eh-home-posts .wp-block-post:first-child .eh-post-card__body {
    padding: 2.25rem 2.25rem 2.25rem 2rem;
    justify-content: center;
  }

  .eh-home-posts .wp-block-post:first-child .wp-block-post-title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
  }

  .eh-home-posts .wp-block-post:first-child .wp-block-post-excerpt {
    font-size: 1.05rem;
  }
}

.eh-archive .wp-block-query-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin: 2.75rem 0 1rem;
}

.eh-archive .wp-block-query-pagination a,
.eh-archive .wp-block-query-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  min-height: 2.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid var(--eh-border);
  color: var(--eh-ink);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--eh-white);
}

.eh-archive .wp-block-query-pagination a:hover,
.eh-archive .wp-block-query-pagination .page-numbers.current {
  background: var(--eh-teal);
  border-color: var(--eh-teal);
  color: var(--eh-white);
}

/* Single article */
.eh-article-header {
  padding: 2.75rem 0 0;
}

.eh-article-header__copy {
  max-width: 46rem;
}

.eh-article-header .eh-kicker a {
  color: var(--eh-teal);
  text-decoration: none;
}

.eh-article-header .eh-kicker a:hover {
  text-decoration: underline;
}

.eh-article-header__title {
  font-family: var(--eh-heading);
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0.35rem 0 0;
  color: var(--eh-ink);
}

.eh-article-header__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.35rem;
  color: var(--eh-muted);
  font-size: 0.95rem;
  margin: 1.1rem 0 0;
}

.eh-meta-dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--eh-border);
  margin: 0 0.45rem;
}

.eh-article-header__figure {
  margin: 2rem auto 0;
  width: min(100% - 3rem, 56rem);
}

.eh-article-header__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 28rem;
  object-fit: cover;
  border-radius: var(--eh-radius-lg);
  border: 1px solid var(--eh-border);
}

.eh-article-body {
  width: min(100% - 3rem, 42rem);
  margin: 2.5rem auto 0;
  max-width: none;
}

.eh-article-body .wp-block-post-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--eh-ink);
  max-width: none;
}

.eh-article-body .wp-block-post-content > p:first-of-type {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--eh-navy);
}

.eh-article-body .wp-block-post-content p,
.eh-article-body .wp-block-post-content li {
  white-space: normal;
}

.eh-article-body h2,
.eh-article-body .wp-block-heading {
  font-family: var(--eh-heading);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.eh-article-body h2 {
  font-size: 1.65rem;
  margin: 2.6rem 0 0.85rem;
}

.eh-article-body h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.7rem;
}

.eh-article-body h2 strong,
.eh-article-body h3 strong {
  font-weight: inherit;
}

.eh-article-body a {
  text-underline-offset: 0.15em;
}

.eh-article-body ul,
.eh-article-body ol {
  padding-left: 1.2rem;
}

.eh-article-body li {
  margin: 0.4rem 0;
}

.eh-article-body li br {
  display: none;
}

.eh-article-body blockquote {
  margin: 1.75rem 0;
  padding: 0.15rem 0 0.15rem 1.2rem;
  border-left: 3px solid var(--eh-teal);
  color: var(--eh-navy);
  font-family: var(--eh-heading);
  font-size: 1.2rem;
  line-height: 1.45;
}

.eh-article-body figure,
.eh-article-body .wp-block-image {
  margin: 1.75rem 0;
}

.eh-article-body img {
  border-radius: 0.75rem;
}

.eh-article-body figcaption {
  color: var(--eh-muted);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.eh-article-body .wp-block-embed,
.eh-embed {
  margin: 1.75rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--eh-bg-alt);
}

.eh-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.eh-article-body iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0.75rem;
}

.eh-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  aspect-ratio: auto;
  border-radius: 0;
}

.eh-post-card,
.eh-post-card .eh-post-card__body,
.eh-archive-body,
.eh-article-more,
.eh-related {
  max-width: none !important;
}

.eh-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 2.5rem 0 0;
  font-size: 0.8125rem;
}

.eh-article-tags a {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--eh-teal-light);
  color: var(--eh-navy);
  text-decoration: none;
}

.eh-article-tags a:hover {
  background: var(--eh-teal);
  color: var(--eh-white);
}

.eh-article-tags .wp-block-post-terms__separator {
  display: none;
}

.eh-article-tags:empty {
  display: none;
}

.eh-post-nav {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--eh-border);
  gap: 1.25rem;
  width: 100%;
}

.eh-post-nav .post-navigation-link-previous,
.eh-post-nav .post-navigation-link-next {
  max-width: 16rem;
  font-size: 0.95rem;
}

.eh-post-nav a {
  color: var(--eh-ink);
  text-decoration: none;
}

.eh-post-nav a:hover {
  color: var(--eh-teal);
}

.eh-post-nav .post-navigation-link-next {
  text-align: right;
  margin-left: auto;
}

.eh-article-more {
  width: min(100% - 3rem, 72rem);
  margin: 3.5rem auto 0;
  max-width: none;
}

.eh-related.is-strip {
  padding: 5rem 0;
  background: var(--eh-bg-alt);
}

.eh-related__heading {
  font-family: var(--eh-heading);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 1.25rem;
}

.eh-related__cta {
  margin: 2rem 0 0;
}

.eh-related__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .eh-related__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.elevated-callout {
  border: 1px solid var(--eh-border);
  background: var(--eh-teal-light);
  padding: 1.5rem 1.75rem;
  border-radius: 0.75rem;
}

.elevated-callout__heading {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--eh-navy);
}

.entry-content > * {
  margin-block: 1rem;
}

.wp-site-blocks > header,
.wp-site-blocks > footer,
.wp-site-blocks > main,
.wp-block-template-part {
  margin: 0;
  max-width: none;
}

header.wp-block-template-part {
  padding: env(safe-area-inset-top, 0px) 0 0;
}

footer.wp-block-template-part {
  padding: 0;
}

.home .wp-block-post-content,
.home main.wp-block-group,
.blog main.wp-block-group,
.archive main.wp-block-group,
.search main.wp-block-group,
.single-post main.wp-block-group,
.eh-service.wp-block-group,
.eh-service .wp-block-post-content,
.eh-location.wp-block-group,
.eh-location .wp-block-post-content,
.eh-article.wp-block-group,
.eh-article .wp-block-post-content,
.eh-archive.wp-block-group {
  max-width: none;
  padding: 0;
  margin: 0;
}

.alignfull {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 1023px) {
  .eh-menu-toggle {
    display: inline-flex;
  }

  .eh-menu-backdrop {
    display: block;
    position: fixed;
    inset: calc(var(--eh-header-h) + env(safe-area-inset-top, 0px)) 0 0 0;
    background: rgba(26, 46, 53, 0.4);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .eh-menu-backdrop[hidden] {
    display: block;
  }

  body.eh-nav-open .eh-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .eh-menu {
    position: fixed;
    top: calc(var(--eh-header-h) + env(safe-area-inset-top, 0px));
    right: 0;
    left: auto;
    bottom: 0;
    width: min(24.5rem, 100vw);
    max-width: 100%;
    min-width: 0;
    z-index: 95;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--eh-white);
    box-shadow: -16px 0 40px rgba(26, 46, 53, 0.12);
    transform: translateX(1.25rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-x: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .eh-menu.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .eh-nav {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
    min-width: 0;
    height: auto;
    gap: 0.15rem;
    margin: 0;
    padding: 0.5rem 1rem 1rem;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .eh-nav > li,
  .eh-mega,
  .eh-mega__col,
  .eh-mega__grid,
  .eh-mega__clinics {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .eh-nav > li {
    display: block;
  }

  .eh-nav > li > a,
  .eh-nav > li > button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 2.85rem;
    justify-content: space-between;
    padding: 0.7rem 0.85rem;
    font-size: 1.0625rem;
    border-radius: 0.65rem;
    white-space: normal;
    overflow-wrap: anywhere;
    -webkit-tap-highlight-color: color-mix(in srgb, var(--eh-teal) 18%, transparent);
  }

  .eh-nav .eh-has-sub.is-open > button::after,
  .eh-nav button[aria-current="true"]::after {
    display: none;
  }

  .eh-nav .eh-chevron {
    width: 1rem;
    height: 1rem;
    color: var(--eh-muted);
  }

  .eh-mega {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    max-height: none;
    overflow: visible;
    margin: 0.15rem 0 0.45rem;
    padding: 0.55rem 0.65rem 0.7rem;
    background: var(--eh-bg-alt);
    border-radius: 0.85rem;
  }

  .eh-has-sub.is-open > .eh-mega,
  .eh-has-sub.is-open > .eh-mega[hidden] {
    display: block;
  }

  .eh-mega__inner {
    padding: 0;
    width: 100%;
  }

  .eh-mega__grid,
  .eh-mega__clinics,
  .eh-mega__prices {
    display: grid;
    gap: 0.15rem;
  }

  .eh-mega__col {
    display: grid;
    gap: 0.1rem;
    padding: 0.35rem 0 0.55rem;
  }

  .eh-mega__col + .eh-mega__col {
    border-top: 1px solid var(--eh-border);
    padding-top: 0.65rem;
  }

  .eh-mega__label {
    margin: 0 0 0.25rem;
    padding: 0 0.7rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eh-teal);
  }

  .eh-mega__link,
  .eh-mega__clinic,
  .eh-mega__price {
    display: grid;
    gap: 0.1rem;
    width: 100%;
    min-height: 2.5rem;
    padding: 0.5rem 0.7rem;
    border-radius: 0.55rem;
    color: var(--eh-ink);
    text-decoration: none;
  }

  .eh-mega__title {
    font-size: 0.975rem;
    font-weight: 550;
    line-height: 1.3;
  }

  .eh-mega__link .eh-mega__desc {
    display: none;
  }

  .eh-mega__clinic .eh-mega__desc,
  .eh-mega__price .eh-mega__desc {
    font-size: 0.8rem;
    color: var(--eh-muted);
    line-height: 1.35;
  }

  .eh-mega__kicker {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eh-teal);
    margin: 0;
  }

  .eh-mega__clinic .eh-mega__meta {
    color: var(--eh-teal-deeper);
    font-size: 0.85rem;
    font-weight: 600;
  }

  .eh-mega__link[aria-current="page"],
  .eh-mega__clinic[aria-current="page"] {
    background: var(--eh-white);
    box-shadow: inset 2px 0 0 var(--eh-teal);
  }

  .eh-mega__feature {
    display: grid;
    gap: 0.45rem;
    margin-top: 0.35rem;
    padding: 0.9rem 0.85rem;
    background: var(--eh-white);
    border: 1px solid var(--eh-border);
    border-radius: 0.75rem;
  }

  .eh-mega__feature-title {
    font-family: var(--eh-heading);
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.02em;
  }

  .eh-mega__feature-text,
  .eh-mega__note {
    margin: 0;
    color: var(--eh-muted);
    font-size: 0.85rem;
    line-height: 1.45;
  }

  .eh-mega__feature .eh-btn {
    width: 100%;
  }

  .eh-mega__feature--photo img {
    display: none;
  }

  .eh-mega__feature-copy {
    display: grid;
    gap: 0.3rem;
  }

  .eh-mega__more {
    display: inline-flex;
    align-items: center;
    min-height: 2.4rem;
    padding: 0.35rem 0.7rem;
    color: var(--eh-teal-deeper);
    font-weight: 600;
    font-size: 0.925rem;
    text-decoration: none;
  }

  .eh-mega__foot {
    display: grid;
    gap: 0.1rem;
    margin-top: 0.35rem;
    padding-top: 0.35rem;
    border-top: 1px solid var(--eh-border);
  }

  .eh-mega__prices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.15rem 0 0.35rem;
  }

  .eh-mega__price {
    background: var(--eh-white);
    border: 1px solid var(--eh-border);
    border-radius: 0.65rem;
    padding: 0.7rem 0.75rem;
  }

  .eh-mega__amount {
    font-family: var(--eh-heading);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.02em;
  }

  .eh-mega__amount::after {
    content: " / mo";
    font-family: var(--eh-font);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--eh-muted);
  }

  .eh-menu-footer {
    display: grid;
    gap: 0.65rem;
    flex: 0 0 auto;
    align-self: stretch;
    width: 100%;
    min-width: 0;
    padding: 0.9rem 1.15rem calc(0.9rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--eh-border);
    background: var(--eh-white);
  }

  .eh-menu-footer .eh-btn {
    width: 100%;
    min-height: 2.85rem;
  }

  .eh-menu-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.5rem;
    color: var(--eh-teal-deeper);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.975rem;
  }

  .eh-menu-call svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  body.eh-nav-open {
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eh-menu,
  .eh-menu-backdrop,
  .eh-menu-toggle__bar,
  .eh-nav .eh-chevron,
  .eh-mega__clinic,
  .eh-mega__feature--photo {
    transition: none;
  }
}

/* Pricing page */
.eh-pricing,
.eh-pricing .wp-block-post-content {
  max-width: none;
  padding: 0;
  margin: 0;
}

.eh-pricing-body > *:not(.alignfull) {
  width: min(100% - 3rem, 52rem);
  margin-inline: auto;
}

.eh-pricing-body > *:not(.alignfull):first-child,
.eh-pricing-body > .eh-jump {
  margin-top: 0;
}

.eh-pricing-body > *:not(.alignfull):last-child {
  margin-bottom: 3.5rem;
}

.eh-pricing-body h2.wp-block-heading {
  font-family: var(--eh-heading);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 3.5rem auto 0.75rem;
  scroll-margin-top: calc(var(--eh-header-h) + env(safe-area-inset-top, 0px) + 0.75rem);
}

.eh-pricing-body .eh-table-wrap {
  margin: 1.25rem auto 2rem;
}

.eh-anchor {
  scroll-margin-top: calc(var(--eh-header-h) + env(safe-area-inset-top, 0px) + 0.75rem);
  height: 0;
}

.eh-pricing-body > .wp-block-html:has(.eh-jump) {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.eh-jump {
  position: relative;
  top: auto;
  z-index: 40;
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  width: 100%;
  margin: 0;
  padding: 0.65rem max(1.5rem, calc((100% - 72rem) / 2));
  background: var(--eh-white);
  border-bottom: 1px solid var(--eh-border);
  scrollbar-width: none;
}

@media (min-width: 1024px) {
  .eh-jump {
    position: sticky;
    top: calc(var(--eh-header-h) + env(safe-area-inset-top, 0px));
    background: color-mix(in srgb, var(--eh-bg) 92%, transparent);
    backdrop-filter: blur(12px);
  }
}

.eh-jump::-webkit-scrollbar {
  display: none;
}

.eh-jump a {
  flex: 0 0 auto;
  color: var(--eh-ink);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--eh-border);
  background: var(--eh-white);
}

.eh-jump a:hover,
.eh-jump a:focus-visible {
  border-color: var(--eh-teal);
  color: var(--eh-teal-deeper);
}

.eh-jump a[aria-current="page"] {
  border-color: var(--eh-teal);
  background: var(--eh-teal-light);
  color: var(--eh-teal-deeper);
}

.eh-biz-prices {
  background: var(--eh-bg);
  padding: 0 0 4rem;
}

.eh-biz-prices .wp-block-heading,
.eh-biz-prices p,
.eh-biz-prices .wp-block-columns {
  width: min(100% - 3rem, var(--eh-max));
  margin-inline: auto;
}

.eh-biz-prices .wp-block-heading {
  font-family: var(--eh-heading);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.eh-biz-prices .wp-block-columns {
  gap: 1rem;
  margin-top: 1.75rem;
}

.eh-price--biz {
  background: var(--eh-white);
  border-radius: var(--eh-radius);
  padding: 1.25rem 1.25rem 1.1rem;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--eh-ink) 10%, transparent);
}

.eh-included {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

@media (min-width: 640px) {
  .eh-included {
    grid-template-columns: 1fr 1fr;
  }
}

.eh-included li {
  background: var(--eh-teal-light);
  color: var(--eh-navy);
  border-radius: 0.6rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.9375rem;
}

.eh-pricing .eh-table {
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius);
  overflow: hidden;
}

.eh-pricing .eh-table th,
.eh-pricing .eh-table td {
  border-color: var(--eh-border);
}

.eh-pricing .eh-table tbody tr:nth-child(even) td {
  background: var(--eh-bg-alt);
}

/* Comparison charts */
.eh-charts {
  background: var(--eh-bg-alt);
  padding: 4.5rem 0 4rem;
}

.eh-charts__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 900px) {
  .eh-charts__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.eh-charts__grid > .eh-chart,
.eh-charts__grid > .wp-block-elevated-bar-chart {
  background: var(--eh-white);
  border-radius: var(--eh-radius-lg);
  padding: 1.5rem 1.15rem 1.15rem;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--eh-ink) 8%, transparent);
}

.eh-charts__grid .eh-chart .eh-wrap,
.eh-charts__grid .wp-block-elevated-bar-chart .eh-wrap {
  width: 100%;
  margin: 0;
}

.eh-chart__title {
  font-family: var(--eh-heading);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.02em;
}

.eh-chart .eh-lede {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.eh-chart {
  --eh-plot-h: 16rem;
}

.eh-chart__plot {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  grid-template-rows: var(--eh-plot-h) auto;
  column-gap: 0.5rem;
  margin-top: 1.75rem;
}

.eh-chart__axis {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  box-sizing: border-box;
  height: var(--eh-plot-h);
  padding-top: 1.6rem;
  font-size: 0.68rem;
  line-height: 1;
  color: var(--eh-muted);
}

.eh-chart__unit {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eh-chart__stage {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.eh-chart__bars {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  height: var(--eh-plot-h);
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 1.6rem 0.1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--eh-ink) 35%, transparent);
}

.eh-chart__grid {
  position: absolute;
  inset: 1.6rem 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  z-index: 0;
}

.eh-chart__grid span {
  display: block;
  border-top: 1px dashed color-mix(in srgb, var(--eh-ink) 12%, transparent);
}

.eh-chart__grid span:last-child {
  border-top: 0;
}

.eh-chart__labels {
  display: flex;
  gap: 0.5rem;
  padding: 0.55rem 0.1rem 0;
}

.eh-bar {
  flex: 1 1 0;
  min-width: 0;
  height: calc((var(--eh-plot-h) - 1.6rem) * var(--eh-bar-n, 0) / 100);
  min-height: 4px;
}

.eh-bar__fill {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.45rem 0.45rem 0 0;
  background: color-mix(in srgb, var(--eh-navy) 72%, #6b7c83);
  transform-origin: center bottom;
  transform: scaleY(1);
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--eh-bar-delay, 0s);
}

.eh-bar.is-highlight .eh-bar__fill {
  background: var(--eh-teal);
}

.eh-chart--ready:not(.is-inview) .eh-bar:not(.eh-bar--h) .eh-bar__fill {
  transform: scaleY(0);
}

.eh-chart.is-inview .eh-bar:not(.eh-bar--h) .eh-bar__fill {
  transform: scaleY(1);
}

.eh-bar__value {
  position: absolute;
  left: 50%;
  bottom: 100%;
  margin: 0 0 0.3rem;
  color: var(--eh-ink);
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, 0);
  opacity: 1;
}

.eh-chart--ready:not(.is-inview) .eh-bar:not(.eh-bar--h) .eh-bar__value {
  opacity: 0;
}

.eh-chart.is-inview .eh-bar__value {
  opacity: 1;
}

.eh-bar__label {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.2rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--eh-ink);
}

.eh-bar__label img {
  width: 1.2rem;
  height: 1.05rem;
}

@media (max-width: 639px) {
  .eh-chart {
    --eh-plot-h: 13.5rem;
  }

  .eh-charts__grid > .eh-chart,
  .eh-charts__grid > .wp-block-elevated-bar-chart {
    padding: 1.2rem 0.85rem 0.9rem;
  }

  .eh-chart__axis {
    font-size: 0.62rem;
  }

  .eh-chart__bars,
  .eh-chart__labels {
    gap: 0.35rem;
  }

  .eh-bar__value {
    font-size: 0.6rem;
    white-space: normal;
    max-width: 4.75rem;
  }

  .eh-bar__label {
    font-size: 0.68rem;
  }
}

.eh-chart--horizontal {
  background: var(--eh-white);
  padding: 4.5rem 0;
  border-top: 1px solid var(--eh-border);
}

.eh-chart--horizontal .eh-chart__plot {
  display: block;
  min-height: 0;
  grid-template-columns: none;
  grid-template-rows: none;
}

.eh-chart__rows {
  display: grid;
  gap: 1rem;
}

.eh-bar--h {
  display: block;
  height: auto;
}

.eh-bar--h .eh-bar__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
}

@media (max-width: 639px) {
  .eh-bar--h .eh-bar__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .eh-bar--h .eh-bar__value {
    white-space: normal;
  }
}

.eh-bar--h .eh-bar__name {
  font-weight: 600;
}

.eh-bar--h .eh-bar__value {
  position: static;
  left: auto;
  bottom: auto;
  margin: 0;
  color: var(--eh-teal-deeper);
  opacity: 1;
  transform: none;
  white-space: nowrap;
  font-size: 0.8125rem;
}

.eh-bar--h .eh-bar__track {
  min-height: 0;
  height: 0.7rem;
  background: var(--eh-teal-light);
  border-radius: 999px;
  overflow: hidden;
}

.eh-bar--h .eh-bar__fill {
  height: 100%;
  width: calc(var(--eh-bar-n, 0) * 1%);
  max-height: none;
  max-width: none;
  border-radius: 999px;
  padding: 0;
  transform: none;
  transition: width 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--eh-bar-delay, 0s);
}

.eh-chart--ready:not(.is-inview) .eh-bar--h .eh-bar__fill {
  width: 0;
}

.eh-chart.is-inview .eh-bar--h .eh-bar__fill {
  width: calc(var(--eh-bar-n, 0) * 1%);
  transform: none;
}

/* About family */
.eh-about,
.eh-about .wp-block-post-content {
  max-width: none;
  padding: 0;
  margin: 0;
}

.eh-about-body > *:not(.alignfull) {
  width: min(100% - 3rem, 45rem);
  margin-inline: auto;
}

.eh-about-body h2.wp-block-heading {
  font-family: var(--eh-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 2.35rem auto 0.35rem;
}

.eh-about-body h2.wp-block-heading + p {
  color: var(--eh-teal-deeper);
  font-size: 0.95rem;
  margin-top: 0;
}

.eh-about-body > *:not(.alignfull):first-child,
.eh-about-body > .eh-jump,
.eh-about-body > .wp-block-html:first-child {
  margin-top: 0;
}

.eh-about-body > *:not(.alignfull):last-child {
  margin-bottom: 3.5rem;
}

.eh-about-body > .wp-block-html:has(.eh-jump),
.eh-about-body > .wp-block-html:has(.eh-model),
.eh-about-body > .wp-block-html:has(.eh-pillars),
.eh-about-body > .wp-block-html:has(.eh-video-block),
.eh-about-body > .wp-block-html:has(.eh-mark),
.eh-about-body > .wp-block-html:has(.eh-partners),
.eh-about-body > .wp-block-html:has(.eh-tour) {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.eh-about-body .eh-split__panel > p:not(.eh-lede) {
  margin: 1.25rem 0 0;
}

.eh-about-body .wp-block-buttons {
  margin: 2rem auto 3.5rem;
}

.eh-model,
.eh-pillars,
.eh-video-block,
.eh-partners,
.eh-tour,
.eh-mark {
  scroll-margin-top: calc(var(--eh-header-h) + env(safe-area-inset-top, 0px) + 0.75rem);
}

.eh-model,
.eh-pillars,
.eh-video-block,
.eh-partners,
.eh-tour {
  padding: 5rem 0;
}

.eh-model {
  background: var(--eh-bg-alt);
}

.eh-model .eh-section-title,
.eh-pillars .eh-section-title,
.eh-video-block .eh-section-title,
.eh-partners .eh-section-title,
.eh-tour .eh-section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  max-width: 40rem;
}

.eh-model__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.eh-model__lane {
  background: var(--eh-white);
  border-radius: var(--eh-radius-xl);
  padding: 1.5rem 1.25rem 1.75rem;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--eh-ink) 8%, transparent);
}

@media (min-width: 640px) {
  .eh-model__lane {
    padding: 2rem 2rem 2.15rem;
  }
}

.eh-model__lane--direct {
  background: var(--eh-teal-light);
  box-shadow: none;
}

@media (min-width: 900px) {
  .eh-model__lane--direct {
    display: grid;
    grid-template-columns: 11rem 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 1.5rem;
    align-items: center;
  }

  .eh-model__lane--direct .eh-model__brand {
    grid-row: 1 / span 3;
    grid-column: 1;
    padding-right: 1.5rem;
    border-right: 1px solid color-mix(in srgb, var(--eh-teal) 25%, transparent);
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .eh-model__lane--direct .eh-model__lane-kicker {
    grid-column: 2;
  }

  .eh-model__lane--direct .eh-model__lane-title {
    grid-column: 2;
  }

  .eh-model__lane--direct .eh-model__flow {
    grid-column: 2;
  }
}

.eh-model__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.25rem;
}

.eh-model__brand img {
  width: 2.25rem;
  height: auto;
}

.eh-model__brand span {
  font-family: var(--eh-heading);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--eh-navy);
}

.eh-model__lane-kicker {
  margin: 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--eh-muted);
}

.eh-model__lane--direct .eh-model__lane-kicker {
  color: var(--eh-teal-deeper);
}

.eh-model__lane-title {
  font-family: var(--eh-heading);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0.2rem 0 1.25rem;
  color: var(--eh-ink);
}

.eh-model__flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

@media (min-width: 768px) {
  .eh-model__flow {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.eh-model__flow li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  padding: 0.65rem 0;
}

@media (min-width: 768px) {
  .eh-model__flow li {
    flex: 1 1 0;
    flex-direction: column;
    text-align: center;
    padding: 0 0.35rem;
    gap: 0.65rem;
  }
}

.eh-model__flow li + li::before {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  left: 1.05rem;
  top: -0.15rem;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

@media (min-width: 768px) {
  .eh-model__flow li + li::before {
    left: -0.45rem;
    top: 1.15rem;
    width: 0.9rem;
    height: 0.9rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 6 6 6-6 6'/%3E%3C/svg%3E");
  }

  .eh-model__lane--direct .eh-model__flow li + li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23007a99' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 6 6 6-6 6'/%3E%3C/svg%3E");
  }
}

.eh-model__icon {
  width: 2.85rem;
  height: 2.85rem;
  flex: 0 0 2.85rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--eh-bg-alt);
  color: var(--eh-navy);
}

.eh-model__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.eh-model__lane--direct .eh-model__icon {
  background: var(--eh-white);
  color: var(--eh-teal-deeper);
}

.eh-model__icon--accent {
  background: var(--eh-teal) !important;
  color: var(--eh-white) !important;
}

.eh-model__label {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--eh-ink);
}

.eh-pillars {
  background: var(--eh-bg);
}

.eh-pillars__intro {
  max-width: 48rem;
  color: var(--eh-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 1.25rem 0 0;
}

.eh-pillars__grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .eh-pillars__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.eh-pillar {
  background: var(--eh-white);
  border-radius: var(--eh-radius-lg);
  padding: 1.5rem 1.35rem 1.4rem;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--eh-ink) 8%, transparent);
}

@media (min-width: 640px) {
  .eh-pillar {
    padding: 1.75rem 1.6rem 1.6rem;
  }
}

.eh-pillar h3 {
  font-family: var(--eh-heading);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.eh-pillar p {
  margin: 0;
  color: var(--eh-muted);
  font-size: 0.975rem;
  line-height: 1.7;
}

.eh-benefits {
  margin-top: 2.5rem;
  background: var(--eh-teal-light);
  border-radius: var(--eh-radius-xl);
  padding: 1.75rem 1.5rem;
}

@media (min-width: 640px) {
  .eh-benefits {
    padding: 2.25rem 2.25rem;
  }
}

.eh-benefits h3 {
  font-family: var(--eh-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.eh-benefits p {
  margin: 0;
  color: var(--eh-navy);
  line-height: 1.75;
  max-width: 58rem;
}

.eh-pillars__close {
  margin: 2.25rem 0 0;
  max-width: 42rem;
  font-family: var(--eh-heading);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: var(--eh-ink);
}

.eh-video-block {
  background: var(--eh-bg-alt);
}

.eh-video,
.eh-streetview {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--eh-radius-xl);
  overflow: hidden;
  background: var(--eh-navy);
  box-shadow: 0 0 0 1px var(--eh-border);
  margin-top: 2rem;
}

.eh-video iframe,
.eh-streetview iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.eh-mark {
  padding: 3rem 0 4.5rem;
  background: var(--eh-bg);
}

.eh-mark h2 {
  font-family: var(--eh-heading);
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.65rem;
  color: var(--eh-ink);
}

.eh-mark p {
  margin: 0;
  max-width: 48rem;
  color: var(--eh-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.eh-partners {
  background: var(--eh-bg);
}

.eh-partners__grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .eh-partners__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.eh-partner {
  background: var(--eh-white);
  border-radius: var(--eh-radius-lg);
  padding: 1.6rem 1.45rem 1.35rem;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--eh-ink) 8%, transparent);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eh-partner h3 {
  font-family: var(--eh-heading);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.3;
}

.eh-partner p {
  margin: 0;
  color: var(--eh-muted);
  font-size: 0.975rem;
  line-height: 1.7;
}

.eh-partner a {
  font-weight: 500;
  text-decoration: none;
  color: var(--eh-teal-deeper);
}

.eh-partner a:hover,
.eh-partner a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.eh-tour {
  background: var(--eh-bg);
  padding-bottom: 2rem;
}

.eh-tour__note {
  margin: 1.25rem 0 0;
  color: var(--eh-muted);
  max-width: 42rem;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .eh-bar__fill,
  .eh-bar__value {
    transition: none !important;
  }

  .eh-chart .eh-bar__fill,
  .eh-chart--ready:not(.is-inview) .eh-bar:not(.eh-bar--h) .eh-bar__fill {
    transform: scaleY(1);
  }

  .eh-chart .eh-bar--h .eh-bar__fill,
  .eh-chart--ready:not(.is-inview) .eh-bar--h .eh-bar__fill {
    width: calc(var(--eh-bar-n, 0) * 1%);
    transform: none;
  }

  .eh-chart .eh-bar__value {
    opacity: 1;
  }
}

/* Contact */
.eh-contact,
.eh-contact .wp-block-post-content {
  max-width: none;
  padding: 0;
  margin: 0;
}

.eh-contact-body > *:not(.alignfull) {
  width: min(100% - 3rem, 45rem);
  margin-inline: auto;
}

.eh-contact-body > .wp-block-html:has(.eh-offices) {
  width: min(100% - 3rem, var(--eh-max)) !important;
  max-width: none !important;
  margin: 0 auto 0.5rem !important;
}

.eh-contact-body h2.wp-block-heading {
  font-family: var(--eh-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 2.35rem auto 0.5rem;
}

.eh-contact-body > *:not(.alignfull):last-child {
  margin-bottom: 3.5rem;
}

.eh-contact .eh-clinic {
  padding-top: 0.5rem;
}

#book-a-consultation,
#eh-form,
#membership {
  scroll-margin-top: calc(var(--eh-header-h) + env(safe-area-inset-top, 0px) + 1rem);
}

.eh-offices {
  display: grid;
  gap: 1.25rem;
  margin: 0.5rem 0 2rem;
}

@media (min-width: 800px) {
  .eh-offices {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.eh-office {
  background: var(--eh-bg-alt);
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius-lg);
  padding: 1.5rem 1.4rem 1.35rem;
}

.eh-office h2 {
  font-family: var(--eh-heading);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}

.eh-office p {
  margin: 0.35rem 0 0;
  line-height: 1.6;
}

.eh-office__label {
  margin: 1.1rem 0 0.35rem !important;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eh-teal);
}

.eh-office__hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.eh-office__hours th,
.eh-office__hours td {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--eh-border);
  text-align: left;
  font-weight: 400;
}

.eh-office__hours th {
  width: 42%;
  color: var(--eh-ink);
}

.eh-office__hours td {
  color: var(--eh-muted);
}

.eh-office__phone {
  display: inline-flex;
  margin-top: 0.35rem;
  font-weight: 600;
}
