@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Italiana&family=Mrs+Saint+Delafield&display=swap");

:root {
  --ivory: #f3f7fb;
  --paper: #ffffff;
  --navy: #0c2942;
  --navy-soft: #164d78;
  --brand-blue: #0a5daa;
  --teal: var(--brand-blue);
  --teal-light: #4d95cf;
  --seafoam: #e0edf7;
  --coral: #74b4e3;
  --ink: #173046;
  --muted: #586b7a;
  --line: rgba(10, 93, 170, 0.18);
  --shadow: 0 28px 70px rgba(12, 41, 66, 0.12);
  --radius-sm: 12px;
  --radius: 22px;
  --container: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select {
  font: inherit;
}

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

a {
  color: inherit;
}

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

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

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

h1,
h2,
h3 {
  color: var(--navy);
}

h1,
h2 {
  font-family: "Italiana", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

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

h2 {
  font-size: clamp(2.55rem, 4.3vw, 4.6rem);
}

h3 {
  line-height: 1.2;
}

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

.section {
  padding: 110px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #b9ddf7;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: var(--navy);
  color: #fff;
}

.button-primary:hover {
  background: var(--teal);
}

.button-secondary {
  border-color: var(--navy);
  color: var(--navy);
}

.button-secondary:hover {
  background: var(--navy);
  color: #fff;
}

.button-coral {
  background: var(--coral);
  color: var(--navy);
}

.button-coral:hover {
  background: #9acbee;
}

.button-location {
  border-color: var(--teal);
  background: transparent;
  color: var(--teal);
}

.button-row,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 2000;
  top: 0;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: 94px;
  width: min(calc(100% - 48px), 1450px);
  margin: auto;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand img {
  width: 200px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 30px);
}

.primary-nav > a,
.primary-nav summary {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav > a {
  position: relative;
}

.primary-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--teal-light);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after {
  transform: scaleX(1);
}

.primary-nav details {
  position: relative;
}

.primary-nav summary {
  cursor: pointer;
  list-style: none;
}

.primary-nav summary::-webkit-details-marker {
  display: none;
}

.primary-nav summary::after {
  content: " +";
  color: var(--teal);
}

.primary-nav details[open] > summary::after {
  content: " −";
}

.nav-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -22px;
  display: grid;
  min-width: 265px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.nav-menu a {
  border-bottom: 1px solid var(--line);
  padding: 12px 18px;
  color: var(--navy);
  font-size: 0.84rem;
  text-decoration: none;
}

.nav-menu a:hover {
  background: var(--seafoam);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  padding: 68px 0;
}

.hero-video-wrap,
.hero-video-overlay {
  position: absolute;
  inset: 0;
}

.hero-video-wrap {
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.hero-video-overlay {
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(243, 247, 251, 0.96) 0%,
    rgba(243, 247, 251, 0.9) 42%,
    rgba(243, 247, 251, 0.78) 100%
  );
}

.hero-art {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 80px;
}

.hero-copy h1 {
  max-width: 850px;
  margin-bottom: 12px;
}

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

.hero-lede {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-lede strong {
  color: var(--navy);
}

.hero-search {
  position: relative;
  border: 1px solid rgba(12, 41, 66, 0.15);
  border-radius: 36px 36px 8px 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: clamp(30px, 4vw, 52px);
}

.hero-search h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.hero-search label,
.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.79rem;
  font-weight: 700;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

input,
select {
  min-height: 54px;
  width: 100%;
  border: 1px solid rgba(12, 41, 66, 0.25);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  padding: 12px 15px;
}

input::placeholder {
  color: #687985;
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 24px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.region-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.region-links a,
.service-tags span {
  border: 1px solid rgba(10, 93, 170, 0.32);
  border-radius: 999px;
  background: rgba(224, 237, 247, 0.7);
  color: var(--navy);
  padding: 6px 11px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.hero-art span {
  position: absolute;
  border: 1px solid rgba(10, 93, 170, 0.22);
  border-radius: 50%;
}

.hero-art span:first-child {
  top: -250px;
  right: 22%;
  width: 660px;
  height: 660px;
}

.hero-art span:last-child {
  bottom: -280px;
  left: -190px;
  width: 620px;
  height: 620px;
}

.hero-proof {
  position: relative;
  z-index: 3;
  display: flex;
  margin-top: 34px;
  background: var(--navy);
  color: #fff;
}

.hero-proof span {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: 22px 28px;
  font-size: 0.83rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 800px) {
  .hero-video {
    object-position: 62% center;
  }

  .hero-video-overlay {
    background: rgba(243, 247, 251, 0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap {
    display: none;
  }
}

.section-heading {
  max-width: 900px;
  margin-bottom: 55px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 100px;
}

.split-heading p {
  color: var(--muted);
}

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

.centered p {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted);
}

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

.region-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.region-card::after {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(10, 93, 170, 0.22);
  border-radius: 50%;
  content: "";
}

.region-card:hover {
  background: var(--seafoam);
  transform: translateY(-5px);
}

.region-card > span {
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 700;
}

.region-card h3 {
  margin: 72px 0 8px;
  font-family: "Italiana", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
}

.region-card p {
  color: var(--muted);
  font-size: 0.85rem;
}

.region-card strong {
  color: var(--teal);
}

.image-story {
  background: var(--ivory);
}

.image-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 100px;
}

.state-image {
  position: relative;
}

.state-image img {
  width: 100%;
  min-height: 600px;
  border-radius: 4px 90px 4px 4px;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.94);
}

.state-image::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 64%;
  height: 50%;
  border: 2px solid var(--coral);
  content: "";
}

.state-image span {
  position: absolute;
  right: -12px;
  bottom: 45px;
  z-index: 1;
  background: var(--paper);
  color: var(--navy);
  padding: 14px 18px;
  font-family: "Italiana", Georgia, serif;
  font-size: 1.4rem;
}

.story-copy p {
  color: var(--muted);
}

.check-list {
  display: grid;
  margin: 35px 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal);
  content: "✓";
}

.text-link {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.founder-card {
  display: grid;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  grid-template-columns: 0.9fr 1.1fr;
}

.founder-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.founder-card span,
.founder-card h3 {
  color: var(--navy);
}

.founder-card span {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-card h3 {
  font-family: "Italiana", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 400;
}

.founder-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.founder-card-reverse {
  background: var(--seafoam);
}

.centered-action {
  margin-top: 40px;
  text-align: center;
}

.consultation,
.final-search {
  background: var(--navy);
  color: #fff;
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.consultation h2,
.final-search h2 {
  color: #fff;
}

.consultation p,
.final-search p {
  color: #d5e2e7;
}

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

.service-list > a {
  display: grid;
  min-height: 120px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  transition: background 180ms ease;
}

.service-list > a:hover {
  background: var(--ivory);
}

.service-list span {
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 700;
}

.service-list h3 {
  margin-bottom: 5px;
  font-family: "Italiana", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.service-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.service-list strong {
  color: var(--teal);
  font-size: 1.5rem;
}

.sedation-story {
  background: var(--seafoam);
}

.sedation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.sedation-visual {
  position: relative;
  min-height: 480px;
}

.sedation-visual span {
  position: absolute;
  display: grid;
  border: 1px solid rgba(12, 41, 66, 0.2);
  border-radius: 50%;
  place-items: center;
  color: var(--navy);
  font-family: "Italiana", Georgia, serif;
  font-size: 1.4rem;
}

.sedation-visual span:nth-child(1) {
  top: 0;
  left: 10%;
  width: 290px;
  height: 290px;
}

.sedation-visual span:nth-child(2) {
  top: 155px;
  right: 3%;
  width: 260px;
  height: 260px;
  background: rgba(255, 253, 248, 0.45);
}

.sedation-visual span:nth-child(3) {
  bottom: 0;
  left: 2%;
  width: 190px;
  height: 190px;
  border-color: var(--coral);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quote-grid blockquote {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
}

.quote-grid p {
  color: var(--navy);
  font-family: "Italiana", Georgia, serif;
  font-size: 2rem;
  line-height: 1.3;
}

.quote-grid cite {
  color: var(--teal);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
}

.reviews-section {
  background:
    radial-gradient(circle at 8% 16%, rgba(77, 149, 207, 0.14), transparent 24rem),
    var(--paper);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.reviews-intro {
  max-width: 520px;
}

.reviews-intro h2 {
  margin-bottom: 24px;
}

.reviews-intro p {
  margin-bottom: 32px;
  color: var(--muted);
}

.review-stack {
  display: grid;
  gap: 22px;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 55px rgba(12, 41, 66, 0.09);
  padding: clamp(28px, 3vw, 42px);
}

.review-card-header,
.review-source {
  display: flex;
  align-items: center;
}

.review-card-header {
  justify-content: space-between;
  gap: 20px;
}

.review-source {
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-platform {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  place-items: center;
}

.review-stars {
  color: #a85f00;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.review-card blockquote {
  margin: 24px 0 0;
}

.review-card blockquote p {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
}

.review-card cite {
  color: var(--navy);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
}

@media (max-width: 980px) {
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reviews-intro {
    max-width: 720px;
  }
}

@media (max-width: 560px) {
  .review-card-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

.credit-cta {
  background: var(--brand-blue);
  color: #fff;
  padding: 58px 0;
}

.credit-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(36px, 7vw, 110px);
}

.credit-cta .eyebrow {
  margin-bottom: 12px;
}

.credit-cta h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.credit-cta p {
  max-width: 760px;
  margin-bottom: 0;
  color: #e3f0fa;
}

.credit-cta .button {
  min-width: 245px;
}

.latest-posts {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(77, 149, 207, 0.16), transparent 26rem),
    var(--ivory);
}

.latest-posts-heading {
  display: flex;
  margin-bottom: 42px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.latest-posts-heading > div:first-child {
  max-width: 760px;
}

.latest-posts-heading h2 {
  margin: 12px 0 14px;
}

body.starlight-site .latest-posts-heading h2,
body.starlight-site .page-hero h1 {
  font-family: "Italiana", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.latest-posts-heading p {
  margin: 0;
  color: var(--muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-controls > span {
  min-width: 44px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.carousel-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
  font-size: 1.15rem;
  place-items: center;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.carousel-controls button:hover:not(:disabled) {
  background: var(--navy);
  color: #fff;
}

.carousel-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.latest-posts-window {
  overflow: hidden;
}

.latest-posts-pages {
  display: flex;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.latest-posts-page {
  display: grid;
  min-width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.latest-post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(12, 41, 66, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.latest-post-card:hover {
  box-shadow: 0 24px 58px rgba(12, 41, 66, 0.14);
  transform: translateY(-5px);
}

.latest-post-image {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 235px;
}

.latest-post-image img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.latest-post-card:hover .latest-post-image img {
  transform: scale(1.045);
}

.latest-post-image > span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  border-radius: 999px;
  background: rgba(12, 41, 66, 0.9);
  color: #fff;
  padding: 7px 11px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.latest-post-body {
  padding: 26px;
}

.latest-post-body time {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.starlight-site .latest-post-body h3 {
  margin: 13px 0 22px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.28;
}

.latest-post-body h3 a,
.latest-post-link {
  color: var(--navy);
  text-decoration: none;
}

.latest-post-link {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
}

.latest-posts-all {
  margin-top: 34px;
  text-align: center;
}

@media (max-width: 800px) {
  .credit-cta-grid {
    grid-template-columns: 1fr;
  }

  .credit-cta .button {
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .credit-cta .button {
    width: 100%;
  }
}

.final-search-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.final-search .hero-search {
  color: var(--ink);
}

.final-search .hero-search h2 {
  color: var(--navy);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 115px 0 105px;
}

.page-hero .eyebrow {
  color: #fff;
}

.page-hero::after {
  position: absolute;
  top: -280px;
  right: -120px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(174, 224, 217, 0.2);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(3.5rem, 6vw, 6.6rem);
}

.page-hero p {
  max-width: 720px;
  color: #d6e2e8;
  font-size: 1.12rem;
}

.directory-page-section {
  padding: 75px 0 120px;
}

.directory-map-panel {
  position: relative;
  z-index: 0;
  isolation: isolate;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 12%, rgba(77, 149, 207, 0.25), transparent 24rem),
    var(--navy);
  padding: clamp(24px, 4vw, 44px);
}

.directory-map-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: end;
  gap: 34px;
}

.directory-map-heading .eyebrow {
  margin-bottom: 10px;
}

.directory-map-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2.35rem, 4vw, 4.4rem);
}

.directory-map-heading p {
  margin-bottom: 5px;
  color: #d6e2e8;
}

.directory-map-panel .stl-map {
  min-height: 460px;
  margin: 30px 0 0;
}

.directory-controls {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  padding: 24px;
  grid-template-columns: 1.4fr 0.8fr 0.9fr auto auto;
  align-items: end;
  gap: 14px;
}

.check-field {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
}

.check-field input {
  min-height: 20px;
  width: 20px;
}

.reset-button {
  border: 0;
  background: transparent;
  color: var(--teal);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: underline;
}

.directory-status {
  margin: 24px 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.search-attribution {
  margin: -16px 0 24px;
  color: var(--muted);
  font-size: 0.72rem;
}

.search-attribution a {
  color: inherit;
}

.directory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(350px, 0.82fr);
  align-items: start;
  gap: 28px;
}

.location-results {
  display: grid;
  gap: 18px;
}

.location-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 30px;
}

.location-card-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.location-region {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.location-card h3 {
  margin: 8px 0 3px;
  font-family: "Italiana", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.location-descriptor,
.location-address,
.location-card > p {
  color: var(--muted);
  font-size: 0.88rem;
}

.location-address {
  margin-top: 22px;
  margin-bottom: 2px;
  color: var(--navy);
  font-weight: 700;
}

.phone-link {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal);
  font-weight: 700;
}

.verified-badge {
  align-self: flex-start;
  border-radius: 999px;
  background: var(--seafoam);
  color: var(--teal);
  padding: 7px 10px;
  font-size: 0.68rem;
  font-weight: 700;
}

.shared-complex-badge {
  display: inline-flex;
  width: fit-content;
  margin: 16px 0 0;
  border: 1px solid rgba(12, 108, 113, 0.22);
  border-radius: 999px;
  background: #f0f8f6;
  color: var(--teal) !important;
  padding: 7px 10px;
  font-size: 0.7rem !important;
  font-weight: 700;
}

.distance-badge {
  margin: 10px 0 0;
  color: var(--teal) !important;
  font-size: 0.76rem !important;
  font-weight: 800;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0;
}

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

.primary-actions {
  margin-top: 18px;
}

.secondary-actions {
  margin-top: 16px;
}

.secondary-actions a {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
}

.coverage-panel {
  position: sticky;
  top: 120px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  padding: 38px;
}

.coverage-panel h2 {
  color: #fff;
  font-size: 2.7rem;
}

.coverage-panel > p {
  color: #d4e2e7;
  font-size: 0.88rem;
}

.coverage-track {
  display: grid;
  margin: 30px 0;
  gap: 10px;
}

.coverage-track button {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 15px;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.coverage-track button:hover,
.coverage-track .is-active {
  border-color: var(--coral);
  background: rgba(116, 180, 227, 0.16);
}

.coverage-track button > span {
  color: var(--coral);
}

.coverage-track small {
  color: #b8cbd2;
}

.coverage-note {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
}

.no-results {
  border: 1px dashed var(--teal);
  border-radius: var(--radius);
  background: var(--ivory);
  padding: 50px;
  text-align: center;
}

.directory-compact .directory-controls {
  grid-template-columns: 1fr auto auto auto;
}

.directory-compact .directory-layout {
  grid-template-columns: 1fr;
}

.directory-compact .location-results {
  grid-template-columns: 1fr 1fr;
}

.directory-compact .location-card {
  padding: 24px;
}

.directory-compact .location-card h3 {
  font-size: 1.6rem;
}

.directory-compact .location-results .location-card:nth-child(n + 5) {
  display: none;
}

.profile-stack {
  display: grid;
  gap: 80px;
}

.doctor-profile {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) 1.2fr;
  align-items: center;
  gap: 90px;
}

.doctor-profile img {
  width: 100%;
  max-height: 680px;
  border-radius: 4px 70px 4px 4px;
  object-fit: cover;
  object-position: top center;
}

.doctor-profile p {
  color: var(--muted);
}

.doctor-profile-alt {
  grid-template-columns: 1.2fr minmax(340px, 0.8fr);
}

.doctor-profile-alt img {
  grid-column: 2;
  grid-row: 1;
}

.doctor-profile-alt > div {
  grid-column: 1;
  grid-row: 1;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
}

.prose {
  max-width: 780px;
}

.prose p,
.prose li,
.narrow-prose p {
  color: var(--muted);
}

.prose h3,
.narrow-prose h3 {
  margin: 38px 0 10px;
  font-family: "Italiana", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.medical-note {
  border-left: 3px solid var(--coral);
  background: var(--ivory);
  padding: 16px 18px;
  font-size: 0.86rem;
}

.locator-embed {
  background: var(--ivory);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

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

.faq summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
}

.faq details p {
  margin: 16px 0 0;
  color: var(--muted);
}

.services-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.services-index > a {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  text-decoration: none;
}

.services-index > a:hover {
  background: var(--seafoam);
}

.services-index span {
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 700;
}

.services-index h2 {
  margin-top: 70px;
  font-size: 2.4rem;
}

.services-index p {
  color: var(--muted);
  font-size: 0.86rem;
}

.services-index strong {
  color: var(--teal);
  font-size: 0.8rem;
}

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

.blog-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.blog-image-placeholder {
  display: grid;
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(12, 41, 66, 0.72), rgba(10, 93, 170, 0.42)),
    url("/starlight/florida-care.jpg") center/cover;
  place-items: center;
  color: #fff;
}

.blog-image-placeholder span {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.74rem;
  font-weight: 700;
}

.blog-grid article > div:last-child {
  padding: 28px;
}

.blog-grid h2 {
  font-size: 2rem;
}

.blog-grid p {
  color: var(--muted);
  font-size: 0.87rem;
}

.blog-grid a {
  color: var(--teal);
  font-weight: 700;
}

.narrow-prose {
  max-width: 900px;
}

.narrow-prose h2 {
  font-size: 3.3rem;
}

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

.sitemap-grid > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sitemap-grid h2 {
  font-size: 2rem;
}

.sitemap-grid a {
  color: var(--teal);
}

.site-footer {
  background: #071e30;
  color: #d5e2e7;
  padding: 78px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 70px;
}

.footer-brand img {
  width: 245px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 300px;
}

.footer-top > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-top h2 {
  margin-bottom: 14px;
  color: #fff;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-top a {
  color: #d5e2e7;
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-top a:not(.button):hover,
.footer-bottom a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer-top a:not(.button):focus-visible,
.footer-bottom a:focus-visible {
  color: #fff;
}

.footer-top p {
  color: #9eb4bf;
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: #8fa6b2;
  font-size: 0.72rem;
}

.site-footer .footer-bottom a,
.site-footer .footer-bottom a:visited {
  color: #fff;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 190px auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 8px;
    border: 0;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    font-weight: 700;
  }

  .primary-nav {
    position: absolute;
    top: 94px;
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100vh - 115px);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    padding: 22px;
    align-items: stretch;
    flex-direction: column;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav details,
  .nav-menu {
    position: static;
  }

  .nav-menu {
    margin-top: 10px;
    box-shadow: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .hero-search {
    max-width: 780px;
  }

  .directory-controls {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .directory-layout {
    grid-template-columns: 1fr;
  }

  .coverage-panel {
    position: static;
  }

  .founder-grid,
  .services-index {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 75px 0;
  }

  .header-inner {
    min-height: 78px;
    width: calc(100% - 28px);
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand img {
    width: 165px;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    top: 79px;
  }

  .hero {
    padding: 48px 0;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-proof {
    width: 100%;
    flex-direction: column;
  }

  .hero-proof span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .image-story-grid,
  .consultation-grid,
  .sedation-grid,
  .final-search-grid,
  .editorial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .region-grid,
  .latest-posts-page,
  .founder-grid,
  .quote-grid,
  .services-index,
  .blog-grid,
  .sitemap-grid,
  .directory-compact .location-results {
    grid-template-columns: 1fr;
  }

  .state-image img {
    min-height: 420px;
  }

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

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

  .founder-card img {
    height: 420px;
  }

  .service-list > a {
    padding: 22px 0;
    grid-template-columns: 45px 1fr auto;
  }

  .service-list h3 {
    font-size: 1.5rem;
  }

  .sedation-visual {
    min-height: 390px;
  }

  .directory-controls,
  .directory-compact .directory-controls {
    grid-template-columns: 1fr;
  }

  .directory-map-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .directory-map-panel .stl-map {
    min-height: 340px;
  }

  .location-card-top {
    flex-direction: column;
  }

  .primary-actions .button {
    width: 100%;
  }

  .doctor-profile,
  .doctor-profile-alt {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .doctor-profile-alt img,
  .doctor-profile-alt > div {
    grid-column: 1;
  }

  .doctor-profile-alt img {
    grid-row: 1;
  }

  .doctor-profile-alt > div {
    grid-row: 2;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--coral);
    box-shadow: 0 12px 30px rgba(12, 41, 66, 0.28);
    color: var(--navy);
    font-weight: 800;
    text-decoration: none;
  }

  .site-footer {
    padding-bottom: 90px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-search {
    padding: 26px 20px;
  }

  .region-card {
    min-height: 235px;
  }

  .latest-posts-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .location-card,
  .coverage-panel {
    padding: 22px;
  }

  .coverage-track button {
    grid-template-columns: 26px 1fr;
  }

  .coverage-track small {
    grid-column: 2;
  }
}

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

/* WordPress integration and progressive directory behavior */

.admin-bar .site-header {
  top: 32px;
}

.stl-office-card[hidden],
.stl-no-results[hidden],
.distance-badge[hidden] {
  display: none !important;
}

.stl-map {
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-height: 360px;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: #e7efec;
}

.leaflet-container {
  z-index: 0;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 14px;
}

.stl-map-shared {
  margin: 0 0 9px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stl-map-office {
  display: grid;
  gap: 6px;
  padding: 8px 0;
}

.stl-map-office + .stl-map-office {
  border-top: 1px solid var(--line);
}

.stl-map-office strong,
.stl-map-office span {
  display: block;
}

.stl-map-office div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.stl-map-office a {
  color: var(--teal);
  font-weight: 700;
}

.editorial-page {
  background:
    radial-gradient(circle at 8% 12%, rgba(77, 149, 207, 0.14), transparent 26rem),
    var(--paper);
}

.service-overview-gallery {
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-overview-gallery figure,
.service-guide-visual {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: var(--radius);
  background: var(--ivory);
}

.service-overview-gallery img {
  width: 100%;
  height: clamp(240px, 25vw, 360px);
  object-fit: cover;
}

.service-overview-gallery figcaption,
.service-guide-visual figcaption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  border-radius: 999px;
  background: rgba(12, 41, 66, 0.9);
  color: #fff;
  padding: 8px 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-guide-visual {
  margin-top: 54px;
}

.service-guide-visual img {
  width: 100%;
  height: clamp(360px, 45vw, 620px);
  object-fit: cover;
}

.service-office-search,
#office-search {
  scroll-margin-top: 145px;
}

.editorial-content {
  max-width: 920px;
}

.editorial-content > p {
  margin-bottom: 1.4em;
  color: var(--muted);
  font-size: 1.08rem;
}

.editorial-content h2 {
  margin-top: 1.25em;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.editorial-content h3 {
  margin-top: 2em;
  color: var(--teal);
  font-size: 1.25rem;
}

.editorial-content ul,
.editorial-content ol {
  padding-left: 1.25em;
}

.editorial-cta {
  margin-top: 54px;
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--ivory);
  padding: 32px;
}

.consultation-details {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.65fr);
  align-items: stretch;
  gap: 28px;
  margin: 40px auto;
}

.benefit-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 40px 0;
}

.consultation-details > *,
.benefit-grid > *,
.post-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(12, 41, 66, 0.07);
}

.consultation-details > div:first-child {
  padding: clamp(34px, 3vw, 54px);
}

.consultation-details > .benefit-grid {
  margin: 0;
  padding: clamp(20px, 2vw, 30px);
}

.benefit-grid > article {
  padding: clamp(24px, 2.2vw, 36px);
}

.benefit-grid > article > span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.benefit-grid h3 {
  margin: 16px 0 14px;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
}

.benefit-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.post-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ivory);
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.035);
}

.post-card-body {
  padding: 28px;
}

body.starlight-site .post-card h2 {
  margin-top: 12px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.28;
}

.post-card a {
  color: var(--teal);
  font-weight: 700;
}

.post-card .post-read-more {
  display: inline-flex;
  margin-top: 12px;
}

.single-post-header {
  background: var(--navy);
  color: #fff;
  padding: clamp(72px, 9vw, 126px) 0 clamp(50px, 7vw, 92px);
}

.single-post-header-inner {
  max-width: 1040px;
}

.single-post-header .eyebrow {
  color: var(--seafoam);
}

body.starlight-site .single-post-header h1 {
  max-width: 1000px;
  margin: 18px 0;
  color: #fff;
  font-family: "Italiana", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.single-post-header p {
  color: rgba(255, 255, 255, 0.78);
}

body.starlight-site .post-back-link {
  display: inline-block;
  margin: -8px 0 34px -10px;
  border-radius: 999px;
  color: #fff !important;
  padding: 8px 10px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

body.starlight-site .single-post-header .post-back-link:hover,
body.starlight-site .single-post-header .post-back-link:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  color: #fff !important;
  text-decoration: none;
}

.single-post-layout {
  max-width: 1100px;
  padding-top: 64px;
  padding-bottom: 96px;
}

.single-post-featured {
  margin: 0 0 56px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 68px rgba(12, 41, 66, 0.14);
}

.single-post-featured img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.single-post-content {
  max-width: 790px;
  margin: 0 auto;
}

.single-post-content > p,
.single-post-content li {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

body.starlight-site .single-post-content h2 {
  margin-top: 1.55em;
  font-family: "Italiana", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.single-post-content h3 {
  margin-top: 1.8em;
  color: var(--teal);
  font-size: 1.5rem;
}

.single-post-content a:not(.button) {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-disclaimer {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  color: var(--muted);
}

.directory-status {
  min-height: 1.65em;
}

.distance-badge {
  width: fit-content;
  border-radius: 999px;
  background: var(--seafoam);
  color: var(--navy) !important;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 800;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .consultation-details,
  .benefit-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

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

  .service-overview-gallery img {
    height: 300px;
  }

  .service-guide-visual img {
    height: 330px;
  }
}

@media (max-width: 1180px) {
  .consultation-details {
    grid-template-columns: 1fr;
  }
}

/* Keep the site-specific design system authoritative over the base theme. */

.site-header button.menu-toggle {
  display: none !important;
  width: auto !important;
  min-width: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--navy) !important;
  padding: 0 !important;
}

main .button.button-primary,
.site-header .button.button-primary {
  border-color: var(--navy) !important;
  background: var(--navy) !important;
  color: #fff !important;
}

main .button.button-primary:hover,
.site-header .button.button-primary:hover {
  border-color: var(--teal) !important;
  background: var(--teal) !important;
}

main .button.button-coral,
.site-footer .button.button-coral {
  border-color: var(--coral) !important;
  background: var(--coral) !important;
  color: var(--navy) !important;
}

main .button.button-location {
  border-color: var(--teal) !important;
  background: transparent !important;
  color: var(--teal) !important;
}

main button.reset-button {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--teal) !important;
  padding: 8px 0 !important;
  text-decoration: underline;
}

@media (max-width: 1180px) {
  .site-header button.menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-self: end;
    gap: 8px;
  }
}

.brand-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.brand-overview > a {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  padding: 32px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-overview > a:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.brand-overview h2 {
  margin: 14px 0;
  color: var(--navy);
  font-size: 2rem;
}

.brand-overview strong {
  color: var(--teal);
}

.brand-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(45px, 7vw, 110px);
}

.brand-intro-copy {
  position: sticky;
  top: 130px;
}

.brand-intro-copy h2 {
  margin: 14px 0 20px;
}

.brand-intro-copy p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.06rem;
}

.brand-points {
  display: grid;
  gap: 16px;
}

.brand-points article {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  padding: 26px;
  grid-template-columns: 52px .72fr 1.3fr;
  align-items: start;
  gap: 18px;
}

.brand-points article > span {
  color: var(--teal);
  font-weight: 800;
  letter-spacing: .08em;
}

.brand-points h3 {
  margin: 0;
  font-size: 1.35rem;
}

.brand-points p {
  margin: 0;
  color: var(--muted);
}

.brand-directory {
  background: var(--ivory);
  padding: 95px 0 120px;
}

.brand-directory .section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.brand-directory #office-search {
  scroll-margin-top: 120px;
}

.directory-scoped .directory-controls {
  grid-template-columns: 1.4fr .8fr auto auto;
}

.directory-scoped .directory-layout {
  grid-template-columns: 1fr;
}

@media (max-width: 800px) {
  .brand-overview,
  .brand-intro {
    grid-template-columns: 1fr;
  }

  .brand-intro-copy {
    position: static;
  }

  .brand-points article {
    grid-template-columns: 44px 1fr;
  }

  .brand-points article p {
    grid-column: 2;
  }

  .directory-scoped .directory-controls {
    grid-template-columns: 1fr;
  }
}
