@font-face {
  font-family: "Mona Sans";
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/mona-sans:vf@latest/latin-wght-normal.woff2")
    format("woff2-variations");
  font-display: swap;
  font-style: normal;
  font-weight: 200 900;
}

@font-face {
  font-family: "Mona Sans";
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/mona-sans:vf@latest/latin-wght-italic.woff2")
    format("woff2-variations");
  font-display: swap;
  font-style: italic;
  font-weight: 200 900;
}

:root {
  --ghh-bg: #f5f8fb;
  --ghh-surface: #ffffff;
  --ghh-surface-alt: #eaf1f7;
  --ghh-text: #15263f;
  --ghh-muted: #5c6f86;
  --ghh-primary: #3cb090;
  --ghh-primary-dark: #257965;
  --ghh-accent: #214478;
  --ghh-border: rgba(21, 38, 63, 0.08);
  --ghh-shadow: 0 20px 55px rgba(23, 53, 92, 0.12);
  --ghh-radius: 26px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Mona Sans", sans-serif;
  font-optical-sizing: auto;
  color: var(--ghh-text);
  background: #ffffff;
  line-height: 1.6;
}

body.is-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-space {
  padding: 72px 0;
}

.hero-section.section-space {
  padding: 20px 0;
}

.section-alt {
  background: var(--ghh-surface-alt);
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--ghh-primary-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading.center {
  text-align: center;
}

.section-heading.narrow {
  max-width: 720px;
 margin-right: auto;
}

.section-heading.between {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
}

.section-heading h2,
.split-copy h2,
.split-copy h1,
.prose-content h1 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 3.2vw, 2.7rem);
  line-height: 1.1;
}

.section-heading p,
.split-copy p,
.hero-copy p,
.prose-content p {
  color: var(--ghh-muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  background: var(--ghh-primary);
  color: #fff;
  box-shadow: 0 14px 30px rgba(60, 176, 144, 0.24);
}

.button-secondary {
  border: 1px solid var(--ghh-border);
  background: rgba(255, 255, 255, 0.78);
}

.button-accent {
  background: var(--ghh-accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(33, 68, 120, 0.22);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--ghh-border);
}

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

.site-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.site-brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ghh-accent), var(--ghh-primary));
  color: #fff;
}

.site-brand-logo {
  width: auto;
  height: 80px;
  object-fit: contain;
}

.header-cta {
  border-radius: 12px;
  background: #1a457d;
  box-shadow: none;
}

.primary-nav .menu,
.footer-menu {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav .menu {
  align-items: center;
  gap: 42px;
}

.primary-nav .menu a {
  color: #1f1f1f;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  padding:30px 0;
}

.primary-nav .menu .current-menu-item > a,
.primary-nav .menu .current_page_item > a,
.primary-nav .menu .current-menu-ancestor > a,
.primary-nav .menu .current_page_ancestor > a {
  font-style: normal;
  font-weight: 700;
}

.primary-nav .menu > li {
  position: relative;
}

.primary-nav .menu,
.primary-nav .menu ul {
  list-style: none;
}

.primary-nav .menu > li > .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 120;
  min-width: 230px;
  margin: 0;
  padding: 3px 0;
  border: 1px solid rgba(21, 38, 63, 0.14);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(22, 34, 54, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.primary-nav .menu > li:hover > .sub-menu,
.primary-nav .menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-nav .menu > li.has-services-dropdown > .sub-menu {
  display: none;
}

.primary-nav .menu > li > .sub-menu > li {
  margin: 0;
  border-bottom: 1px solid rgba(21, 38, 63, 0.06);
}

.primary-nav .menu > li > .sub-menu > li:last-child {
  border-bottom: 0;
}

.primary-nav .menu > li > .sub-menu > li > a {
  display: block;
  padding: 6px 12px;
  color: #252525;
  font-size: 12px;
  font-style: italic;
  font-weight: 450;
  line-height: 1.3;
}

.services-nav-dropdown {
  position: absolute;
  padding-top:30px;
  left: 50%;
  top: 100%;
  z-index: 120;
  width: min(860px, 92vw);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.primary-nav .menu > li:hover > .services-nav-dropdown,
.primary-nav .menu > li:focus-within > .services-nav-dropdown,
.services-nav-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.services-nav-panel {
  border: 1px solid rgba(21, 38, 63, 0.14);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(22, 34, 54, 0.12);
  border-radius: 8px;
  overflow: hidden;
  padding: 20px;
  font-size: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-nav-column {
  padding: 0;
}

.services-nav-column-left {
  border-right: 1px solid rgba(21, 38, 63, 0.14);
  padding-right: 16px;
}

.services-nav-column-middle {
  border-right: 1px solid rgba(21, 38, 63, 0.14);
  padding-left: 16px;
  padding-right: 16px;
}

.services-nav-column-right {
  padding-left: 16px;
}

.services-nav-heading-spacer {
  visibility: hidden;
}

.services-nav-heading {
  margin: 0;
  padding: 0 0 6px;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.services-nav-heading a {
  color: inherit;
  transition: color 0.2s ease;
}

h4.services-nav-heading a {
    font-size: 16px !important;
    font-weight: 600 !important;
    /* border-bottom: 1px solid #eaeaea; */
    display: block;
    margin: 0;
    padding: 5px 10px !important;
    background-color: #e9f1ee;
    border-radius: 30px;
}

.services-nav-heading a:hover,
.services-nav-heading a:focus-visible {
  color: var(--ghh-primary-dark);
}

.services-nav-heading-extra {
  margin-top: 8px;
}

.services-nav-group-list {
  list-style: none;
  margin: 0;
  padding: 6px 12px 8px;
}

.services-nav-group-list li + li {
  margin-top: 0;
}

.services-nav-group-list li {
  padding: 0;
  border-bottom: 1px solid rgba(21, 38, 63, 0.06);
}

.services-nav-group-list li:last-child {
  border-bottom: 0;
}

.services-nav-group-list a {
  display: block;
  padding: 4px 0!important;
  color: #303030;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.28;
}

.services-nav-footer {
  display: flex;
  gap: 12px;
  padding: 12px 20px;
  border-top: 1px solid rgba(21, 38, 63, 0.1);
  background: #f7f9fc;
  border-radius: 0 0 10px 10px;
}

.services-nav-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ghh-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.services-nav-footer-link:hover {
  color: var(--ghh-primary-dark);
}

@media (max-width: 980px) {
  .services-nav-panel {
    grid-template-columns: 1fr;
  }

  .services-nav-column-left {
    border-right: 0;
    border-bottom: 1px solid rgba(21, 38, 63, 0.08);
  }
}

.legal-page-section {
  background: #f3f4f6;
}

.legal-page-shell {
  max-width: 1280px;
}

.legal-page-head {
  max-width: 720px;
}

.legal-page-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #3cb090;
  font-size: 18px;
  font-weight: 700;
}

.legal-page-title {
  margin: 0;
  color: #0b0b0b;
  font-size: clamp(2.2rem, 2.8vw, 3rem);
  line-height: 1.02;
}

.legal-page-intro {
  max-width: 780px;
  margin: 20px 0 0;
  color: #333;
  font-size: 18px;
  font-style: italic;
  line-height: 1.45;
}

.legal-page-grid {
  display: grid;
  gap: 80px;
  margin-top: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-page-richtext {
  max-width: 90%;
  margin-top: 30px;
}

.legal-page-richtext > :first-child {
  margin-top: 0;
}

.legal-page-block + .legal-page-block {
  margin-top: 28px;
}

.legal-page-block h2 {
  margin: 0;
  color: #131313;
  font-size: 22px;
  line-height: 1.18;
}

.legal-page-block p {
  margin: 6px 0 0;
  color: #3a3a3a;
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
}

.legal-page-home {
  min-width: 230px;
  margin-top: 36px;
  border-radius: 12px;
}

.error-page-section {
  background: #f3f4f6;
}

.error-page-shell {
  text-align: center;
  padding: 20px 0 40px;
}

.error-page-title {
  margin: 0;
  color: #214478;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.05;
}

.error-page-subtitle {
  margin: 6px 0 0;
  color: #2f5b96;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-style: italic;
}

.error-page-code {
  margin-top: 18px;
  color: #3cb090;
  font-size: clamp(6rem, 22vw, 18rem);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.04em;
}

.error-page-text {
  max-width: 680px;
  margin: 22px auto 0;
  color: #3a3a3a;
  font-size: 18px;
  font-style: italic;
}

.error-page-home {
  min-width: 220px;
  margin-top: 24px;
  border-radius: 12px;
}

.ghh-appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ghh-appointment-modal[hidden] {
  display: none;
}

.ghh-appointment-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ghh-appointment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 38, 0.52);
  backdrop-filter: blur(2px);
}

.ghh-appointment-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(21, 38, 63, 0.14);
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(19, 35, 57, 0.28);
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ghh-appointment-modal.is-open .ghh-appointment-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ghh-appointment-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #edf2f8;
  color: #1e2f49;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.ghh-appointment-modal-header {
  max-width: 520px;
}

.ghh-appointment-modal-eyebrow {
  margin: 0;
  color: var(--ghh-primary);
  font-size: 14px;
  font-weight: 700;
}

.ghh-appointment-modal-header h2 {
  margin: 8px 0 0;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.08;
}

.ghh-appointment-modal-header p {
  margin: 10px 0 0;
  color: #4a4a4a;
  font-size: 14px;
  font-style: italic;
}

.ghh-appointment-modal-form {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ghh-appointment-modal-field {
  display: grid;
  gap: 6px;
}

.ghh-appointment-modal-field label {
  color: #111111;
  font-size: 13px;
  font-weight: 700;
}

.ghh-appointment-modal-field input,
.ghh-appointment-modal-field select,
.ghh-appointment-modal-field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(33, 68, 120, 0.3);
  border-radius: 9px;
  background: #f8fbff;
  padding: 0 13px;
  font: inherit;
  font-size: 14px;
}

.ghh-appointment-modal-field textarea {
  min-height: 100px;
  padding-top: 10px;
  resize: vertical;
}

.ghh-appointment-modal-field-message {
  grid-column: 1 / -1;
}

.ghh-appointment-modal-submit {
  min-height: 44px;
  border-radius: 10px;
  box-shadow: none;
}

.contact-page-section {
  background: #f3f4f6;
}

.contact-page-shell {
  position: relative;
}

.contact-page-socials {
  position: absolute;
  top: 0;
  right: -42px;
  display: grid;
  gap: 14px;
}

.contact-page-socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ghh-primary), #49c89f);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(24, 180, 163, 0.18);
}

.contact-page-layout {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  align-items: start;
}

.contact-page-left {
  max-width: 100%;
}

.contact-page-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ghh-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.contact-page-title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em;
  color: #0a0a0a;
  font-size: 2.8rem;
  line-height: 1.03;
}

.contact-page-intro,
.contact-page-note {
  max-width: 720px;
  color: #3f3f3f;
  font-size: 18px;
  font-style: italic;
  line-height: 1.45;
}

.contact-page-intro {
  margin: 18px 0 0;
}

.contact-page-note {
  margin: 18px 0 0;
}

.contact-page-note strong {
  color: #111;
  font-style: normal;
}

.contact-page-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 14px;
  margin-top: 24px;
}

.contact-page-field {
  display: grid;
  gap: 8px;
}

.contact-page-field label {
  color: #111111;
  font-size: 14px;
  font-weight: 700;
}

.contact-page-field-empty {
  visibility: hidden;
}

.contact-page-field-message {
  grid-column: 1 / -1;
}

.contact-page-form input,
.contact-page-form textarea,
.contact-page-form select {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #5077ad;
  border-radius: 10px;
  background: #f8f8f8;
  color: #1b1b1b;
  box-shadow: none;
  font-size: 14px;
  font-style: italic;
}

.contact-page-form textarea {
  min-height: 116px;
  padding-top: 14px;
  resize: vertical;
}

.contact-page-form select {
  appearance: auto;
}

.contact-page-form ::placeholder {
  color: #747f90;
  font-style: italic;
}

.contact-page-submit {
  min-width: 116px;
  min-height: 44px;
  margin-top: 8px;
  border-radius: 8px;
  background: #284f8d;
  color: #ffffff;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
}

.contact-page-right {
  display: grid;
  gap: 22px;
  align-content: start;
}

.contact-page-info-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

/* Contact page showcase — form left, info+map right */
.contact-showcase-section {
  background: #f4f9ff;
}

.contact-showcase-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}

.contact-showcase-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ghh-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.contact-showcase-title {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.06;
}

.contact-showcase-title-dark {
  color: #0a0a0a;
}

.contact-showcase-title-accent {
  color: var(--ghh-primary);
}

.contact-showcase-intro {
  max-width: 580px;
  margin: 0 0 10px;
  color: #3f3f3f;
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
}

.contact-showcase-note {
  max-width: 580px;
  margin: 0 0 20px;
  color: #3f3f3f;
  font-size: 14px;
  font-style: italic;
  line-height: 1.45;
}

.contact-showcase-note strong {
  color: #111;
  font-style: normal;
}

.contact-showcase-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-showcase-field {
  display: grid;
  gap: 8px;
}

.contact-showcase-field label {
  color: #111111;
  font-size: 14px;
  font-weight: 700;
}

.contact-showcase-field-empty {
  visibility: hidden;
}

.contact-showcase-field-message {
  grid-column: 1 / -1;
}

.contact-showcase-form input,
.contact-showcase-form select,
.contact-showcase-form textarea {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #5077ad;
  border-radius: 8px;
  background: #f8f8f8;
  color: #1b1b1b;
  font: inherit;
  font-size: 14px;
}

.contact-showcase-form select {
  appearance: auto;
}

.contact-showcase-form textarea {
  min-height: 88px;
  padding-top: 14px;
  resize: vertical;
}

.contact-showcase-form ::placeholder {
  color: #747f90;
  font-style: italic;
}

.contact-showcase-submit {
  min-width: 116px;
  min-height: 44px;
  margin-top: 4px;
  border-radius: 8px;
  background: #284f8d;
  color: #ffffff;
  box-shadow: none;
  justify-self: start;
  padding-inline: 22px;
  font-size: 14px;
  font-weight: 700;
}

.contact-showcase-right {
  display: grid;
  gap: 22px;
  align-content: start;
}

.contact-showcase-hero-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  max-height: 280px;
}

.contact-showcase-meta {
  display: grid;
  gap: 12px;
}

.contact-showcase-meta-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: start;
}

.contact-showcase-meta-row strong {
  color: #111111;
  font-size: 16px;
  line-height: 1.35;
}

.contact-showcase-meta-row span {
  color: #404040;
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
}

.contact-showcase-map {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(33, 68, 120, 0.18);
  background: #dfe7f2;
}

.contact-showcase-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.contact-page-meta {
  display: grid;
  gap: 12px;
  margin-top: 114px;
}

.contact-page-meta-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: start;
}

.contact-page-meta-row strong {
  color: #111111;
  font-size: 16px;
  line-height: 1.35;
}

.contact-page-meta-row span {
  color: #404040;
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
}

.contact-page-map {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(33, 68, 120, 0.18);
  background: #dfe7f2;
}

.contact-page-map iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
}

.hero-grid,
.split-section,
.appointment-grid {
  display: grid;
  gap: 36px;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy h1,
.hero-title-display {
  margin: 0;
}

.hero-copy {
  padding-right: 50px;
}

.hero-title-display {
  display: grid;
  gap: 0.08em;
  font-size: clamp(3rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-title-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.16em;
}

.hero-title-dark {
  color: #000000;
}

.hero-title-accent {
  color: #3cb090;
}

.hero-title-sequence-intro,
.hero-title-sequence-accent,
.hero-title-sequence-outro {
  opacity: 0;
  transform: translateY(34px);
  display: inline-block;
}

.hero-description-display {
  max-width: 780px;
  margin: 42px 0 0;
  color: #121212;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  text-wrap: pretty;
}

.hero-description-display span {
  color: #3cb090;
  font-weight: 700;
}

.section-eyebrow-light {
  color: rgba(255, 255, 255, 0.8);
}

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

.hero-display-cta {
  min-width: 340px;
  min-height: 52px;
  padding-inline: 28px;
  border-radius: 12px;
  box-shadow: none;
  font-size: 15px;
  font-weight: 800;
}

.hero-section {
  position: relative;
  overflow: visible;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  box-shadow: none!important;
  object-fit: cover;
  width: 100%;
  border-radius: calc(var(--ghh-radius) + 6px);
}

.split-image img,
.appointment-image img {
  width: 100%;
  border-radius: calc(var(--ghh-radius) + 6px);
  object-fit: cover;
}

.floating-card {
  position: absolute;
  right: -8px;
  bottom: 26px;
  width: min(240px, 72%);
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--ghh-shadow);
}

.floating-card p {
  font-size: 11px;
  line-height: 1.35;
}

.hero-ribbon {
  position: absolute;
  left: -7vw;
  right: -7vw;
  bottom: -64px;
  z-index: 3;
  overflow: visible;
  pointer-events: none;
}

.hero-ribbon-svg {
  display: block;
  width: 114%;
  height: 228px;
  overflow: visible;
}

.hero-ribbon-band {
  fill: none;
  stroke: var(--ghh-primary);
  stroke-linecap: butt;
  stroke-width: 82;
}

.hero-ribbon-text {
  font-family: "Mona Sans", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  word-spacing: 0.02em;
  fill: #ffffff;
  line-height: 1;
}

.intro-section {
  display: grid;
  gap: 64px;
  align-items: center;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
}

.intro-section-media {
  position: relative;
  padding: 0 34px 0 0;
}

.intro-section-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 34px;
}

.intro-section-copy {
  max-width: 75%;
}

.intro-section-eyebrow {
  margin-bottom: 16px;
  color: #45b99d;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.intro-section-title {
  margin: 0;
  color: #040404;
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(3rem, 4.4vw, 4.2rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-line {
  display: flex;
  align-items: baseline;
  gap: 0.18em;
}

.intro-line + .intro-line {
  margin-top: 0.18em;
}

.intro-title-accent {
  color: #4cc4a8;
}

.intro-title-dark {
  color: #040404;
}

.intro-section-text {
  max-width: 620px;
  margin: 32px 0 0;
  color: #1e1e1e;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
}

.intro-section-button {
  min-width: 186px;
  min-height: 52px;
  margin-top: 36px;
  padding: 0 28px;
  border-radius: 12px;
  background: #274f8c;
  box-shadow: none;
  font-size: 17px;
  font-weight: 800;
}

.promise-card,
.service-card,
.doctor-card,
.testimonial-card,
.news-card,
.archive-card {
  background: var(--ghh-surface);
  border: 1px solid var(--ghh-border);
  border-radius: var(--ghh-radius);
  box-shadow: var(--ghh-shadow);
}

.promise-card,
.testimonial-card,
.news-card-body,
.service-card-body,
.archive-card,
.doctor-card,
.featured-doctor-copy {
  padding: 24px;
}

.promise-section {
  padding-top: 46px;
}

.promise-heading {
  max-width: 1120px;
  margin: 0 auto 46px;
  text-align: center;
}

.promise-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #48bea2;
  font-size: 16px;
  font-weight: 700;
}

.promise-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.85rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.ghh-flow-char {
  display: inline-block;
  transform: translate3d(0, 0, 0);
}

.promise-title-line {
  display: flex;
  justify-content: center;
  gap: 0.16em;
}

.promise-title-dark {
  color: #050505;
}

.promise-title-accent {
  color: #4cc4a8;
}

.promise-layout {
  display: grid;
  gap: 34px;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.95fr) minmax(320px, 0.95fr);
}

.promise-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.promise-card-benefit {
  min-height: 200px;
  padding: 26px;
  border: 0;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgb(26 47 82 / 16%);
}

.promise-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.promise-card-head h3 {
  margin: 0;
  color: #070707;
  font-size: 1.2vw;
  line-height: 1.15;
}

.promise-card-benefit p {
  margin: 0;
  color: #3c3c3c;
  font-size: 14px;
  font-style: italic;
  line-height: 1.55;
}

.promise-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #1ea0ea;
}

.promise-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.promise-feature {
  display: grid;
  gap: 28px;
  align-content: start;
  padding: 26px;
  border-radius: 30px;
  background: #1d9cd6;
  color: #fff;
  min-height: 100%;
  box-shadow: 0 10px 26px rgba(21, 95, 146, 0.16);
}

.promise-feature-copy h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2.35rem);
  line-height: 1.15;
}

.promise-feature-copy p {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-style: italic;
  line-height: 1.55;
}

.promise-feature-image {
  margin-top: auto;
}

.promise-feature img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
}

.service-grid,
.testimonial-grid,
.news-grid,
.archive-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card-image img,
.doctor-card-image img,
.news-card-image img,
.archive-card-image img,
.featured-doctor-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}

.service-card-body a {
  font-weight: 800;
  color: var(--ghh-primary-dark);
}

.services-showcase-section {
  background: #dfeaf7;
}

.services-showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.services-showcase-copy {
  max-width: 460px;
}

.services-showcase-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ghh-primary);
  font-size: 15px;
  font-weight: 700;
}

.services-showcase-title {
  display: grid;
  gap: 4px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.services-showcase-title-dark {
  color: #050505;
}

.services-showcase-title-accent {
  color: var(--ghh-primary);
  white-space: nowrap;
}

.services-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.services-showcase-button {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}

.services-showcase-button-outline {
  border: 1px solid #2f5b96;
  background: #ffffff;
  color: #214478;
}

.services-showcase-button-solid {
  background: var(--ghh-primary);
  color: #ffffff;
}

.services-showcase-grid {
  gap: 14px;
}

.services-showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(24, 42, 64, 0.08);
  background: transparent;
  transform: translateY(0);
  transition: transform 0.38s ease, box-shadow 0.38s ease;
}

.services-showcase-card .service-card-image,
.services-showcase-card .service-card-image img {
  height: 100%;
}

.services-showcase-card .service-card-image img {
  border-radius: 14px;
  transform: scale(1);
  transition: transform 0.6s ease, filter 0.45s ease;
}

.services-showcase-card .service-card-body {
  position: absolute;
  left: 0;
  width: 100%;
  max-width: 80%;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 10px;
  padding: 16px 18px 14px;
  background: #ffffff;
  border-radius: 0 24px 0 14px;
  transform: translateY(0);
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.38s ease,
    padding 0.38s ease,
    max-width 0.38s ease,
    border-radius 0.38s ease,
    box-shadow 0.38s ease;
}

.services-showcase-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.services-showcase-card .service-card-body h3 a {
  color: #050505;
  font-weight: inherit;
}

.services-showcase-card h3 {
  margin: 0;
  color: #050505;
  font-size: clamp(1.2rem, 1.5vw, 1.9rem);
  line-height: 1.12;
  transform: translateY(0);
  transition: color 0.32s ease, transform 0.38s ease;
}

.services-showcase-arrow {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ghh-primary);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.services-showcase-arrow span {
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  line-height: 1;
}

.services-showcase-card p {
  margin: 0;
  font-size: 13px;
  font-style: italic;
  line-height: 1.3;
  color: #ffffff;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    max-height 0.3s ease,
    transform 0.38s ease;
}

.services-showcase-link {
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  color: #ffffff;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    max-height 0.3s ease,
    transform 0.38s ease;
}

.services-showcase-card:hover,
.services-showcase-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 22px 46px rgba(24, 42, 64, 0.16);
}

.services-showcase-card:hover .service-card-image img,
.services-showcase-card:focus-within .service-card-image img {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.services-showcase-card:hover .service-card-body,
.services-showcase-card:focus-within .service-card-body {
  max-width: 80%;
  padding-top: 20px;
  padding-bottom: 16px;
  background: var(--ghh-primary);
  color: #ffffff;
  transform: translateY(-8px);
  border-radius: 0 24px 0 14px;
  box-shadow: 0 18px 34px rgba(16, 83, 73, 0.24);
}

.services-showcase-card:hover h3,
.services-showcase-card:focus-within h3 {
  color: #ffffff;
  transform: translateY(-2px);
}

.services-showcase-card:hover p,
.services-showcase-card:hover .services-showcase-link,
.services-showcase-card:focus-within p,
.services-showcase-card:focus-within .services-showcase-link {
  opacity: 1;
  max-height: 120px;
  transform: translateY(0);
}

.services-showcase-card:hover .services-showcase-arrow,
.services-showcase-card:focus-within .services-showcase-arrow {
  background: #ffffff;
  color: var(--ghh-primary);
  transform: translateX(2px);
}

.services-page-intro {
  max-width: 95%
}

.services-page-title {
  margin: 0 0 16px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.02;
}

.services-page-title span {
  color: var(--ghh-primary);
}

.services-page-copy {
  max-width: 760px;
  color: var(--ghh-muted);
}

.services-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.services-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.services-category-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--ghh-border);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.services-category-chip.is-active {
  border-color: #274f8c;
  background: #274f8c;
  color: #ffffff;
}

.services-term-grid-section .section-heading {
  margin-bottom: 28px;
}

.doctor-page-hero {
  display: grid;
  gap: 46px;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
}

.doctor-page-shell {
  position: relative;
  overflow-x: clip;
}

.doctor-page-title {
  margin: 0 0 18px;
  display: grid;
  gap: 0.08em;
  font-size: clamp(2.7rem, 4.8vw, 3.2rem);
  line-height: 1.02;
}

.doctor-page-title-dark {
  color: #0a0a0a;
}

.doctor-page-title-accent {
  color: var(--ghh-primary);
}

.doctor-page-copy p {
  color: #3b3b3b;
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
}

.doctor-page-copy {
  max-width: 500px;
}

.doctor-page-why {
  margin-top: 28px;
}

.doctor-page-why h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.doctor-hero-cta {
  margin-top: 24px;
  padding-inline: 28px;
  min-height: 50px;
  border-radius: 8px;
  box-shadow: none;
}

.doctor-page-image-wrap {
  position: relative;
}

.doctor-page-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--ghh-shadow);
  min-height: 460px;
  object-fit: cover;
}

.doctor-page-socials {
  position: absolute;
  top: 18px;
  right: -52px;
  display: grid;
  gap: 12px;
}

.doctor-page-socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ghh-primary), #49c89f);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(24, 180, 163, 0.18);
}

.doctor-floating-contact {
  position: fixed;
  top: 20%;
  right: 24px;
  z-index: 140;
  display: grid;
  gap: 10px;
}

.doctor-floating-contact-link {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(24, 42, 64, 0.18);
  overflow: hidden;
}

.doctor-floating-contact-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-search-section {
  position: relative;
  z-index: 2;
  margin-top: 28px;
}

.doctor-single-search {
  margin-top: 0;
}

.doctor-single-page {
  padding-top: 44px;
}

.doctor-single-page .container {
  width: min(1260px, calc(100% - 32px));
}

.doctor-single-spotlight-shell {
  padding: 26px 28px 24px;
}

.doctor-single-spotlight-header {
  max-width: 100%;
  margin: 24px 0 28px;
  text-align: left;
}

.doctor-search-bar {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr)) 56px 150px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(33, 68, 120, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
}

.doctor-search-bar input,
.doctor-search-bar select,
.doctor-contact-grid select {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(33, 68, 120, 0.28);
  border-radius: 8px;
  font: inherit;
  background: #fff;
  font-size: 14px;
  font-style: italic;
}

.doctor-filter-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ghh-primary), #49c89f);
  box-shadow: none;
}

.doctor-filter-button span,
.doctor-filter-button span::before,
.doctor-filter-button span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  content: "";
}

.doctor-filter-button span::before {
  transform: translateY(-6px);
}

.doctor-filter-button span::after {
  transform: translateY(4px);
}

.doctor-search-submit {
  width: 100%;
  min-height: 46px;
  border-radius: 8px;
  box-shadow: none;
}

.doctor-results-section {
  padding-top: 18px;
}

.doctor-single-specialties {
  margin-top: 24px;
  margin-bottom: 0;
}

.doctor-single-primary-specialty-wrap {
  margin-bottom: 20px;
}

.doctor-single-primary-specialty {
  min-height: 32px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
}

.doctor-single-related-specialties-block {
  margin-top: 22px;
  padding-top: 8px;
}

.doctor-single-related-specialties-copy {
  margin-bottom: 14px;
}

.doctor-single-related-specialties-copy .section-eyebrow {
  margin-bottom: 8px;
}

.doctor-single-related-specialties-copy h2 {
  margin: 0;
  color: #102137;
  font-size: 1.35rem;
  line-height: 1.2;
}

.doctor-single-related-specialties {
  margin-top: 0;
}

.doctor-single-specialties .doctor-spotlight-specialty-list {
  width: 100%;
}

.doctor-single-specialties .doctor-spotlight-specialty {
  display: inline-flex;
  min-height: 36px;
  padding: 0 18px;
  font-size: 14px;
}

.doctor-single-meta-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.doctor-single-meta-grid-inline {
  margin-top: 24px;
}

.doctor-single-meta-item {
  min-height: 92px;
  padding: 16px 18px;
  border: 1px solid var(--ghh-border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(24, 42, 64, 0.08);
}

.doctor-single-meta-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--ghh-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.doctor-single-meta-item strong {
  color: #11233b;
  font-size: 15px;
  line-height: 1.4;
}

.doctor-single-content {
  margin-top: 28px;
  color: #2d3d4f;
}

.doctor-single-content-inline {
  margin-top: 24px;
}

.doctor-single-spotlight-panel > .doctor-single-content-inline {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.doctor-single-content > :first-child {
  margin-top: 0;
}

.doctor-single-content p {
  margin: 0 0 14px;
  color: #2d3d4f;
  font-size: 16px;
  line-height: 1.6;
}

.doctor-single-content h2,
.doctor-single-content h3,
.doctor-single-content h4 {
  margin: 24px 0 10px;
  color: #102137;
  font-size: 1.3rem;
  line-height: 1.2;
}

.doctor-single-content ul,
.doctor-single-content ol {
  margin: 0 0 16px 20px;
  color: #2d3d4f;
}

.doctor-single-content li {
  margin-bottom: 8px;
  line-height: 1.55;
}

.doctor-single-expertise {
  margin-top: 30px;
}

.doctor-single-expertise h2 {
  margin: 0 0 14px;
  color: #102137;
  font-size: 1.45rem;
}

.doctor-single-expertise ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.doctor-single-expertise li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #2d3d4f;
  font-size: 16px;
  line-height: 1.55;
}

.doctor-single-expertise li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ghh-primary);
  content: "•";
}

.doctor-single-related .section-heading {
  margin-bottom: 30px;
}

.doctor-single-spotlight-panel {
  display: grid;
}

.doctor-listing-grid {
  display: grid;
  gap: 26px 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.doctor-directory-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid var(--ghh-border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(24, 42, 64, 0.12);
  text-align: center;
}

.doctor-card-status {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.doctor-card-status.is-available {
  background: #31b96d;
}

.doctor-card-status.is-limited {
  background: #dbe8f8;
  border-color: var(--ghh-accent);
}

.doctor-directory-image img {
  width: 100%;
  height: 295px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg, #dfeaf5, #eef5fb);
}

.doctor-badge {
  position: absolute;
  left: 14px;
  top: 258px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  max-width: calc(100% - 28px);
  padding: 0 10px;
  border-radius: 8px;
  background: #18a5f5;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.doctor-directory-body {
  padding: 16px 14px 14px;
}

.doctor-directory-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.doctor-directory-meta {
  margin: 0;
  color: var(--ghh-muted);
  font-size: 11px;
  font-weight: 500;
  font-style: italic;
}

.doctor-directory-submeta {
  min-height: 34px;
  margin: 2px 0 0;
  color: var(--ghh-muted);
  font-size: 11px;
  font-style: italic;
  line-height: 1.35;
}

.doctor-directory-cta {
  width: 100%;
  margin-top: 10px;
  min-height: 36px;
  border-radius: 6px;
  box-shadow: none;
  font-size: 11px;
  font-weight: 700;
}

.doctor-directory-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--ghh-primary);
  font-size: 14px;
  font-weight: 700;
}

.doctor-pagination {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.doctor-pagination-btn {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
}

.doctor-pagination-prev {
  background: #234d89;
}

.doctor-pagination-next {
  background: var(--ghh-primary);
}

.doctor-pagination-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.doctor-results-empty {
  padding: 56px 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--ghh-border);
  box-shadow: var(--ghh-shadow);
  text-align: center;
}

.services-archive-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card-archive {
  overflow: hidden;
}

.services-value-banner {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 40px;
  border-radius: 28px;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.services-value-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.services-value-copy h2 span {
  color: #d8fff8;
}

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

.services-value-pill {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ghh-text);
  font-weight: 700;
  box-shadow: var(--ghh-shadow);
}

.service-single-layout {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1fr 0.9fr;
}

.service-single-image img {
  width: 100%;
  border-radius: calc(var(--ghh-radius) + 6px);
  box-shadow: var(--ghh-shadow);
}

.service-single-excerpt {
  color: var(--ghh-muted);
  font-size: 1.05rem;
}

.service-single-content {
  margin-top: 36px;
}

.service-detail-hero-grid,
.service-procedures-grid {
  display: grid;
  gap: 36px;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-image img,
.service-procedures-image img {
  width: 100%;
  border-radius: calc(var(--ghh-radius) + 4px);
  box-shadow: var(--ghh-shadow);
  object-fit: cover;
}

.service-detail-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 5vw, 3.2rem);
  line-height: 1.03;
}

.service-detail-copy h1 span {
  color: var(--ghh-primary);
}

.service-detail-copy p {
  color: var(--ghh-muted);
}

.service-detail-dual {
  display: grid;
  gap: 30px;
  grid-template-columns: 0.95fr 1.05fr;
}

.service-tech-card {
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #3eb695, #55d8b4);
  color: #050505;
}

.service-tech-card .section-eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.service-tech-card h2,
.service-approach-card h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.25;
  color: #050505;
}

.service-tech-card h2 {
  color: rgba(255, 255, 255, 0.96);
}

.service-tech-card h2 span {
  color: #050505;
}

.service-tech-card p {
  margin: 0;
  color: rgba(10, 26, 24, 0.9);
  font-style: italic;
}

.service-approach-card {
  padding: 18px 0;
}

.service-approach-card p,
.service-detail-list-item p,
.service-detail-list-item h3,
.service-approach-card .section-eyebrow,
.service-tech-card .section-eyebrow {
  color: #050505;
}

.service-tech-card .service-detail-list-item h3 {
  color: #050505;
  font-size: 1.05rem;
  line-height: 1.2;
}

.service-tech-card .service-detail-list-item p {
  color: rgba(10, 26, 24, 0.9);
  font-style: italic;
}

.service-detail-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.service-detail-list-item {
  display: grid;
  gap: 14px;
  grid-template-columns: 46px 1fr;
  align-items: start;
}

.service-detail-list-item h3 {
  margin: 0 0 4px;
}

.service-detail-list-item p,
.service-procedure-item,
.service-faq-answer {
  color: var(--ghh-muted);
}

.service-detail-number {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  font-style: italic;
  color: #050505;
}

.service-tech-card .service-detail-number {
  color: rgba(255, 255, 255, 0.94);
}

.service-procedures-grid h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  color: #050505;
}

.service-procedures-intro {
  margin: 0 0 18px;
  color: #050505;
  line-height: 1.45;
}

.service-procedures-list {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.service-procedure-item {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ghh-border);
}

.service-procedure-item h3 {
  margin: 0 0 4px;
  color: #050505;
  font-size: 1.1rem;
  line-height: 1.2;
}

.service-procedure-item p {
  margin: 0;
  color: #2f2f2f;
  font-size: 13px;
  font-style: italic;
  line-height: 1.45;
}

.service-faq-accordion {
  border: 1px solid #2f5b96;
  border-radius: 12px;
  overflow: hidden;
}

.service-faq-item {
  border-bottom: 1px solid #2f5b96;
  background: #fff;
}

.service-faq-item:last-child {
  border-bottom: 0;
}

.service-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.service-faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ghh-primary);
}

.service-faq-item[open] > summary::after {
  content: '\2212';
}

.service-faq-answer {
  padding: 0 20px 18px;
}

.featured-doctor-card {
  display: grid;
  gap: 28px;
  grid-template-columns: 300px minmax(0, 1fr);
  background: var(--ghh-surface);
  border: 1px solid var(--ghh-border);
  border-radius: calc(var(--ghh-radius) + 2px);
  box-shadow: var(--ghh-shadow);
  overflow: hidden;
  margin-bottom: 24px;
}

.featured-doctor-image img {
  height: 100%;
  border-radius: 0;
}

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

.doctor-spotlight-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.doctor-spotlight-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ghh-primary);
  font-size: 16px;
  font-weight: 700;
}

.doctor-spotlight-title {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.16em;
  font-size: clamp(2.2rem, 4vw, 3.85rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
}

.doctor-spotlight-title-dark {
  color: #050505;
}

.doctor-spotlight-title-accent {
  color: var(--ghh-primary);
}

.doctor-spotlight-intro {
  max-width: 760px;
  margin: 18px auto 0;
  color: #343434;
  font-size: 16px;
  font-style: italic;
  line-height: 1.45;
}

.doctor-spotlight-explore {
  min-width: 176px;
  margin-top: 28px;
  border-radius: 10px;
  box-shadow: none;
}

.doctor-spotlight-shell {
  padding: 34px 34px 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(20, 42, 74, 0.12);
}

.doctor-spotlight-specialties {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.doctor-spotlight-specialty-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.doctor-spotlight-specialty {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: #d5e0ee;
  color: #121212;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.doctor-spotlight-specialty.is-active {
  background: #1ea0ea;
  color: #ffffff;
}

.doctor-spotlight-nav {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--ghh-primary);
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

.doctor-spotlight-nav .dashicons {
  width: auto;
  height: auto;
  font-size: 24px;
  line-height: 1;
}

.doctor-spotlight-nav-prev {
  background: #d5e0ee;
  color: #050505;
}

.doctor-spotlight-nav-blue {
  background: #234d89;
  color: #ffffff;
}

.doctor-spotlight-panel {
  display: none;
  gap: 34px;
  align-items: stretch;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
}

.doctor-spotlight-panel.is-active {
  display: grid;
}

.doctor-spotlight-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  background: #dfeaf7;
}

.doctor-spotlight-content {
  display: flex;
  flex-direction: column;
}

.doctor-spotlight-heading-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.doctor-spotlight-content h3 {
  margin: 0;
  color: #050505;
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.12;
}

.doctor-spotlight-status {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 16px;
  border-radius: 50%;
  background: var(--ghh-primary);
}

.doctor-spotlight-qualification {
  margin: 10px 0 0;
  color: #121212;
  font-size: 16px;
  font-weight: 700;
}

.doctor-spotlight-description {
  margin: 26px 0 0;
  color: #343434;
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
}

.doctor-spotlight-expertise {
  margin-top: 26px;
}

.doctor-spotlight-expertise h4 {
  margin: 0 0 10px;
  color: #101010;
  font-size: 17px;
}

.doctor-spotlight-expertise ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.doctor-spotlight-expertise li {
  position: relative;
  padding-left: 28px;
  color: #343434;
  font-size: 16px;
  font-style: italic;
  line-height: 1.45;
}

.doctor-spotlight-expertise li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "-";
}

.doctor-spotlight-readmore {
  margin-top: 24px;
  color: var(--ghh-primary);
  font-size: 16px;
  font-weight: 700;
}

.doctor-spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.doctor-spotlight-appointment {
  min-width: 254px;
  border-radius: 12px;
  box-shadow: none;
}

.doctor-spotlight-message {
  min-width: 166px;
  border: 2px solid #2f5b96;
  border-radius: 12px;
  background: #ffffff;
  color: #214478;
}

.doctor-spotlight-panel-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 22px;
}

.why-choose-section {
  background: #ffffff;
}

.why-choose-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.why-choose-copy {
  max-width: 920px;
}

.why-choose-eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--ghh-primary);
  font-size: 16px;
  font-weight: 700;
}

.why-choose-title {
  display: grid;
  gap: 0.16em;
  margin: 0;
  color: #050505;
  font-size: clamp(2.4rem, 4.1vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.why-choose-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.16em;
}

.why-choose-title-dark {
  color: #050505;
}

.why-choose-title-accent {
  color: var(--ghh-primary);
}

.why-choose-text {
  max-width: 920px;
  margin: 28px 0 0;
  color: #222222;
  font-size: clamp(1.05rem, 1.65vw, 1.05rem);
  font-style: italic;
  line-height: 1.6;
}

.why-choose-button {
  min-width: 186px;
  min-height: 52px;
  margin-top: 34px;
  padding: 0 28px;
  border-radius: 12px;
  background: #284f8d;
  color: #ffffff;
  box-shadow: none;
  font-size: 17px;
  font-weight: 800;
}

.why-choose-image img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.intro-section-title,
.promise-title,
.services-showcase-title,
.doctor-spotlight-title,
.why-choose-title,
.testimonials-showcase-title,
.appointment-showcase-title,
.conditions-showcase-title,
.news-showcase-title {
  font-size: 2.8rem;
}

.doctor-meta,
.news-date,
.testimonial-person span {
  color: var(--ghh-muted);
  font-size: 14px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.testimonial-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.appointment-section {
  background: #d2deec;
  overflow-x: clip;
}

.appointment-form {
  display: grid;
  gap: 12px;
}

.appointment-showcase-grid {
  display: grid;
  gap: 44px;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.appointment-showcase-copy {
  max-width: 100%;
  min-width: 0;
}

.appointment-showcase-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--ghh-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.appointment-showcase-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.16em;
  max-width: 660px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.appointment-showcase-title-dark {
  color: #050505;
}

.appointment-showcase-title-accent {
  color: var(--ghh-primary);
}

.appointment-showcase-text {
  max-width: 640px;
  margin: 18px 0 0;
  color: #1c1c1c;
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
}

#services-contact .appointment-showcase-text {
  margin-top: 14px;
  font-size: 10px;
  line-height: 1.35;
  max-width: 560px;
}

.appointment-showcase-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 14px;
  margin-top: 30px;
}

.appointment-showcase-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.appointment-showcase-field label {
  color: #111111;
  font-size: 14px;
  font-weight: 700;
}

.appointment-showcase-field-message {
  grid-column: 1 / -1;
}

.appointment-showcase-field-empty {
  visibility: hidden;
}

.appointment-showcase-form input,
.appointment-showcase-form textarea,
.appointment-showcase-form select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #5077ad;
  border-radius: 8px;
  background: #f8f8f8;
  color: #1b1b1b;
  box-shadow: none;
  font-size: 14px;
  font-style: normal;
  line-height: 1.2;
}

.appointment-showcase-form textarea {
  min-height: 88px;
  padding-top: 14px;
  resize: vertical;
}

.appointment-showcase-form select {
  appearance: auto;
}

.appointment-showcase-form ::placeholder {
  color: #747f90;
  font-style: italic;
}

.appointment-showcase-submit {
  min-width: 108px;
  min-height: 44px;
  margin-top: 12px;
  border-radius: 6px;
  background: #284f8d;
  color: #ffffff;
  box-shadow: none;
  justify-self: start;
  padding-inline: 22px;
  font-size: 14px;
  font-weight: 700;
}

.appointment-showcase-image {
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
}

.appointment-showcase-image img {
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: none;
  object-fit: cover;
}

.appointment-form:not(.appointment-showcase-form) input,
.appointment-form:not(.appointment-showcase-form) textarea,
.appointment-form:not(.appointment-showcase-form) select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(21, 38, 63, 0.12);
  border-radius: 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.88);
}

.doctor-contact-grid {
  display: grid;
  gap: 16px 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.doctor-contact-message {
  grid-column: 1 / -1;
}

.doctor-form-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.form-feedback {
  margin: 20px 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(24, 180, 163, 0.12);
  color: var(--ghh-primary-dark);
  font-weight: 700;
}

.conditions-showcase-section {
  background: #ffffff;
}

.conditions-showcase-heading {
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: center;
}

.conditions-showcase-button {
  min-width: 172px;
  margin-top: 24px;
  border-radius: 10px;
  box-shadow: none;
}

.conditions-showcase-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ghh-primary);
  font-size: 16px;
  font-weight: 700;
}

.conditions-showcase-title {
  display: block;
  margin: 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.conditions-title-dark {
  color: var(--ghh-dark);
}

.conditions-title-accent {
  color: var(--ghh-primary);
}

.conditions-showcase-line {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.16em;
  flex-wrap: wrap;
}

.conditions-showcase-dark {
  color: #050505;
}

.conditions-showcase-accent {
  color: var(--ghh-primary);
}

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

.condition-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 248px;
  background: #dfeaf7;
}

.condition-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.condition-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(180deg, rgba(12, 46, 77, 0), rgba(25, 118, 126, 0.28));
  color: #fff;
}

.conditions-showcase-grid {
  width: calc(100% + 16px);
  margin-right: -16px;
  gap: 14px;
}

.conditions-showcase-carousel {
  overflow: hidden;
}

.conditions-showcase-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.conditions-showcase-page {
  flex: 0 0 100%;
}

.conditions-showcase-page .conditions-showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.conditions-showcase-overlay {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.conditions-showcase-overlay h3 {
  max-width: 250px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  font-weight: 700;
  line-height: 1.08;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.18);
}

.conditions-showcase-overlay h3 a {
  color: inherit;
}

.conditions-showcase-copy {
  display: grid;
  gap: 8px;
}

.conditions-showcase-copy p {
  margin: 0;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-style: italic;
  line-height: 1.4;
}

.conditions-showcase-arrow {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ghh-primary);
  color: #ffffff;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.conditions-showcase-arrow span {
  display: inline-block;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transform: translateX(0.5px);
}

.conditions-showcase-card:hover .conditions-showcase-arrow,
.conditions-showcase-card:focus-within .conditions-showcase-arrow {
  transform: translateX(2px);
}

.conditions-showcase-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.conditions-showcase-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(60, 176, 144, 0.45);
}

.conditions-showcase-dots .is-active {
  width: 18px;
  border-radius: 999px;
  background: var(--ghh-primary);
}

.news-showcase-section {
  background: #d2deec;
}

.news-showcase-heading {
  max-width: 620px;
  margin-bottom: 30px;
}

.news-showcase-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--ghh-primary);
  font-size: 14px;
  font-weight: 700;
}

.news-showcase-title {
  display: grid;
  gap: 0.1em;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.08;
}

.news-showcase-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.16em;
}

.news-showcase-dark {
  color: #050505;
}

.news-showcase-accent {
  color: var(--ghh-primary);
}

.news-showcase-text {
  max-width: 580px;
  margin: 14px 0 0;
  color: #2f2f2f;
  font-size: 14px;
  font-style: italic;
}

.news-showcase-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.news-showcase-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(22, 34, 54, 0.08);
}

.news-showcase-featured {
  padding: 24px;
}

.news-showcase-featured-image img {
  width: 100%;
  height: 430px;
  border-radius: 14px;
  object-fit: cover;
}

.news-showcase-featured-body {
  margin-top: 16px;
}

.news-showcase-date {
  color: #37af94;
  font-size: 13px;
  font-weight: 700;
}

.news-showcase-featured h3,
.news-showcase-top h3,
.news-showcase-small h3 {
  margin: 12px 0 8px;
  color: #0d0d0d;
  font-size: clamp(1.25rem, 1.8vw, 2.2rem);
  line-height: 1.15;
}

.news-showcase-featured p,
.news-showcase-top p,
.news-showcase-small p {
  margin: 0;
  color: #2e2e2e;
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
}

.news-showcase-button {
  min-width: 124px;
  min-height: 40px;
  margin-top: 16px;
  border-radius: 8px;
  background: #284f8d;
  color: #ffffff;
  box-shadow: none;
}

.news-showcase-right {
  display: grid;
  gap: 16px;
}

.news-showcase-top {
  display: grid;
  gap: 16px;
  padding: 20px;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.news-showcase-top-image img {
  width: 100%;
  height: 286px;
  border-radius: 14px;
  object-fit: cover;
}

.news-showcase-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 16px;
  border: 2px solid #47bea3;
  border-radius: 999px;
  color: #37af94;
  font-size: 14px;
  font-weight: 700;
}

.news-showcase-bottom-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-blog-page-section {
  background: #ffffff;
}

.news-blog-page-heading {
  max-width: 820px;
}

.news-blog-page-title {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
}

.news-blog-page-featured {
  margin-top: 12px;
}

.news-blog-page-grid {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-blog-page-card h3 {
  margin: 10px 0 8px;
}

.news-blog-page-card p {
  margin: 0;
  color: #2e2e2e;
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
}

.news-blog-page-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--ghh-primary-dark);
  font-weight: 700;
}

.news-blog-page-pagination {
  margin-top: 28px;
}

.case-studies-archive-section {
  background: #ffffff;
}

.case-studies-archive-heading {
  margin-left: auto;
  margin-right: auto;
}

.case-study-card-body h2,
.case-study-card-body h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.25rem, 1.8vw, 2rem);
  line-height: 1.15;
}

.case-study-card-body p {
  margin: 0;
  color: #2e2e2e;
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
}

.case-studies-empty {
  text-align: center;
  color: var(--ghh-muted);
}

.case-study-single-section {
  background: #ffffff;
}

.case-study-single-content {
  max-width: 920px;
}

.case-study-single-date {
  margin: 0 0 18px;
  color: var(--ghh-primary);
  font-size: 14px;
  font-weight: 700;
}

.case-study-single-image {
  margin-bottom: 28px;
}

.case-study-single-image img,
.single-featured-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.case-study-single-back-wrap {
  margin-top: 28px;
}

.case-study-single-back {
  min-height: 48px;
  border-radius: 10px;
  box-shadow: none;
}

.news-showcase-small {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 260px;
  padding: 20px;
}

.prose-content {
  max-width: 90%;
}

.testimonials-showcase-heading {
  max-width: 980px;
  margin: 0 auto 36px;
  text-align: center;
}

.testimonials-showcase-title {
  display: grid;
  gap: 0.1em;
  margin: 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.testimonials-showcase-line {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.16em;
  flex-wrap: wrap;
}

.testimonials-showcase-dark {
  color: #050505;
}

.testimonials-showcase-accent {
  color: var(--ghh-primary);
}

.testimonials-showcase-text {
  max-width: 740px;
  margin: 18px auto 0;
  color: var(--ghh-muted);
}

.site-footer {
  padding: 0 0 30px;
  background: #ffffff;
  color: #111111;
  border-top: 20px solid #d2deec;
}

.accent-text {
  color: var(--ghh-primary);
}

.about-page-title {
  margin: 0 0 12px;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
}

.about-page-title span {
  color: var(--ghh-primary);
}

.about-section-eyebrow {
  color: #38b497;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.about-intro-section {
  padding-top: 36px;
  background: #ffffff;
}

.about-mission-section,
.about-advantage-section,
#about-contact.appointment-section {
  background: #ffffff;
}

.about-leadership-section {
  background: #d2deec;
  padding-top: 52px;
  padding-bottom: 52px;
}

.about-intro-grid {
  align-items: start;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 34px;
}

.about-intro-image-wrap img {
  width: 100%;
  max-width: 100%;
  border-radius: 24px;
  box-shadow: none;
}

.about-intro-copy {
  padding-top:100px;
  max-width: 500px;
}

.about-intro-title {
  display: flex;
  flex-wrap: wrap;
  gap: 0.16em;
  margin: 0;
  color: #0c0c0c;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.08;
}

.about-intro-title-dark {
  color: #050505;
}

.about-intro-title-accent {
  color: var(--ghh-primary);
}

.about-intro-text {
  margin: 16px 0 0;
  color: #191919;
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
}

.about-intro-text p,
.about-leadership-intro p,
.about-leadership-text p,
.about-advantage-text p {
  margin: 0;
}

.about-intro-text p + p,
.about-leadership-intro p + p,
.about-leadership-text p + p,
.about-advantage-text p + p {
  margin-top: 1em;
}

.about-section-heading {
  text-align: left;
}

.about-section-title {
  display: flex;
  flex-wrap: wrap;
  gap: 0.16em;
  margin: 0;
  color: #0c0c0c;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.08;
}

.about-section-title-dark {
  color: #050505;
}

.about-section-title-accent {
  color: var(--ghh-primary);
}

.about-mission-section .about-section-heading {
  max-width: none;
  margin-bottom: 28px;
}

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

.about-value-card {
  padding: 18px 16px;
  background: #fff;
  border: 1px solid var(--ghh-border);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(27, 48, 78, 0.1);
}

.about-value-card h3 {
  margin: 0 0 8px;
  color: #2fad92;
  font-size: 1.45rem;
  line-height: 1.12;
}

.about-value-subtitle {
  margin-bottom: 12px;
  color: #2fad92;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
}

.about-value-card p {
  margin: 0;
  color: #0d0d0d;
  font-size: 13px;
  line-height: 1.4;
}

.about-leadership-grid {
  display: grid;
  column-gap: 38px;
  row-gap: 10px;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.9fr);
  grid-template-areas: "body visual";
}

.about-leadership-shell {
  display: grid;
  gap: 26px;
}

.about-leadership-top {
  display: grid;
  gap: 22px;
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-content: center;
}

.about-leadership-title {
  display: grid;
  gap: 0.08em;
  max-width: 460px;
}

.about-leadership-title .about-section-title-dark,
.about-leadership-title .about-section-title-accent {
  display: block;
}

.about-leadership-title .about-section-title-dark {
  white-space: nowrap;
}

.about-leadership-title .about-section-title-accent {
  width: 100%;
}

.about-leadership-intro {
  margin: 0;
  color: #2f2f2f;
  font-size: 14px;
  font-style: italic;
  line-height: 1.45;
}

.about-leadership-text {
  margin: 0;
  color: #2e2e2e;
  font-size: 14px;
  font-style: italic;
  line-height: 1.52;
  padding-top: 30px;
}

.about-leadership-body {
  grid-area: body;
  max-width: 820px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-leader-meta {
  display: grid;
  gap: 4px;
  margin-top: 24px;
}

.about-leader-meta strong {
  color: #111111;
  font-size: 20px;
  line-height: 1.25;
}

.about-leader-meta span {
  color: #111111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.about-leader-meta small {
  margin-top: 6px;
  color: #2f2f2f;
  font-size: 15px;
  font-style: italic;
  line-height: 1.35;
}

.about-leadership-carousel-nav {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.about-leadership-carousel-nav.is-static {
  visibility: hidden;
}

.about-leadership-nav-btn {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.about-leadership-nav-btn .dashicons {
  width: auto;
  height: auto;
  font-size: 22px;
  line-height: 1;
}

.about-leadership-nav-btn:hover:not(:disabled),
.about-leadership-nav-btn:focus-visible:not(:disabled) {
  transform: translateY(-1px);
}

.about-leadership-nav-btn:disabled {
  opacity: 0.55;
  cursor: default;
}

.about-leadership-nav-prev {
  background: #214478;
}

.about-leadership-nav-next {
  background: #3cb090;
}

.about-leadership-visual img {
  width: 100%;
  max-width: 540px;
  min-height: 500px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: none;
  margin-left: auto;
}

.about-leadership-visual {
  grid-area: visual;
}

.about-leadership-slides {
  position: relative;
}

.about-leadership-slide {
  display: none;
}

.about-leadership-slide.is-active {
  display: grid;
}

.about-advantage-grid {
  padding-top: 80px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.about-advantage-card {
  padding: 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, #38b497, #1b8f7a);
  color: #fff;
}

.about-advantage-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.28;
}

.about-advantage-layout {
  display: grid;
  gap: 28px;
  align-items: start;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  grid-template-areas:
    "copy right"
    "left right";
}

.about-advantage-copy {
  grid-area: copy;
}

.about-advantage-card-left {
  grid-area: left;
}

.about-advantage-grid {
  grid-area: right;
}

.about-advantage-text {
  margin: 16px 0 0;
  color: #2f2f2f;
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
}

.about-advantage-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  line-height: 1.5;
}

.reveal-on-scroll {
  opacity: 1;
  transform: none;
}

.has-reveal-motion .reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.has-reveal-motion .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.footer-shell {
  padding: 46px 22px 0;
  background: #ffffff;
}

.footer-main {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.16fr 1.7fr 0.85fr 1fr 1.05fr;
}

.footer-brand {
  display: inline-flex;
  line-height: 0;
}

.footer-brand-logo {
  width: auto;
  height: 90px;
  object-fit: contain;
}

.footer-brand-column,
.footer-links-column,
.footer-contact-column {
  min-width: 0;
}

.footer-links-column h4,
.footer-contact-column h4 {
  margin: 0 0 16px;
  color: #111111;
  font-size: 16px;
  font-weight: 700;
}

.footer-subheading {
  margin-top: 28px !important;
}

.footer-links-double {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links-list li + li {
  margin-top: 8px;
}

.footer-links-list a {
  color: #2f2f2f;
  font-size: 13px;
  font-style: italic;
  line-height: 1.45;
}

.footer-socials {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  margin-top: 24px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  color: #214478;
  font-size: 16px;
  font-weight: 700;
}

.footer-address {
  margin: 0;
  color: #2f2f2f;
  font-size: 13px;
  font-style: italic;
  line-height: 1.72;
}

.footer-contact-link {
  display: block;
  margin-top: 12px;
  color: #2f2f2f;
  font-size: 13px;
  font-style: italic;
}

.footer-contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  color: #111111;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.footer-phone-icon {
  display: inline-block;
  color: #111111;
  font-size: 16px;
  line-height: 1;
}

.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(21, 38, 63, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: #9d9d9d;
  font-size: 13px;
}

.footer-credit {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.footer-credit span {
  color: #7f8793;
  font-size: 10px;
  font-style: italic;
}

.footer-credit img {
  width: auto;
  height: 34px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-section,
  .appointment-grid,
  .appointment-showcase-grid,
  .intro-section,
  .featured-doctor-card {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .services-archive-grid,
  .testimonial-grid,
  .news-showcase-bottom-grid,
  .news-grid,
  .news-blog-page-grid,
  .archive-grid,
  .condition-grid,
  .doctor-grid,
  .about-values-grid,
  .services-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-page-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-leadership-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "body"
      "visual";
    align-items: start;
  }

  .about-leadership-top {
    grid-template-columns: 1fr;
  }

  .about-advantage-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "left"
      "right";
  }

  .about-advantage-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-title,
  .about-section-title {
    font-size: 2.35rem;
  }

  .services-value-banner,
  .service-single-layout,
  .service-detail-hero-grid,
  .service-detail-dual,
  .service-procedures-grid,
  .doctor-page-hero,
  .promise-layout,
  .news-showcase-layout,
  .news-showcase-top {
    grid-template-columns: 1fr;
  }

  .doctor-search-bar,
  .doctor-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doctor-single-layout,
  .doctor-single-meta-grid {
    grid-template-columns: 1fr;
  }

  .doctor-pagination {
    justify-content: center;
  }

  .doctor-page-copy {
    max-width: none;
  }

  .doctor-spotlight-panel {
    grid-template-columns: 1fr;
  }

  .doctor-spotlight-visual img {
    min-height: 420px;
  }

  .services-showcase-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-showcase-actions {
    justify-content: flex-start;
  }

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

  .footer-links-column-wide {
    grid-column: span 2;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-copy {
    max-width: none;
  }

  .intro-section {
    gap: 40px;
  }

  .intro-section-media {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px 0;
  }

  .intro-section-copy {
    max-width: none;
  }

  .promise-heading {
    margin-bottom: 36px;
  }

  .promise-grid {
    gap: 22px;
  }

  .promise-card-benefit {
    min-height: 200px;
    padding: 26px;
  }

  .promise-feature {
    padding: 26px;
  }

  .doctor-page-socials {
    position: static;
    margin-top: 16px;
    grid-auto-flow: column;
    justify-content: start;
  }

  .doctor-floating-contact {
    right: 16px;
  }

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

  .contact-page-info-grid,
  .contact-showcase-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-page-meta {
    margin-top: 0;
  }

  .contact-page-socials {
    position: static;
    margin-bottom: 16px;
    grid-auto-flow: column;
    justify-content: start;
  }

  .section-heading.between,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Mobile menu components ─────────────────────────────── */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-toggle:hover {
  background: rgba(21, 38, 63, 0.06);
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #1f1f1f;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 200;
  width: min(340px, 88vw);
  background: #fff;
  box-shadow: -4px 0 32px rgba(21, 38, 63, 0.15);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: none;
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(10, 20, 40, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  display: none;
}

.mobile-nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 20px 24px 32px;
  min-height: 100%;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(21, 38, 63, 0.1);
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(21, 38, 63, 0.06);
  color: #1f1f1f;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav-close:hover {
  background: rgba(21, 38, 63, 0.12);
}

.mobile-nav .mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav .mobile-menu li {
  border-bottom: 1px solid rgba(21, 38, 63, 0.07);
}

.mobile-nav .mobile-menu a {
  display: block;
  padding: 13px 0;
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  text-decoration: none;
}

.mobile-nav .mobile-menu a:hover {
  color: #1a457d;
}

.mobile-nav .mobile-menu .current-menu-item > a,
.mobile-nav .mobile-menu .current_page_item > a {
  color: #1a457d;
  font-style: normal;
  font-weight: 700;
}

.mobile-nav .mobile-menu .sub-menu {
  list-style: none;
  margin: 0 0 8px;
  padding: 0 0 0 14px;
}

.mobile-nav .mobile-menu .sub-menu a {
  padding: 8px 0;
  font-size: 13px;
}

.mobile-nav-cta {
  display: inline-flex;
  justify-content: center;
  margin-top: 28px;
  border-radius: 12px;
  background: #1a457d;
  box-shadow: none;
  width: 100%;
}

body.mobile-menu-open {
  overflow: hidden;
}

/* ── End mobile menu components ─────────────────────────── */

@media (max-width: 720px) {
  .primary-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle,
  .mobile-nav-drawer,
  .mobile-nav-overlay {
    display: flex;
  }

  .mobile-nav-drawer {
    display: block;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .section-space {
    padding: 54px 0;
  }

  .service-grid,
  .services-archive-grid,
  .testimonial-grid,
  .news-showcase-bottom-grid,
  .news-grid,
  .news-blog-page-grid,
  .archive-grid,
  .condition-grid,
  .doctor-grid,
  .about-values-grid,
  .about-advantage-grid,
  .services-value-grid,
  .doctor-listing-grid {
    grid-template-columns: 1fr;
  }

  .legal-page-eyebrow {
    font-size: 15px;
  }

  .legal-page-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .legal-page-intro,
  .legal-page-block p,
  .error-page-text {
    font-size: 15px;
  }

  .legal-page-block h2 {
    font-size: 1.45rem;
  }

  .about-intro-title,
  .about-section-title {
    font-size: clamp(2rem, 9vw, 2.35rem);
  }

  .about-leadership-visual img {
    min-height: 0;
    max-width: 420px;
    margin-left: 0;
  }

  .about-leader-meta strong,
  .about-leader-meta span {
    font-size: 18px;
  }

  .about-leader-meta small {
    font-size: 14px;
  }

  .about-value-card h3,
  .about-advantage-card h3 {
    font-size: 1.2rem;
  }

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

  .doctor-directory-image img {
    height: 270px;
  }

  .doctor-badge {
    top: 234px;
  }

  .contact-page-title {
    font-size: 2.8rem;
  }

  .contact-page-intro,
  .contact-page-note {
    font-size: 16px;
  }

  .contact-page-form,
  .contact-showcase-form,
  .appointment-showcase-form {
    grid-template-columns: 1fr;
  }

  .appointment-showcase-field-empty {
    display: none;
  }

  .contact-showcase-field-empty {
    display: none;
  }

  .contact-page-field-empty {
    display: none;
  }

  .contact-page-meta-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-page-map iframe {
    height: 320px;
  }

  .ghh-appointment-modal {
    padding: 16px;
  }

  .ghh-appointment-modal-dialog {
    max-height: calc(100vh - 32px);
    padding: 20px 16px;
  }

  .ghh-appointment-modal-form {
    grid-template-columns: 1fr;
  }

  .hero-title-display {
    font-size: clamp(2.5rem, 10vw, 4.7rem);
    line-height: 0.94;
    padding-left:20px
  }

  .hero-description-display {
    margin-top: 28px;
    font-size: 1.25rem;
  }

  .hero-display-cta {
    min-width: min(100%, 340px);
  }

  .hero-section {
    overflow-x: clip;
  }

  .hero-ribbon {
    left: -10vw;
    right: -10vw;
    bottom: -40px;
  }

  .hero-ribbon-svg {
    width: 122%;
    height: 156px;
  }

  .hero-ribbon-band {
    stroke-width: 58;
  }

  .hero-ribbon-text {
    font-size: 18px;
  }

  .doctor-spotlight-shell {
    padding: 22px;
  }

  .doctor-floating-contact {
    top: auto;
    right: 14px;
    bottom: 18px;
    gap: 10px;
  }

  .doctor-floating-contact-link {
    width: 44px;
    height: 44px;
  }

  .doctor-spotlight-specialties {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .doctor-spotlight-specialty-list {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    min-width: 0;
  }

  .doctor-spotlight-specialty {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .doctor-spotlight-content h3 {
    font-size: 2.2rem;
  }

  .doctor-single-specialties {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .doctor-single-title {
    font-size: 2rem;
  }

  .doctor-spotlight-title {
    white-space: normal;
    flex-wrap: wrap;
  }

  .doctor-spotlight-description,
  .doctor-spotlight-expertise li {
    font-size: 15px;
  }

  .doctor-spotlight-actions {
    flex-direction: column;
  }

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

  .doctor-spotlight-appointment,
  .doctor-spotlight-message {
    width: 100%;
    min-width: 0;
  }

  .services-showcase-title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .services-showcase-button {
    width: 100%;
    justify-content: center;
  }

  .services-showcase-card {
    min-height: 300px;
  }

  .news-showcase-featured {
    padding: 16px;
  }

  .news-showcase-top,
  .news-showcase-small {
    padding: 16px;
  }

  .news-showcase-featured-image img,
  .news-showcase-top-image img {
    height: 240px;
  }

  .testimonials-showcase-title {
    font-size: 2.8rem;
  }

  .footer-shell {
    padding: 34px 18px 0;
  }

  .footer-main,
  .footer-links-double {
    grid-template-columns: 1fr;
  }

  .footer-links-column-wide {
    grid-column: auto;
  }

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

  .footer-credit {
    justify-items: start;
  }

  .why-choose-title {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.05;
  }

  .why-choose-text {
    margin-top: 24px;
    font-size: 16px;
  }

  .why-choose-button {
    min-width: 186px;
    min-height: 52px;
    margin-top: 28px;
    padding: 0 28px;
    font-size: 17px;
  }

  .intro-section {
    gap: 28px;
  }

  .intro-section-media {
    padding: 0;
  }

  .intro-section-image img {
    border-radius: 26px;
  }

  .intro-section-title {
    font-size: clamp(2.45rem, 10vw, 3.5rem);
    line-height: 1;
  }

  .promise-section {
    padding-top: 30px;
  }

  .promise-eyebrow {
    font-size: 14px;
  }

  .promise-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    line-height: 1.12;
  }

  .promise-title-line {
    flex-wrap: wrap;
  }

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

  .promise-card-head {
    gap: 16px;
    margin-bottom: 20px;
  }

  .promise-card-head h3 {
    font-size: 1.3rem;
  }

  .promise-card-benefit p,
  .promise-feature-copy p {
    font-size: 14px;
  }

  .promise-icon {
    width: 64px;
    height: 64px;
  }

  .promise-feature-copy h3 {
    font-size: 1.6rem;
  }

  .intro-line {
    flex-wrap: wrap;
  }

  .intro-section-text {
    margin-top: 24px;
    font-size: 14px;
  }

  .intro-section-button {
    min-width: 0;
    min-height: 52px;
    margin-top: 26px;
    font-size: 16px;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}
