:root {
  --bone: var(--e-global-color-harmbone, #f7f4ed);
  --paper: var(--e-global-color-harmpaper, #fffdf8);
  --ink: var(--e-global-color-primary, #183036);
  --ink-soft: var(--e-global-color-text, #455d62);
  --blue: var(--e-global-color-secondary, #276779);
  --blue-deep: var(--e-global-color-harmblue, #1c4c59);
  --sea: var(--e-global-color-harmsea, #81a8a0);
  --mist: var(--e-global-color-harmmist, #dbe8e2);
  --brass: var(--e-global-color-accent, #b17d36);
  --clay: var(--e-global-color-harmclay, #ad5945);
  --line: rgba(24, 48, 54, 0.18);
  --line-light: rgba(255, 253, 248, 0.25);
  --shadow: 0 22px 55px rgba(24, 48, 54, 0.1);
  --font-display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --shell: min(1440px, calc(100% - 9vw));
}

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

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

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
a,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

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

:target {
  scroll-margin-top: 7rem;
}

::selection {
  background: var(--mist);
  color: var(--ink);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.4rem, 6.2vw, 6.9rem);
}

h2 {
  font-size: clamp(2.35rem, 4.15vw, 4.8rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2.15rem);
}

p {
  color: var(--ink-soft);
}

main :is(p, li, address) a:not(.button):not(.text-link) {
  color: var(--blue);
  text-decoration-line: underline;
}

main :is(p, li, address) a:not(.button):not(.text-link):hover {
  color: var(--blue-deep);
  text-decoration-thickness: 2px;
}

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

.section-pad {
  padding-block: clamp(5rem, 9vw, 9.5rem);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.35rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.8rem;
  height: 1px;
  background: var(--brass);
  content: "";
}

.eyebrow-light {
  color: var(--mist);
}

.section-heading {
  max-width: 810px;
}

.section-heading h2 {
  margin-bottom: 1.4rem;
}

.section-heading > p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading-center .eyebrow {
  justify-content: center;
}

.section-heading-center > p:last-child {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.elementor-button:focus-visible {
  outline-color: var(--brass);
  outline-offset: 4px;
}

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

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

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

.button-blue:hover {
  background: var(--blue-deep);
}

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

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

.button-outline-light {
  border-color: rgba(255, 253, 248, 0.65);
  color: var(--paper);
}

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

.text-link {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link-light {
  color: var(--paper);
}

.utility-bar {
  background: var(--ink);
  color: var(--paper);
}

.utility-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.utility-inner p,
.utility-inner a {
  margin: 0;
  color: var(--paper);
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.utility-inner a {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
}

.utility-actions {
  display: flex;
  gap: 2rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 237, 0.96);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: 94px;
  align-items: center;
  grid-template-columns: 230px 1fr auto;
  gap: clamp(1rem, 2vw, 2rem);
}

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

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand span {
  display: grid;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand small {
  margin-top: 0.22rem;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 1.7vw, 2rem);
}

.desktop-nav > a,
.nav-trigger {
  position: relative;
  display: inline-flex;
  min-height: 94px;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav > a::after,
.nav-trigger::after {
  position: absolute;
  right: 0;
  bottom: 1.55rem;
  left: 0;
  height: 1px;
  background: var(--brass);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.nav-trigger:hover::after,
.nav-trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.nav-trigger > .nav-chevron {
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: var(--blue);
  transform: translateY(-0.14rem) rotate(45deg);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-trigger[aria-expanded="true"] > .nav-chevron {
  transform: translateY(0.14rem) rotate(225deg);
}

.nav-dropdown {
  position: static;
}

.nav-panel {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 50%;
  width: min(1040px, calc(100vw - 4rem));
  padding: clamp(1.6rem, 3vw, 2.8rem);
  border-top: 3px solid var(--brass);
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(24, 48, 54, 0.18);
  transform: translateX(-50%);
  animation: menu-reveal 170ms ease both;
}

@keyframes menu-reveal {
  from {
    opacity: 0;
    transform: translate(-50%, -8px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.nav-panel-intro {
  display: grid;
  align-items: end;
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
}

.nav-panel-intro h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.6rem);
}

.nav-panel-intro > a {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.nav-panel-services .nav-panel-links {
  grid-template-columns: repeat(4, 1fr);
}

.nav-panel-links a {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav-panel-links a:nth-child(3n) {
  border-right: 0;
}

.nav-panel-services .nav-panel-links a:nth-child(3n) {
  border-right: 1px solid var(--line);
}

.nav-panel-services .nav-panel-links a:nth-child(4n) {
  border-right: 0;
}

.nav-panel-links a:hover {
  background: var(--mist);
  color: var(--blue);
}

.nav-panel-links a span {
  color: var(--blue);
  font-family: var(--font-body);
  font-size: 0.8rem;
}

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

.header-actions .button {
  min-height: 48px;
  padding-inline: 1rem;
  white-space: nowrap;
}

.button-call {
  border: 1px solid var(--blue);
  background: transparent;
  color: var(--blue);
}

.button-call:hover {
  background: var(--blue);
  color: var(--paper);
}

.header-book {
  min-width: 172px;
}

.mobile-menu-toggle {
  display: none;
}

.mobile-menu-panel {
  position: absolute;
  z-index: 30;
  top: 100%;
  right: 0;
  left: 0;
  max-height: calc(100vh - 78px);
  border-top: 3px solid var(--brass);
  background:
    linear-gradient(135deg, rgba(219, 232, 226, 0.55), transparent 45%),
    var(--paper);
  box-shadow: 0 34px 70px rgba(24, 48, 54, 0.2);
  overflow-y: auto;
  animation: mobile-menu-reveal 190ms ease both;
}

@keyframes mobile-menu-reveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu-inner {
  width: min(100% - 2rem, 760px);
  margin-inline: auto;
  padding: 2rem 0 2.5rem;
}

.mobile-menu-intro {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-intro p:last-child {
  max-width: 520px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.15;
}

.mobile-accordion {
  border-bottom: 1px solid var(--line);
}

.mobile-accordion > button,
.mobile-primary-link {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-align: left;
  text-decoration: none;
}

.mobile-accordion > button i {
  color: var(--blue);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: normal;
}

.mobile-accordion-links {
  display: grid;
  padding: 0 0 1.2rem 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-accordion-links a {
  padding: 0.65rem 1rem 0.65rem 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-decoration: none;
}

.mobile-accordion-links a:hover {
  color: var(--blue);
}

.mobile-menu-actions {
  display: grid;
  margin-top: 1.8rem;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.mobile-menu-actions .button {
  width: 100%;
}

.home-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.58), transparent 55%),
    var(--bone);
}

.home-hero-grid {
  display: grid;
  min-height: min(740px, calc(100vh - 130px));
  align-items: stretch;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 8vw, 7.5rem) clamp(2rem, 6vw, 6.5rem) 4rem 0;
  flex-direction: column;
}

.hero-copy h1 {
  max-width: 920px;
  margin-bottom: 2rem;
}

.hero-copy h1 em {
  color: var(--clay);
  font-weight: 400;
}

.hero-lede {
  max-width: 770px;
  margin-bottom: 2.25rem;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.call-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.call-link span {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid var(--sea);
  border-radius: 50%;
  place-items: center;
}

.hero-note {
  max-width: 610px;
  margin-top: 3.4rem;
  padding: 1.2rem 0 0 1.2rem;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--brass);
}

.hero-note p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.hero-note strong {
  display: block;
  color: var(--ink);
}

.hero-media {
  position: relative;
  min-height: 660px;
  background: var(--mist);
}

.hero-photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-photo-wrap::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(24, 48, 54, 0.22)),
    linear-gradient(90deg, rgba(219, 232, 226, 0.34), transparent 42%);
  content: "";
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: grid;
  min-width: 260px;
  padding: 1.45rem 1.6rem;
  background: rgba(255, 253, 248, 0.94);
  gap: 0.1rem;
}

.hero-caption p,
.hero-caption small {
  margin: 0;
}

.hero-caption p {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.hero-caption small {
  color: var(--blue);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  min-height: 130px;
  grid-template-columns: 1.1fr repeat(4, 1fr);
}

.trust-intro,
.trust-item {
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--line);
}

.trust-intro p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 0.98;
}

.trust-intro {
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.trust-item {
  justify-content: center;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  font-size: 0.82rem;
}

.trust-item small {
  margin-top: 0.22rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.35;
}

.independent-section {
  background: var(--paper);
}

.independent-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(4rem, 8vw, 9rem);
}

.image-stack {
  position: relative;
  min-height: 650px;
}

.image-stack::before {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 56%;
  height: 52%;
  border: 1px solid var(--brass);
  content: "";
}

.image-stack-main {
  position: absolute;
  width: 92%;
  height: 92%;
  object-fit: cover;
}

.image-stack-card {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 320px;
  padding: 2rem;
  background: var(--blue);
  box-shadow: var(--shadow);
  color: var(--paper);
}

.image-stack-card strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
}

.image-stack-card p {
  margin: 0.7rem 0 0;
  color: var(--mist);
  font-size: 0.87rem;
}

.independent-copy .section-heading {
  margin-bottom: 2.2rem;
}

.principle-list {
  margin-bottom: 2rem;
  border-top: 1px solid var(--line);
}

.principle-list > div {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.principle-list p {
  margin: 0;
  color: var(--ink);
}

.services-showcase {
  border-block: 1px solid var(--line);
  background: var(--bone);
}

.section-topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.service-gallery {
  display: grid;
  min-height: 530px;
  grid-template-columns: repeat(4, 1fr);
}

.service-gallery-card {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 2rem 1.7rem 1.7rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid var(--line-light);
  color: var(--paper);
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.service-gallery-card:last-child {
  border-right: 0;
}

.service-gallery-card:hover {
  z-index: 1;
  filter: brightness(1.06);
  transform: translateY(-6px);
}

.service-gallery-blue {
  background: var(--blue);
}

.service-gallery-sage {
  background: #587a72;
}

.service-gallery-clay {
  background: var(--clay);
}

.service-gallery-ink {
  background: var(--ink);
}

.service-gallery-card > div {
  display: flex;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
}

.service-gallery-card h3 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.1rem, 3.5vw, 4.1rem);
}

.service-gallery-card p {
  color: var(--paper);
  font-size: 0.88rem;
  line-height: 1.75;
}

.service-gallery-card strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 253, 248, 0.3);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: auto;
}

.service-gallery-card .eyebrow {
  color: var(--paper);
}

.service-gallery-card .eyebrow::before {
  background: rgba(255, 253, 248, 0.5);
}

.service-quicklinks {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.service-quicklinks a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.specials-section {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 8%, rgba(183, 138, 75, 0.16), transparent 28%),
    var(--mist);
}

.specials-section .section-heading {
  max-width: 980px;
}

.specials-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.specials-grid article {
  display: flex;
  min-height: 390px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.76);
  flex-direction: column;
}

.specials-grid article:nth-child(2) {
  background: var(--blue);
  color: var(--paper);
}

.specials-grid article:nth-child(2) p {
  color: rgba(255, 253, 248, 0.78);
}

.specials-grid article:nth-child(2) .text-link {
  color: var(--paper);
}

.special-badge {
  width: fit-content;
  padding: 0.45rem 0.7rem;
  border: 1px solid currentColor;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.specials-grid article:nth-child(2) .special-badge {
  color: var(--mist);
}

.specials-grid h3 {
  max-width: 650px;
  margin: 2.5rem 0 1rem;
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
}

.specials-grid p {
  max-width: 680px;
}

.specials-grid .text-link {
  margin-top: auto;
  padding-top: 1.5rem;
}

.specials-note {
  max-width: 860px;
  margin: 1.2rem 0 0;
  font-size: 0.74rem;
}

.doctor-feature {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.doctor-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(4rem, 8vw, 9rem);
}

.doctor-copy h2 {
  max-width: 760px;
  margin-bottom: 2rem;
}

.doctor-copy > p {
  max-width: 690px;
  color: rgba(255, 253, 248, 0.78);
}

.doctor-quote {
  color: var(--paper) !important;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.35;
}

.doctor-facts {
  display: flex;
  gap: 0.7rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.doctor-facts span {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line-light);
  color: var(--mist);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.doctor-photo {
  position: relative;
  min-height: 680px;
}

.doctor-photo img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

.doctor-photo span {
  position: absolute;
  right: -2.2rem;
  bottom: 4rem;
  padding: 1.2rem 1.6rem;
  background: var(--paper);
  color: var(--clay);
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.community-section {
  overflow: hidden;
  background: var(--mist);
}

.community-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(2rem, 5vw, 6rem);
}

.community-grid h2 {
  margin-bottom: 1.6rem;
}

.community-lede {
  font-size: 1.12rem;
}

.fine-print {
  font-size: 0.76rem;
  line-height: 1.55;
}

.community-logo-card {
  padding: 2.4rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.community-logo-card img {
  width: 100%;
  height: auto;
}

.community-logo-card p {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.05;
}

.veteran-section {
  background: var(--blue);
  color: var(--paper);
}

.veteran-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(4rem, 8vw, 10rem);
}

.veteran-title h2 {
  max-width: 620px;
}

.veteran-copy > p {
  max-width: 760px;
  color: rgba(255, 253, 248, 0.8);
  font-size: 1.12rem;
}

.va-steps {
  display: grid;
  margin: 2.6rem 0;
  border-block: 1px solid var(--line-light);
  grid-template-columns: repeat(3, 1fr);
}

.va-steps > div {
  padding: 1.5rem;
  border-right: 1px solid var(--line-light);
}

.va-steps > div:last-child {
  border-right: 0;
}

.va-steps h3 {
  margin: 0 0 0.6rem;
  font-size: 1.55rem;
}

.va-steps p {
  margin: 0;
  color: rgba(255, 253, 248, 0.8);
  font-size: 0.82rem;
}

.fine-print-light {
  color: rgba(255, 253, 248, 0.8) !important;
}

.journey-section {
  background: var(--paper);
}

.journey-grid {
  display: grid;
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.journey-step {
  min-height: 290px;
  padding: 1.7rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-step h3,
.journey-step h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
}

.journey-step p {
  margin: 0;
  font-size: 0.88rem;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.technology-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--bone);
}

.technology-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.88fr;
  gap: clamp(4rem, 8vw, 9rem);
}

.technology-grid h2 {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.technology-grid > div:first-child > p:not(.eyebrow) {
  max-width: 650px;
}

.technology-list {
  display: grid;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.technology-list > div {
  display: grid;
  padding: 1rem 1rem 1rem 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 34px 1fr;
}

.technology-list > div:nth-child(even) {
  padding-left: 1rem;
  border-right: 0;
}

.technology-list span {
  color: var(--brass);
}

.technology-list p {
  margin: 0;
  font-size: 0.79rem;
}

.technology-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.85rem;
}

.technology-photo {
  position: relative;
}

.technology-photo::before {
  position: absolute;
  z-index: 1;
  top: -2rem;
  right: -2rem;
  width: 130px;
  height: 130px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  content: "";
}

.technology-photo img {
  width: 100%;
  height: clamp(380px, 38vw, 500px);
  object-fit: cover;
  object-position: center 54%;
}

.technology-photo p {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 280px;
  margin: 0;
  padding: 1.5rem;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.1;
}

.review-section {
  background: var(--paper);
}

.review-carousel {
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(219, 232, 226, 0.5), transparent 45%),
    var(--paper);
}

.review-viewport {
  min-height: 390px;
}

.review-viewport blockquote {
  display: flex;
  min-height: 390px;
  margin: 0;
  padding: clamp(2.2rem, 5vw, 5rem);
  flex-direction: column;
  animation: review-reveal 260ms ease both;
}

@keyframes review-reveal {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.review-viewport blockquote p {
  max-width: 1100px;
  margin-bottom: auto;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 1.25;
}

.review-attribution {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-attribution span {
  color: var(--brass);
  letter-spacing: 0.17em;
}

.review-controls {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem 1rem clamp(2.2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

.review-dots,
.review-arrows {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.review-dots button {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.review-dots button::before {
  width: 9px;
  height: 9px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: transparent;
  content: "";
}

.review-dots button.is-active::before {
  background: var(--blue);
}

.review-arrows button {
  display: grid;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--blue);
  cursor: pointer;
  font-size: 1.2rem;
  place-items: center;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.review-arrows button:hover {
  background: var(--blue);
  color: var(--paper);
}

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

.financial-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 7vw, 8rem);
}

.finance-cards {
  display: grid;
  border-top: 1px solid var(--line);
}

.finance-cards a {
  display: grid;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.7fr 1.15fr auto;
  gap: 1.2rem;
  text-decoration: none;
}

.finance-cards a:hover h3 {
  color: var(--blue);
}

.finance-cards h3 {
  margin: 0;
  font-size: 1.55rem;
  transition: color 180ms ease;
}

.finance-cards p {
  margin: 0;
  font-size: 0.82rem;
}

.finance-cards strong {
  align-self: center;
  color: var(--blue);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.office-section {
  background: var(--bone);
}

.office-gallery {
  display: grid;
  min-height: 670px;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 0.7rem;
}

.office-gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.office-gallery-large {
  grid-row: 1 / 3;
}

.office-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.office-gallery figure:hover img {
  transform: scale(1.02);
}

.office-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.appointment-band {
  padding-block: clamp(4rem, 7vw, 7rem);
  background: var(--blue);
  color: var(--paper);
}

.appointment-band-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.appointment-band h2 {
  margin-bottom: 1.2rem;
}

.appointment-band p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.78);
}

.appointment-band-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.footer-map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.72) contrast(0.96);
}

.footer-map-card {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: max(4.5vw, calc((100% - 1440px) / 2));
  width: min(470px, calc(100% - 2rem));
  padding: clamp(2rem, 4vw, 3.5rem);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 28px 70px rgba(24, 48, 54, 0.2);
  transform: translateY(-50%);
}

.footer-map-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
}

.footer-map-card > p:not(.eyebrow) {
  max-width: 380px;
}

.footer-map-card > div {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.site-footer {
  padding-top: 5.5rem;
  background: var(--ink);
  color: var(--paper);
}

.footer-lead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line-light);
}

.footer-lead h2 {
  max-width: 760px;
  margin: 0;
}

.footer-lead-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-grid {
  display: grid;
  padding-block: 4rem;
  grid-template-columns: 1.5fr repeat(3, 0.75fr);
  gap: 4rem;
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 253, 248, 0.65);
  font-size: 0.85rem;
}

.brand-light {
  margin-bottom: 1.6rem;
  color: var(--paper);
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-grid h3 {
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid > div:not(.footer-brand) p {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  margin-bottom: 0.55rem;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.78rem;
  line-height: 1.45;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.68rem;
  text-decoration: none;
}

.footer-bottom a {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
}

.footer-bottom nav {
  display: flex;
  gap: 1.3rem;
}

.mobile-conversion-bar {
  display: none;
}

.breadcrumbs {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 3rem;
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  flex-wrap: wrap;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs > span {
  display: inline-flex;
  gap: 0.65rem;
}

.internal-hero {
  padding-block: clamp(4rem, 7vw, 7rem);
  overflow: hidden;
}

.internal-hero-blue {
  background: var(--mist);
}

.internal-hero-sage {
  background: #e3e8df;
}

.internal-hero-clay {
  background: #f1dfd8;
}

.internal-hero-ink {
  background: #d7e1df;
}

.internal-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  gap: clamp(4rem, 8vw, 10rem);
}

.internal-hero h1 {
  max-width: 970px;
  margin-bottom: 1.8rem;
  font-size: clamp(3.4rem, 5.8vw, 6.5rem);
}

.internal-lede {
  max-width: 760px;
  margin-bottom: 2.4rem;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.internal-hero figure {
  position: relative;
  min-height: 620px;
  margin: 0;
}

.internal-hero figure::before {
  position: absolute;
  z-index: 1;
  top: -2rem;
  right: -2rem;
  width: 170px;
  height: 170px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  content: "";
}

.internal-hero figure img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.internal-hero figure figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: var(--paper);
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.service-overview-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(4rem, 9vw, 11rem);
}

.service-overview h2 {
  max-width: 620px;
}

.large-copy {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.65rem);
  line-height: 1.35;
}

.treatment-options {
  background: var(--bone);
}

.treatment-grid {
  display: grid;
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.treatment-grid article {
  min-height: 315px;
  padding: 1.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.treatment-grid h3 {
  margin: 0 0 1.2rem;
}

.treatment-grid p {
  margin: 0;
  font-size: 0.85rem;
}

.benefit-section {
  background: var(--ink);
  color: var(--paper);
}

.benefit-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(4rem, 9vw, 10rem);
}

.benefit-grid > div:first-child > p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.7);
}

.benefit-list {
  border-top: 1px solid var(--line-light);
}

.benefit-list > div {
  display: grid;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 50px 1fr;
}

.benefit-list span {
  color: var(--brass);
}

.benefit-list p {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.expectations-section {
  background: var(--paper);
}

.expectations-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(4rem, 8vw, 9rem);
}

.expectations-photo img {
  width: 100%;
  min-height: 660px;
  object-fit: cover;
}

.expectations-grid ol {
  margin: 2.4rem 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.expectations-grid li {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.expectations-grid h3 {
  margin-top: 2.5rem;
  font-size: 1.7rem;
}

.tag-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag-list span {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(4rem, 9vw, 10rem);
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.55rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--blue);
  content: "+";
  font-family: var(--font-body);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 780px;
  padding: 0 2.5rem 1.6rem 0;
}

.related-section {
  background: var(--bone);
}

.related-grid {
  display: grid;
  margin-top: 3rem;
  grid-template-columns: repeat(3, 1fr);
}

.related-grid a {
  min-height: 280px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  text-decoration: none;
}

.related-grid a + a {
  border-left: 0;
}

.related-grid span {
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-grid h3 {
  margin: 5rem 0 2rem;
}

.related-grid strong {
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-section {
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 6vw, 7rem);
}

.values-section {
  background: var(--bone);
}

.values-grid {
  display: grid;
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.values-grid article {
  min-height: 310px;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-grid h3 {
  margin: 0 0 1rem;
}

.values-grid p {
  margin: 0;
  font-size: 0.84rem;
}

.about-doctor {
  background: var(--paper);
}

.about-doctor-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(4rem, 9vw, 10rem);
}

.about-doctor-grid > img {
  width: 100%;
  max-height: 780px;
  object-fit: cover;
}

.about-doctor-grid h2 {
  margin-bottom: 1.6rem;
}

.community-about,
.leadership-section,
.new-patient-section {
  background: var(--blue);
  color: var(--paper);
}

.community-about-grid,
.leadership-grid,
.new-patient-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(4rem, 8vw, 9rem);
}

.community-about p:not(.eyebrow),
.leadership-section p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.1rem;
}

.bio-section {
  background: var(--paper);
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: clamp(4rem, 9vw, 10rem);
}

.bio-aside {
  position: sticky;
  top: 2rem;
  align-self: start;
  padding: 2rem;
  background: var(--mist);
}

.bio-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bio-aside li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.bio-copy > * {
  max-width: 790px;
}

.bio-copy > p {
  font-size: 1.02rem;
}

.bio-copy blockquote {
  margin: 3rem 0;
  padding: 2.2rem 0 2.2rem 2rem;
  border-left: 2px solid var(--brass);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  line-height: 1.3;
}

.bio-copy h3 {
  margin-top: 3.5rem;
}

.leadership-grid ul,
.new-patient-grid ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.leadership-grid li,
.new-patient-grid li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--paper);
}

.team-values {
  background: var(--paper);
}

.resource-center {
  background: var(--paper);
}

.resource-grid {
  display: grid;
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.resource-grid > a {
  display: flex;
  min-height: 340px;
  padding: 1.7rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  text-decoration: none;
  transition: background 180ms ease;
}

.resource-grid > a:hover {
  background: var(--mist);
}

.resource-grid h2 {
  margin: 0 0 1rem;
  font-size: 2.4rem;
}

.resource-grid p {
  font-size: 0.86rem;
}

.resource-grid strong {
  margin-top: auto;
  color: var(--blue);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insurance-process {
  background: var(--paper);
}

.insurance-notice {
  display: grid;
  margin-top: 2rem;
  padding: 1.4rem;
  border: 1px solid var(--brass);
  grid-template-columns: 160px 1fr;
}

.insurance-notice strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.insurance-notice p {
  margin: 0;
  font-size: 0.83rem;
}

.financing-options {
  background: var(--mist);
}

.financing-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(4rem, 8vw, 9rem);
}

.financing-grid > div:last-child {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.financing-grid article {
  min-height: 380px;
  padding: 2rem;
  border: 1px solid var(--line);
}

.financing-grid article + article {
  border-left: 0;
}

.financing-grid article h2 {
  margin: 0 0 1rem;
  font-size: 2.5rem;
}

.membership-section {
  background: var(--paper);
}

.membership-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(4rem, 8vw, 9rem);
}

.membership-grid ul {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.membership-grid li {
  min-height: 130px;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.membership-grid li:nth-child(even) {
  border-right: 0;
}

.contact-options {
  background: var(--paper);
}

.contact-options-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.contact-options-grid > a {
  display: flex;
  min-height: 300px;
  padding: 1.7rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  text-decoration: none;
}

.contact-options-grid > a:hover {
  background: var(--mist);
}

.contact-options-grid h2 {
  margin: 0 0 1rem;
  font-size: 2.5rem;
}

.contact-options-grid p {
  margin-bottom: 1rem;
  font-size: 0.86rem;
}

.contact-options-grid strong {
  margin-top: auto;
  color: var(--blue);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail {
  background: var(--mist);
}

.contact-detail-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(4rem, 9vw, 10rem);
}

.contact-info address {
  display: flex;
  margin: 2rem 0;
  font-style: normal;
  flex-direction: column;
}

.contact-info address a {
  width: fit-content;
  margin-bottom: 0.6rem;
  color: var(--blue);
}

.hours {
  border-top: 1px solid var(--line);
}

.hours > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
}

.va-contact {
  margin-top: 2rem;
  padding: 1.2rem;
  background: var(--blue);
  color: var(--paper);
}

.va-contact p {
  margin: 0.5rem 0 0;
  color: var(--mist);
  font-size: 0.8rem;
}

.contact-form-card {
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  margin-bottom: 1.2rem;
}

.form-warning {
  margin: 1.5rem 0;
  padding: 1rem;
  border-left: 2px solid var(--brass);
  background: var(--bone);
  font-size: 0.78rem;
}

.contact-form-card small {
  display: block;
  margin-top: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.contact-form-card-embedded {
  padding: clamp(1.5rem, 3vw, 2.8rem);
}

.leadconnector-form-wrap {
  min-height: 660px;
  margin-top: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.leadconnector-form-wrap iframe {
  display: block;
  width: 100%;
  min-height: 660px;
  border: 0;
  background: var(--paper);
}

.arrival-section {
  background: var(--paper);
}

.arrival-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(4rem, 8vw, 9rem);
}

.arrival-grid img {
  width: 100%;
}

.featured-journal {
  background: var(--paper);
}

.featured-journal-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
}

.featured-journal-art {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--ink);
}

.featured-journal-art img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.featured-journal-art span {
  position: absolute;
  z-index: 1;
  top: 1.4rem;
  left: 1.4rem;
  padding: 0.55rem 0.7rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-journal-grid > div:last-child {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.featured-journal-grid h2 {
  margin-bottom: 1.5rem;
}

.journal-section {
  background: var(--bone);
}

.journal-controls {
  display: grid;
  margin: 3rem 0 1rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1rem;
}

.journal-controls label {
  display: grid;
  gap: 0.45rem;
}

.journal-controls label span {
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-controls input,
.journal-controls select {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
}

.result-count {
  margin: 1.4rem 0;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.journal-card {
  display: flex;
  min-width: 0;
  background: var(--paper);
  flex-direction: column;
}

.journal-art {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: var(--mist);
}

.journal-art img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.journal-card:hover .journal-art img {
  transform: scale(1.035);
}

.journal-card-copy {
  display: flex;
  padding: 1.5rem;
  flex: 1;
  flex-direction: column;
}

.journal-card h2 {
  margin-bottom: 1rem;
  font-size: 1.9rem;
  line-height: 1.05;
}

.journal-card p:not(.eyebrow) {
  font-size: 0.82rem;
}

.journal-card .text-link {
  margin-top: auto;
}

.empty-result {
  padding: 3rem;
  border: 1px solid var(--line);
  text-align: center;
}

.empty-result h2 {
  font-size: 2.2rem;
}

.article-header {
  padding-block: clamp(4.5rem, 9vw, 9rem);
  background: var(--mist);
}

.article-header-inner {
  max-width: 1100px;
}

.article-header h1 {
  max-width: 1050px;
  margin-bottom: 2rem;
  font-size: clamp(3.2rem, 5.5vw, 6.4rem);
}

.article-deck {
  max-width: 820px;
  font-size: 1.18rem;
}

.article-meta {
  display: flex;
  gap: 1.4rem;
  margin-top: 2rem;
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  text-transform: uppercase;
}

.article-featured-image {
  height: clamp(320px, 48vw, 660px);
  margin-top: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
}

.article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  padding-block: clamp(4rem, 8vw, 8rem);
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.article-layout aside {
  position: sticky;
  top: 2rem;
  display: flex;
  align-self: start;
  padding: 1.4rem;
  border-top: 3px solid var(--brass);
  background: var(--bone);
  flex-direction: column;
}

.article-layout aside strong {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.article-layout aside a {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.75rem;
  text-decoration: none;
}

.article-body {
  min-width: 0;
}

.article-intro {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.45;
}

.article-body section {
  padding-block: 2.2rem;
  border-bottom: 1px solid var(--line);
}

.article-body h2 {
  margin-bottom: 1.3rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.article-body h3 {
  margin-top: 2rem;
}

.article-body p,
.article-body li {
  font-size: 1.02rem;
  line-height: 1.8;
}

.article-note {
  margin-top: 3rem;
  padding: 1.5rem;
  border-left: 3px solid var(--brass);
  background: var(--mist);
}

.article-note p {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
}

.legal-hero {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--mist);
}

.legal-hero h1 {
  margin-bottom: 1.5rem;
}

.legal-hero > .shell > p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.1rem;
}

.legal-hero small {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-body {
  background: var(--paper);
}

.legal-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 780px);
  justify-content: center;
  gap: clamp(4rem, 8vw, 8rem);
}

.legal-grid aside {
  position: sticky;
  top: 2rem;
  align-self: start;
  padding-top: 1.3rem;
  border-top: 3px solid var(--brass);
}

.legal-grid aside p,
.legal-grid aside a {
  font-size: 0.78rem;
}

.legal-grid > div > section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.legal-grid h2 {
  margin-bottom: 1rem;
  font-size: 2.3rem;
}

.legal-grid section p {
  margin: 0;
}

.legal-notice {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--brass);
}

.legal-notice p {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
}

.not-found {
  display: grid;
  min-height: 68vh;
  align-items: center;
  background: var(--mist);
}

.not-found > .shell {
  max-width: 860px;
  padding-block: 5rem;
  text-align: center;
}

.not-found > .shell > span {
  display: block;
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
}

.not-found .eyebrow {
  justify-content: center;
}

.not-found h1 {
  font-size: clamp(3.3rem, 6.2vw, 6.4rem);
}

.not-found p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 2rem;
}

.not-found > .shell > div {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 3.5rem, 1180px);
  }

  .desktop-nav {
    gap: 1rem;
  }

  .desktop-nav > a,
  .nav-trigger {
    font-size: 0.69rem;
  }

  .header-inner {
    grid-template-columns: 210px 1fr auto;
    gap: 1rem;
  }

  .header-book {
    min-width: auto;
    padding-inline: 1rem;
  }

  .header-actions .button {
    padding-inline: 0.85rem;
    font-size: 0.64rem;
  }

  .home-hero-grid {
    grid-template-columns: 1fr 0.78fr;
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 6.1vw, 5.6rem);
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-intro {
    display: none;
  }

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

  .service-gallery-card {
    min-height: 450px;
    border-bottom: 1px solid var(--line-light);
  }

  .community-grid {
    grid-template-columns: 1fr 0.72fr;
  }

  .finance-cards a {
    grid-template-columns: 0.75fr 1fr;
  }

  .finance-cards strong {
    grid-column: 1 / 3;
  }

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

@media (max-width: 1040px) {
  .utility-actions a:last-child,
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .mobile-menu-toggle {
    display: flex;
    min-width: 86px;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.73rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    border: 0;
    background: transparent;
    text-transform: uppercase;
  }

  .mobile-menu-toggle i,
  .mobile-menu-toggle i::before {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--ink);
    content: "";
    transition: transform 180ms ease;
  }

  .mobile-menu-toggle i::before {
    transform: translateY(6px);
  }

  .mobile-menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] i::before {
    transform: rotate(-90deg);
  }

  .home-hero-grid,
  .independent-grid,
  .doctor-grid,
  .community-grid,
  .veteran-grid,
  .technology-grid,
  .financial-grid,
  .appointment-band-grid,
  .internal-hero-grid,
  .service-overview-grid,
  .benefit-grid,
  .expectations-grid,
  .faq-grid,
  .about-doctor-grid,
  .community-about-grid,
  .leadership-grid,
  .new-patient-grid,
  .bio-grid,
  .financing-grid,
  .membership-grid,
  .contact-detail-grid,
  .arrival-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    width: 100%;
  }

  .hero-copy {
    width: var(--shell);
    margin-inline: auto;
    padding-right: 0;
  }

  .hero-media {
    min-height: 640px;
  }

  .image-stack {
    min-height: 570px;
  }

  .doctor-copy {
    order: 2;
  }

  .doctor-photo {
    width: min(620px, 100%);
  }

  .community-logo-card {
    max-width: 520px;
  }

  .veteran-grid,
  .technology-grid,
  .financial-grid,
  .appointment-band-grid,
  .faq-grid {
    gap: 3rem;
  }

  .appointment-band-actions {
    justify-content: flex-start;
  }

  .internal-hero figure {
    min-height: 560px;
  }

  .internal-hero figure img {
    height: 560px;
  }

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

  .bio-aside {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 2rem;
  }

  .financing-grid > div:last-child {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 2rem);
  }

  html {
    scroll-padding-top: 90px;
  }

  body {
    padding-bottom: 61px;
    font-size: 16px;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.6rem);
  }

  .section-pad {
    padding-block: 4.5rem;
  }

  .utility-inner {
    min-height: 34px;
    justify-content: center;
    text-align: center;
  }

  .utility-inner p {
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }

  .utility-actions {
    display: none;
  }

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

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 1.15rem;
  }

  .brand small {
    font-size: 0.5rem;
  }

  .mobile-menu-panel {
    max-height: calc(100vh - 78px);
  }

  .mobile-menu-inner {
    padding-top: 1.4rem;
  }

  .mobile-accordion-links,
  .mobile-menu-actions {
    grid-template-columns: 1fr;
  }

  .mobile-menu-actions .button {
    min-height: 54px;
  }

  .home-hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding-block: 4rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 13.8vw, 4.6rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-note {
    margin-top: 2.3rem;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-caption {
    min-width: min(280px, 88%);
  }

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

  .trust-item {
    min-height: 130px;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(even) {
    border-right: 0;
  }

  .image-stack {
    min-height: 460px;
  }

  .image-stack-main {
    width: 100%;
    height: 92%;
  }

  .image-stack::before {
    display: none;
  }

  .image-stack-card {
    max-width: 280px;
  }

  .section-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .specials-grid {
    border-left: 0;
    grid-template-columns: 1fr;
  }

  .specials-grid article {
    min-height: auto;
    border-left: 1px solid var(--line);
  }

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

  .service-gallery-card {
    min-height: 390px;
    border-right: 0;
  }

  .service-quicklinks {
    justify-content: flex-start;
  }

  .doctor-photo,
  .doctor-photo img {
    min-height: 520px;
    height: 520px;
  }

  .doctor-photo span {
    right: 0;
    bottom: 2rem;
  }

  .community-logo-card {
    padding: 1.5rem;
  }

  .va-steps,
  .journey-grid,
  .technology-list,
  .treatment-grid,
  .values-grid,
  .resource-grid,
  .contact-options-grid,
  .journal-grid,
  .journal-controls,
  .financing-grid > div:last-child,
  .membership-grid ul {
    grid-template-columns: 1fr;
  }

  .va-steps {
    border-bottom: 0;
  }

  .va-steps > div {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .journey-grid,
  .treatment-grid,
  .values-grid,
  .resource-grid,
  .contact-options-grid {
    border-left: 0;
  }

  .journey-step,
  .treatment-grid article,
  .values-grid article,
  .resource-grid > a,
  .contact-options-grid > a {
    min-height: auto;
    border-left: 1px solid var(--line);
  }

  .journey-step h3,
  .journey-step h2,
  .treatment-grid h3,
  .values-grid h3,
  .resource-grid h2,
  .contact-options-grid h2 {
    margin-top: 0;
  }

  .technology-list > div,
  .technology-list > div:nth-child(even) {
    padding: 1rem 0;
    border-right: 0;
  }

  .technology-photo img {
    height: 360px;
    min-height: 0;
  }

  .leadconnector-form-wrap,
  .leadconnector-form-wrap iframe {
    min-height: 900px;
  }

  .review-viewport,
  .review-viewport blockquote {
    min-height: 350px;
  }

  .review-viewport blockquote {
    padding: 2rem;
  }

  .review-viewport blockquote p {
    font-size: clamp(1.8rem, 8vw, 2.7rem);
  }

  .review-controls {
    padding-left: 1.2rem;
  }

  .finance-cards a {
    grid-template-columns: 1fr;
  }

  .finance-cards p,
  .finance-cards strong {
    grid-column: auto;
  }

  .office-gallery {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .office-gallery figure,
  .office-gallery-large {
    min-height: 300px;
    grid-row: auto;
  }

  .appointment-band-actions,
  .footer-map-card > div {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .appointment-band-actions .button,
  .footer-map-card .button {
    width: 100%;
  }

  .footer-map {
    min-height: 580px;
  }

  .footer-map iframe {
    height: 58%;
  }

  .footer-map-card {
    top: auto;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
    transform: none;
  }

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

  .footer-brand {
    grid-column: 1 / 3;
  }

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

  .mobile-conversion-bar {
    position: fixed;
    z-index: 500;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 61px;
    border-top: 1px solid rgba(255, 253, 248, 0.2);
    background: var(--ink);
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-conversion-bar a {
    display: grid;
    min-height: 61px;
    border-right: 1px solid rgba(255, 253, 248, 0.2);
    color: var(--paper);
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    place-items: center;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-conversion-bar a:last-child {
    border-right: 0;
    background: var(--blue);
  }

  .internal-hero {
    padding-top: 3rem;
  }

  .internal-hero h1 {
    font-size: clamp(3rem, 13.5vw, 4.6rem);
  }

  .internal-hero figure,
  .internal-hero figure img {
    min-height: 480px;
    height: 480px;
  }

  .internal-hero figure::before {
    top: -1rem;
    right: -1rem;
    width: 120px;
    height: 120px;
  }

  .service-overview-grid,
  .story-grid {
    gap: 2rem;
  }

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

  .expectations-photo img {
    min-height: 440px;
  }

  .faq-list summary {
    font-size: 1.3rem;
  }

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

  .related-grid a + a {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .related-grid a {
    min-height: 230px;
  }

  .about-doctor-grid > img {
    max-height: 560px;
  }

  .insurance-notice,
  .legal-grid > div > section {
    grid-template-columns: 1fr;
  }

  .insurance-notice {
    gap: 0.8rem;
  }

  .membership-grid li {
    border-right: 0;
  }

  .financing-grid article + article {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .featured-journal-grid {
    grid-template-columns: 1fr;
  }

  .featured-journal-art {
    min-height: 380px;
  }

  .featured-journal-art img {
    min-height: 380px;
  }

  .journal-controls {
    padding: 1rem;
  }

  .article-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .article-layout,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .article-layout aside,
  .legal-grid aside {
    position: static;
  }

  .article-layout aside {
    display: none;
  }

}

@media (max-width: 430px) {
  .brand span {
    display: none;
  }

  .hero-copy h1,
  .internal-hero h1 {
    overflow-wrap: anywhere;
  }

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

  .trust-item {
    border-right: 0;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .mobile-conversion-bar,
  .footer-map,
  .site-footer,
  .appointment-band {
    display: none;
  }

  body {
    padding: 0;
    background: #fff;
    color: #000;
  }

  a {
    color: #000;
  }
}
/*
 * Elementor bridge
 *
 * The approved layouts live inside section-level Elementor HTML widgets.
 * Neutralize only the builder's structural wrappers so the design system
 * remains pixel-consistent on the frontend and in Elementor's canvas.
 */
.harmony-elementor-content,
.harmony-elementor-content > .elementor,
.elementor-location-header,
.elementor-location-footer,
.harmony-elementor-section,
.harmony-elementor-html,
.harmony-elementor-html > .elementor-widget-container {
  width: 100%;
  max-width: none;
}

.harmony-elementor-section {
  --padding-top: 0;
  --padding-right: 0;
  --padding-bottom: 0;
  --padding-left: 0;
  --margin-top: 0;
  --margin-right: 0;
  --margin-bottom: 0;
  --margin-left: 0;
  --gap: 0;
  --row-gap: 0;
  --column-gap: 0;
  gap: 0 !important;
}

.harmony-elementor-html,
.harmony-elementor-html > .elementor-widget-container {
  margin: 0;
  padding: 0;
}

/*
 * Elementor applies `height: auto` to every image after the theme stylesheet.
 * Reinstate the intentional editorial crops inside approved HTML sections so
 * images continue to fill their designed frames on the WordPress frontend.
 */
.harmony-elementor-html .hero-photo-wrap img,
.harmony-elementor-html .office-gallery img,
.harmony-elementor-html .featured-journal-art img,
.harmony-elementor-html .article-featured-image img {
  height: 100% !important;
}

.harmony-elementor-html .image-stack-main {
  height: 92% !important;
}

.harmony-elementor-html .doctor-photo img {
  height: 680px !important;
}

.harmony-elementor-html .technology-photo img {
  height: clamp(380px, 38vw, 500px) !important;
}

.harmony-elementor-html .internal-hero figure img {
  height: 620px !important;
}

.harmony-elementor-html .journal-art img {
  height: 230px !important;
}

@media (max-width: 1040px) {
  .harmony-elementor-html .internal-hero figure img {
    height: 560px !important;
  }
}

@media (max-width: 760px) {
  .harmony-elementor-html .doctor-photo img {
    height: 520px !important;
  }

  .harmony-elementor-html .technology-photo img {
    height: 360px !important;
  }

  .harmony-elementor-html .internal-hero figure img {
    height: 480px !important;
  }
}

/*
 * Elementor-native Theme Builder bridge
 *
 * Normal header/footer business content uses native widgets connected to the
 * active Elementor Site Settings kit. The advanced dropdown menu, map embed,
 * and mobile quick actions remain scoped HTML components so the approved
 * interaction and visual treatment are preserved.
 */
.harmony-native-utility,
.harmony-native-site-header,
.harmony-native-site-footer {
  width: 100%;
  max-width: none;
  --padding-top: 0;
  --padding-right: 0;
  --padding-bottom: 0;
  --padding-left: 0;
  --gap: 0;
}

.harmony-native-site-header {
  position: sticky !important;
  z-index: 100 !important;
  top: 0 !important;
  overflow: visible;
}

.harmony-native-utility-inner,
.harmony-native-header-inner,
.harmony-native-footer-grid,
.harmony-native-footer-bottom {
  width: var(--shell) !important;
  max-width: none !important;
  margin-inline: auto !important;
}

.harmony-native-legal-hero-inner,
.harmony-native-legal-content,
.harmony-native-legal-section,
.harmony-native-legal-notice {
  display: flex !important;
  flex-direction: column;
}

.harmony-native-legal-hero-inner {
  width: var(--shell) !important;
  max-width: none !important;
  margin-inline: auto !important;
}

.harmony-native-legal-grid {
  display: grid !important;
  width: var(--shell) !important;
  max-width: none !important;
  margin-inline: auto !important;
  grid-template-columns: 260px minmax(0, 780px);
  justify-content: center;
  gap: clamp(4rem, 8vw, 8rem);
}

.harmony-native-legal-intro p {
  max-width: 760px;
  font-size: 1.1rem !important;
}

.harmony-native-legal-side-heading h2 {
  font-size: 1.4rem !important;
  line-height: 1.15 !important;
}

.harmony-native-legal-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.harmony-native-legal-section-copy p,
.harmony-native-legal-notice-copy p,
.harmony-native-legal-contact p {
  margin: 0;
}

.harmony-native-legal-notice h2 {
  margin-bottom: 0.5rem !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 750 !important;
  letter-spacing: 0 !important;
  line-height: 1.4 !important;
}

.harmony-native-utility-inner,
.harmony-native-header-inner,
.harmony-native-footer-bottom {
  display: flex !important;
}

.harmony-native-utility-inner {
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
}

.harmony-utility-message,
.harmony-utility-message .elementor-widget-container,
.harmony-utility-link,
.harmony-utility-link .elementor-widget-container {
  margin: 0;
}

.harmony-utility-message p,
.harmony-utility-link p {
  margin: 0;
}

.harmony-native-utility-actions {
  display: flex !important;
  width: auto !important;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem !important;
}

.harmony-native-header-inner {
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem) !important;
}

.harmony-native-brand {
  display: flex !important;
  width: 230px !important;
  align-items: center;
  gap: 0.65rem !important;
}

.harmony-native-logo {
  width: 56px !important;
  flex: 0 0 56px;
}

.harmony-native-logo img,
.harmony-native-footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.harmony-native-brand-name,
.harmony-native-brand-name .elementor-widget-container {
  width: auto;
  margin: 0;
}

.harmony-native-brand-name a {
  display: grid;
  color: var(--ink);
  text-decoration: none;
}

.harmony-native-brand-name strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.harmony-native-brand-name small {
  margin-top: 0.22rem;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.harmony-native-nav,
.harmony-native-nav > .elementor-widget-container,
.harmony-native-toggle,
.harmony-native-toggle > .elementor-widget-container {
  display: contents;
}

.harmony-native-header-actions {
  display: flex !important;
  width: auto !important;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem !important;
}

.harmony-native-header-actions .elementor-widget-button {
  width: auto;
}

.harmony-native-header-actions .elementor-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border: 1px solid transparent !important;
  border-radius: 0 !important;
  background: var(--ink) !important;
  color: var(--paper) !important;
  font-family: var(--font-body) !important;
  font-size: 0.7rem !important;
  font-weight: 750 !important;
  letter-spacing: 0.07em !important;
  line-height: 1.15 !important;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.harmony-header-phone .elementor-button {
  border-color: var(--blue) !important;
  background: transparent !important;
  color: var(--blue) !important;
}

.harmony-native-header-actions .elementor-button:hover {
  background: var(--blue-deep) !important;
  color: var(--paper) !important;
}

.harmony-native-footer-grid {
  display: grid !important;
  padding: 4rem 0 !important;
  grid-template-columns: 1.5fr repeat(3, 0.75fr);
  gap: 4rem !important;
}

.harmony-native-footer-brand,
.harmony-native-footer-column {
  display: flex !important;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  gap: 0 !important;
}

.harmony-native-footer-brand {
  display: grid !important;
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 0.9rem !important;
  row-gap: 1rem !important;
}

.harmony-native-footer-logo {
  grid-column: 1;
  grid-row: 1;
  width: 72px !important;
  margin: 0 !important;
}

.harmony-native-footer-name {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.harmony-native-footer-description {
  grid-column: 1 / -1;
  grid-row: 2;
}

.harmony-native-footer-name h2 {
  margin: 0 !important;
  color: var(--paper) !important;
  font-family: var(--font-display) !important;
  font-size: 1.8rem !important;
  line-height: 1.05 !important;
}

.harmony-native-footer-description p {
  max-width: 360px;
  margin: 0 !important;
  color: rgba(255, 253, 248, 0.68) !important;
  font-size: 0.85rem !important;
}

.harmony-native-footer-heading h2 {
  margin: 0 0 1.25rem !important;
  color: var(--paper) !important;
  font-family: var(--font-body) !important;
  font-size: 0.72rem !important;
  font-weight: 750 !important;
  letter-spacing: 0.12em !important;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.harmony-native-footer-links,
.harmony-native-footer-links .elementor-widget-container {
  width: 100%;
}

.harmony-native-footer-links p {
  display: block !important;
  margin: 0 0 0.55rem !important;
  color: rgba(255, 253, 248, 0.68) !important;
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
}

.harmony-native-footer-links a {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  color: rgba(255, 253, 248, 0.72) !important;
  text-decoration: none;
}

.harmony-native-footer-links a:hover {
  color: var(--paper) !important;
  text-decoration: underline;
}

.harmony-native-footer-bottom {
  align-items: center;
  justify-content: space-between;
  gap: 2rem !important;
  padding: 1.5rem 0 !important;
  border-top: 1px solid var(--line-light);
}

.harmony-native-copyright p,
.harmony-native-legal-links p {
  margin: 0;
}

.harmony-native-legal-links nav {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
}

.harmony-native-copyright p,
.harmony-native-legal-links a {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  color: rgba(255, 253, 248, 0.68) !important;
  font-size: 0.68rem !important;
  text-decoration: none;
}

.harmony-native-legal-links a:hover {
  color: var(--paper) !important;
  text-decoration: underline;
}

.mobile-menu-dialog {
  width: 100%;
}

/*
 * Elementor's global button preset is intentionally available to native
 * Elementor buttons, but it must not restyle the approved custom controls
 * embedded inside Theme Builder HTML widgets.
 */
.elementor-kit-6 .nav-trigger,
.elementor-kit-6 .nav-trigger:hover,
.elementor-kit-6 .nav-trigger:focus,
.elementor-kit-6 .nav-trigger[aria-expanded="true"] {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--ink) !important;
  font-family: var(--font-body) !important;
  font-size: 0.71rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.elementor-kit-6 .mobile-menu-toggle,
.elementor-kit-6 .mobile-menu-toggle:hover,
.elementor-kit-6 .mobile-menu-toggle:focus {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--ink) !important;
  font-family: var(--font-body) !important;
  font-size: 0.73rem !important;
  font-weight: 750 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.elementor-kit-6 .mobile-accordion > button,
.elementor-kit-6 .mobile-accordion > button:hover,
.elementor-kit-6 .mobile-accordion > button:focus {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--ink) !important;
  font-family: var(--font-display) !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

.elementor-kit-6 .review-dots button,
.elementor-kit-6 .review-dots button:hover,
.elementor-kit-6 .review-dots button:focus {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--ink) !important;
}

.elementor-kit-6 .review-arrows button {
  padding: 0 !important;
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: var(--paper) !important;
  color: var(--blue) !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

.elementor-kit-6 .review-arrows button:hover,
.elementor-kit-6 .review-arrows button:focus {
  background: var(--blue) !important;
  color: var(--paper) !important;
}

.nav-panel[hidden],
.mobile-menu-panel[hidden],
.mobile-accordion-links[hidden],
.journal-card[hidden],
.empty-result[hidden] {
  display: none !important;
}

input,
select,
textarea {
  min-height: 48px;
  border: 1px solid var(--e-global-color-harmborder, #b7c0be);
  background: var(--paper);
  color: var(--ink);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: var(--blue);
}

button:disabled,
.elementor-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
}

@media (max-width: 1040px) {
  .harmony-native-nav,
  .harmony-native-header-actions {
    display: none !important;
  }

  .harmony-native-brand {
    width: auto !important;
  }

  .harmony-native-utility-actions .elementor-element:last-child {
    display: none;
  }

  .harmony-native-utility-actions a {
    display: inline-flex !important;
    min-height: 24px;
    align-items: center;
  }

  .harmony-native-footer-grid {
    gap: 2.5rem !important;
    padding: 3.5rem 0 !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .harmony-native-footer-brand {
    grid-column: 1 / 3;
  }
}

@media (max-width: 760px) {
  .harmony-native-utility-actions {
    display: none !important;
  }

  .harmony-native-header-inner {
    min-height: 78px;
  }

  .harmony-native-logo {
    width: 46px !important;
    flex-basis: 46px;
  }

  .harmony-native-brand-name strong {
    font-size: 1.15rem;
  }

  .harmony-native-brand-name small {
    font-size: 0.5rem;
  }

  .harmony-native-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .harmony-native-legal-grid {
    grid-template-columns: 1fr;
  }

  .harmony-native-legal-aside {
    position: static;
  }
}

@media (max-width: 430px) {
  .harmony-native-brand-name {
    display: none;
  }

  .harmony-native-footer-grid {
    gap: 2rem !important;
    padding: 3rem 0 !important;
    grid-template-columns: 1fr;
  }

  .harmony-native-footer-brand {
    grid-column: auto;
  }
}


/* WordPress static-runtime interaction helpers */
.nav-panel[hidden],
.mobile-menu-panel[hidden],
.mobile-accordion-links[hidden],
.journal-card[hidden],
.empty-result[hidden] {
  display: none !important;
}
