/* =========================================================
   ROOT / TOKENS
========================================================= */
:root {
  --primary: #178a75;
  --primary-deep: #126b5b;
  --primary-soft: #35a895;
  --mint: #dff7f1;
  --mint-soft: #eefaf7;
  --seafoam: #c8efe7;
  --aqua: #e9f7f8;
  --accent: #10a7a0;

  --purple: #993399;
  --purple-deep: #7f2b7f;
  --purple-soft: #b266b2;

  --peach: #ffe7df;
  --sky: #eef7ff;
  --white: #ffffff;
  --offwhite: #fcfefd;
  --bg-soft: #f7fbfa;
  --bg-mid: #edf7f4;

  --line: rgba(23, 138, 117, 0.12);
  --line-strong: rgba(23, 138, 117, 0.18);
  --text-dark: #17322b;
  --text-mid: #36584f;
  --text-soft: #6a8c83;
  --heading: #102824;
  --footer: #17302b;

  --shadow-xs: 0 8px 22px rgba(16, 40, 36, 0.04);
  --shadow-sm: 0 12px 30px rgba(16, 40, 36, 0.06);
  --shadow-md: 0 18px 48px rgba(16, 40, 36, 0.08);
  --shadow-lg: 0 26px 70px rgba(16, 40, 36, 0.12);

  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-xl: 38px;

  --container: 1280px;
  --nav-height: 86px;
}

/* =========================================================
   RESET / BASE
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--offwhite);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

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

/* =========================================================
   UTILITIES / STATE
========================================================= */
.is-hidden {
  display: none !important;
}

/* =========================================================
   SHARED TYPOGRAPHY / SECTION ELEMENTS
========================================================= */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 68px;
}

.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 700;
  line-height: 1.04;
  color: var(--heading);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header h2 em {
  font-style: italic;
  color: var(--primary-deep);
}

.section-header p {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-soft);
}

/* =========================================================
   BUTTONS
========================================================= */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-soft,
.btn-hero-primary,
.btn-hero-ghost,
.btn-cta-clay,
.btn-cta-ghost,
.nav-cta,
.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.28s ease;
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  padding: 16px 34px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 14px 34px rgba(23, 138, 117, 0.26);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(23, 138, 117, 0.32);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff;
  padding: 15px 34px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 30px rgba(153, 51, 153, 0.24);
}

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

.btn-outline {
  border: 1.5px solid rgba(23, 138, 117, 0.18);
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.78);
  padding: 15px 30px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: #fff;
  border-color: rgba(23, 138, 117, 0.32);
  transform: translateY(-1px);
}

.btn-soft {
  background: rgba(255, 255, 255, 0.78);
  color: var(--purple);
  border: 1.5px solid rgba(153, 51, 153, 0.14);
  padding: 14px 28px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.btn-soft:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* =========================================================
   TOP BAR
========================================================= */
.top-bar {
  background: linear-gradient(90deg, #6f1f6f 0%, #8b2b86 100%);
  color: rgba(255, 255, 255, 0.94);
  position: relative;
  overflow: hidden;
  max-height: 120px;
  opacity: 1;
  /* transition: max-height 0.35s ease, opacity 0.3s ease; */
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

/* slide up animation */
.top-bar-slide-up {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  /* transform: translateY(-100%); */
}

/* completely hidden */
.top-bar-hidden {
  display: none;
}

.top-bar-inner {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 42px 0 10px;
}

.top-bar-text {
  text-align: center;
  padding: 12px 40px 12px 0;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  white-space: normal;
  overflow-wrap: anywhere;
}

.top-bar strong,
.top-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.top-bar a:hover {
  text-decoration: underline;
}

.top-bar-close {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  position: relative;
  z-index: 9999;
  pointer-events: auto;
  cursor: pointer;
  transition: background 0.2s ease;
}

.top-bar-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* =========================================================
   NAV / HEADER
========================================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(16, 40, 36, 0.03);
}

.nav-inner {
  width: 100%;
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-brand img {
  height: 66px;
  width: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links>li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.menu-item-has-children {
  position: relative;
}

.dropdown-toggle {
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  padding: 0;
  margin-left: 4px;
  margin-right: -2px;
}

.dropdown-toggle:hover {
  background: rgba(23, 138, 117, 0.08);
  color: var(--primary);
}

.dropdown-toggle span {
  font-size: 11px;
  line-height: 1;
  transform: translateY(1px);
  transition: transform 0.2s ease;
}

.menu-item-has-children.is-open .dropdown-toggle {
  color: var(--primary);
}

.menu-item-has-children.is-open .dropdown-toggle span {
  transform: translateY(1px) rotate(180deg);
}

.sub-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 280px;
  padding: 12px 0;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(23, 138, 117, 0.1);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(16, 40, 36, 0.1);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
  z-index: 1005;
}

.sub-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 34px;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(23, 138, 117, 0.1);
  border-top: 1px solid rgba(23, 138, 117, 0.1);
  transform: rotate(45deg);
}

.sub-menu li {
  margin: 0;
}

.sub-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-mid);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.sub-menu a:hover {
  background: rgba(23, 138, 117, 0.06);
  color: var(--primary-deep);
  padding-left: 24px;
}

.menu-item-has-children:hover .sub-menu,
.menu-item-has-children:focus-within .sub-menu,
.menu-item-has-children.is-open .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-cta {
  background: var(--primary-deep);
  color: #fff;
  padding: 12px 24px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 28px rgba(18, 107, 91, 0.24);
}

.nav-cta:hover {
  background: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(18, 107, 91, 0.32);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
  justify-self: end;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1002;
}

.nav-toggle-lines {
  width: 24px;
  height: 18px;
  position: relative;
}

.nav-toggle-lines span {
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--heading);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.nav-toggle-lines span:nth-child(1) {
  top: 0;
}

.nav-toggle-lines span:nth-child(2) {
  top: 8px;
}

.nav-toggle-lines span:nth-child(3) {
  top: 16px;
}

.nav-toggle.active .nav-toggle-lines span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.nav-toggle.active .nav-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-lines span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* =========================================================
   MOBILE MENU
========================================================= */
#mobileMenu,
.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--line);
}

#mobileMenu.open,
.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  width: 100%;
  padding: 10px 0 24px;
  display: flex;
  flex-direction: column;
}

.mobile-menu-inner>a:not(.mobile-nav-cta):not(.mobile-nav-phone),
.mobile-parent-link {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 8px;
  border-bottom: 1px solid rgba(23, 138, 117, 0.08);
}

.mobile-menu-group {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(23, 138, 117, 0.08);
}

.mobile-parent-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-parent-link {
  flex: 1;
  border-bottom: 0;
}

.mobile-dropdown-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-right: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-dropdown-toggle:hover {
  background: rgba(23, 138, 117, 0.08);
  color: var(--primary);
}

.mobile-dropdown-toggle span {
  font-size: 12px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.mobile-menu-group.is-open .mobile-dropdown-toggle span {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  padding: 0 0 10px 14px;
}

.mobile-submenu a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 8px;
  border-bottom: 1px solid rgba(23, 138, 117, 0.06);
}

.mobile-submenu a:last-child {
  border-bottom: 0;
}

.mobile-menu-group.is-open .mobile-submenu {
  display: flex;
}

.mobile-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
}

.mobile-nav-cta {
  width: min(100%, 340px);
  background: var(--primary-deep);
  color: #fff;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 28px rgba(18, 107, 91, 0.2);
}

.mobile-nav-phone {
  text-decoration: none;
  color: var(--primary-deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* =========================================================
   HERO
========================================================= */
.hero {
  min-height: calc(100vh - 86px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  isolation: isolate;
}

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

.hero-media video {
  width: 100%;
  height: 100%;
    object-fit: cover;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-image: url("/wp-content/uploads/2026/03/womens-hormone-balance-holistic-health1.png"); */
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.90) 0%,
      rgba(255, 255, 255, 0.72) 36%,
      rgba(255, 255, 255, 0.22) 68%,
      rgba(255, 255, 255, 0.00) 100%);
  background-size: cover;
  background-position: center right;
  transform: scaleX(-1) scale(1.05);
  filter: saturate(0.96) contrast(1.02) brightness(0.94) hue-rotate(-8deg);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(247, 252, 250, 0.97) 0%,
      rgba(247, 252, 250, 0.92) 18%,
      rgba(247, 252, 250, 0.82) 36%,
      rgba(247, 252, 250, 0.54) 56%,
      rgba(247, 252, 250, 0.16) 76%,
      rgba(247, 252, 250, 0.04) 100%),
    linear-gradient(180deg,
      rgba(20, 78, 67, 0.06) 0%,
      rgba(20, 78, 67, 0.02) 24%,
      rgba(153, 51, 153, 0.08) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 16% 22%, rgba(153, 51, 153, 0.12) 0%, transparent 28%),
    radial-gradient(circle at 68% 76%, rgba(16, 167, 160, 0.08) 0%, transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(255, 231, 223, 0.22) 0%, transparent 20%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(to top, rgba(252, 254, 253, 0.95), rgba(252, 254, 253, 0));
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 660px) 1fr;
  align-items: center;
  min-height: calc(100vh - 86px);
}

.hero-left {
  padding: 110px 0;
}

.hero-right {
  min-height: 100%;
}

.hero-card {
  max-width: 650px;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 26px;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--primary);
  display: block;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 6vw, 94px);
  font-weight: 700;
  line-height: 0.94;
  color: var(--heading);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero h1 .accent {
  color: var(--primary-deep);
  font-style: italic;
}

.hero-sub {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.badge {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 138, 117, 0.12);
  color: var(--text-mid);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(16, 40, 36, 0.05);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  padding: 18px 40px;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 14px 34px rgba(23, 138, 117, 0.3);
}

.btn-hero-primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(23, 138, 117, 0.36);
}

.btn-hero-ghost {
  border: 1.5px solid rgba(23, 138, 117, 0.18);
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.66);
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(23, 138, 117, 0.3);
}

.hero-note {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hero-note-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 138, 117, 0.1);
  border-radius: 18px;
  padding: 14px 16px;
  min-width: 170px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-xs);
}

.hero-note-card strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 5px;
}

.hero-note-card span {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-mid);
}

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: max(24px, calc((100vw - min(var(--container), calc(100% - 48px))) / 2));
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(23, 138, 117, 0.55);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(23, 138, 117, 0.45), transparent);
}
.desktop-video { display:block; }
.mobile-video { display:none; }

@media (max-width:768px){
  .desktop-video { display:none; }
  .mobile-video { display:block; }
}
/* =========================================================
   TRUST STRIP
========================================================= */
.trust-strip-wrap {
  background: #fff;
  position: relative;
  z-index: 5;
}

.trust-strip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  box-shadow: var(--shadow-sm);
  transform: translateY(-44px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  white-space: nowrap;
}

.trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--primary));
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(23, 138, 117, 0.08);
}

.trust-item strong {
  color: var(--heading);
  font-weight: 800;
}

/* =========================================================
   SPECIALTY BAR
========================================================= */
.specialty-bar {
  margin-top: -6px;
  padding: 48px 0 94px;
}

.specialty-shell {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  border-radius: var(--radius-xl);
  padding: 78px 64px;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 72px;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.specialty-shell::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.specialty-shell::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.specialty-content,
.specialty-title {
  position: relative;
  z-index: 2;
}

.specialty-title h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 3vw, 56px);
  font-weight: 700;
  line-height: 1.04;
  color: #fff;
  letter-spacing: -0.02em;
}

.specialty-content p {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 18px;
}

.specialty-content p:last-child {
  margin-bottom: 0;
}

.specialty-content strong {
  color: #fff;
  font-weight: 800;
}

/* =========================================================
   SERVICES
========================================================= */
.services {
  padding: 34px 0 114px;
  background: var(--offwhite);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  padding: 0 34px 36px;
  border: 1px solid rgba(23, 138, 117, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 40, 36, 0.04);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(16, 40, 36, 0.1);
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--purple-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-image {
  height: 156px;
  margin: 0 -34px 24px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.6s ease;
}

.service-card:hover .service-image {
  transform: scale(1.03);
}

.service-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(23, 138, 117, 0.14), rgba(153, 51, 153, 0.1)),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 15%, rgba(255, 255, 255, 0.28) 55%, rgba(255, 255, 255, 0.88) 88%, #fff 100%);
}

.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 18px;
  display: block;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.14;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.82;
  color: var(--text-soft);
  margin-bottom: 22px;
}

.service-link {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-link:hover {
  gap: 10px;
  color: var(--purple);
}

.services-cta {
  text-align: center;
  margin-top: 52px;
}

/* =========================================================
   DIFFERENT
========================================================= */
.different {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--sky) 100%);
  padding: 114px 0;
  position: relative;
  overflow: hidden;
}

.different::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 51, 153, 0.1) 0%, transparent 70%);
}

.different-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.different-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 3.8vw, 58px);
  font-weight: 700;
  line-height: 1.03;
  color: var(--heading);
  margin-bottom: 22px;
}

.different-text h2 em {
  font-style: italic;
  color: var(--purple);
}

.different-text>p {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 42px;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 0 0 8px;
}

.pillar-num {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(153, 51, 153, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--purple);
  box-shadow: 0 8px 20px rgba(16, 40, 36, 0.04);
}

.pillar-body h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 5px;
}

.pillar-body p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.78;
  color: var(--text-soft);
  margin: 0;
}

.different-visual {
  display: grid;
  gap: 18px;
}

.vis-card {
  border-radius: 24px;
  padding: 34px 30px;
}

.vis-card-dark {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  box-shadow: 0 18px 40px rgba(23, 138, 117, 0.18);
}

.vis-card-light {
  background: #fff;
  border: 1px solid rgba(23, 138, 117, 0.08);
  box-shadow: 0 8px 28px rgba(16, 40, 36, 0.05);
}

.vis-card-clay {
  background: linear-gradient(135deg, #f8f0ff, #fff9ff);
  border: 1px solid rgba(153, 51, 153, 0.1);
}

.vis-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.1;
}

.vis-card-dark h4 {
  color: #fff;
}

.vis-card-light h4,
.vis-card-clay h4 {
  color: var(--heading);
}

.vis-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.78;
  margin: 0;
}

.vis-card-dark p {
  color: rgba(255, 255, 255, 0.84);
}

.vis-card-light p {
  color: var(--text-soft);
}

.vis-card-clay p {
  color: var(--text-mid);
}

.stat-row {
  display: flex;
  gap: 28px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.74);
  letter-spacing: 0.05em;
  margin-top: 4px;
  display: block;
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials {
  padding: 114px 0;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1160px;
  margin: 0 auto;
}

.t-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfb 100%);
  border-radius: 24px;
  padding: 44px 34px;
  border: 1px solid rgba(23, 138, 117, 0.08);
  position: relative;
  box-shadow: 0 12px 28px rgba(16, 40, 36, 0.04);
}

.t-card::before {
  content: "\201C";
  font-family: "Cormorant Garamond", serif;
  font-size: 96px;
  font-weight: 400;
  color: var(--mint);
  line-height: 1;
  position: absolute;
  top: 4px;
  left: 22px;
}

.t-stars {
  color: #d4af37;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.t-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.t-author {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

/* =========================================================
   WHO
========================================================= */
.who {
  padding: 114px 0;
  background: linear-gradient(160deg, var(--mint-soft) 0%, var(--sky) 100%);
}

.who-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 72px;
  align-items: start;
}

.who-left h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 700;
  line-height: 1.06;
  color: var(--heading);
  margin-bottom: 28px;
}

.who-left h2 em {
  font-style: italic;
  color: var(--purple);
}

.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--text-mid);
}

.who-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--primary-soft);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4.5 7.5L8.5 2.5' stroke='%23178a75' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.location-box {
  background: #fff;
  border-radius: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(23, 138, 117, 0.1);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.82;
  color: var(--text-mid);
  box-shadow: 0 10px 24px rgba(16, 40, 36, 0.04);
}

.location-box strong {
  color: var(--primary);
  font-weight: 800;
}

.who-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}

.who-tags-label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.who-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.who-tag {
  background: #fff;
  border: 1.5px solid rgba(23, 138, 117, 0.14);
  color: var(--text-mid);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: default;
}

.who-tag:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.who-tag.hl {
  background: #f4eeff;
  border-color: rgba(153, 51, 153, 0.12);
  color: var(--purple);
  font-weight: 800;
}

/* =========================================================
   SERVICE PAGE
========================================================= */
.service-page-section {
  padding: 96px 0;
  background: var(--offwhite);
}

.service-page-header {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}

.service-page-header h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  color: var(--heading);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.service-page-header p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 760px;
  margin: 0 auto;
}

.service-page-content {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.content-block h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  color: var(--heading);
  margin-bottom: 16px;
}

.content-block h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.12;
  color: var(--heading);
  margin: 24px 0 10px;
}

.content-block p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-card {
  background: #fff;
  border: 1px solid rgba(23, 138, 117, 0.08);
  border-radius: 24px;
  padding: 34px 32px;
  box-shadow: var(--shadow-xs);
}

.styled-list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.styled-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
}

.styled-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--purple-soft));
}

.content-block a {
  color: var(--primary-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(23, 138, 117, 0.22);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.content-block a:hover {
  color: var(--primary);
  border-color: rgba(23, 138, 117, 0.38);
}

.compliance-note {
  margin-top: 24px;
  border-top: 1px solid rgba(23, 138, 117, 0.08);
  padding-top: 20px;
}

.compliance-note p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-soft);
  margin: 0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.75fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 42px;
}

.page-hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  color: var(--heading);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.page-hero-copy p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.page-hero-lead {
  font-size: 19px !important;
  line-height: 1.75 !important;
  margin-bottom: 22px !important;
}

.page-hero-visual {
  min-width: 0;
}

.page-image-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfb 100%);
  border: 1px solid rgba(23, 138, 117, 0.1);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(16, 40, 36, 0.08);
  overflow: hidden;
}

.page-image-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.service-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.06;
  margin: 0 0 18px;
}

.service-intro {
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 900px;
}

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

.service-highlight-card {
  background: #f7fbf9;
  border: 1px solid rgba(23, 138, 117, 0.12);
  border-radius: 18px;
  padding: 22px;
}

.service-mini-title {
  font-weight: 700;
  margin: 0 0 10px;
}

/* =========================================================
   DOCTORS
========================================================= */
.doctors {
  padding: 114px 0;
  background: var(--offwhite);
}

.doctors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 980px;
  margin: 0 auto;
}

.doc-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(23, 138, 117, 0.08);
  box-shadow: 0 10px 30px rgba(16, 40, 36, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(16, 40, 36, 0.1);
}

.doc-header,
.doc-body {
  position: relative;
  z-index: 2;
}

.doc-header {
  padding: 48px 40px 32px;
  position: relative;
  overflow: hidden;
}

.doc-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
  transform: scale(1);
  transition: transform 0.9s ease, opacity 0.4s ease;
  pointer-events: none;
}

.doc-card:hover .doc-header::before {
  transform: scale(1.04);
  opacity: 0.34;
}

.doc-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.doc-card:nth-child(1) .doc-header {
  background: linear-gradient(135deg, #e7f7f2 0%, #d8efe8 100%);
}

.doc-card:nth-child(1) .doc-header::before {
  background-image: url("natural-healing-water-touch-womens-wellness.png");
}

.doc-card:nth-child(1) .doc-header::after {
  background: linear-gradient(135deg, rgba(23, 138, 117, 0.18) 0%, rgba(53, 168, 149, 0.1) 100%);
  mix-blend-mode: multiply;
}

.doc-card:nth-child(2) .doc-header {
  background: linear-gradient(135deg, #f5eff8 0%, #eadcf0 100%);
}

.doc-card:nth-child(2) .doc-header::before {
  background-image: url("zen-wellness-mind-body-balance.png");
}

.doc-card:nth-child(2) .doc-header::after {
  background: linear-gradient(135deg, rgba(153, 51, 153, 0.18) 0%, rgba(178, 102, 178, 0.1) 100%);
  mix-blend-mode: multiply;
}

.doc-header>* {
  position: relative;
  z-index: 2;
}

.doc-avatar {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 26px rgba(16, 40, 36, 0.16);
  background: #fff;
}

.doc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.03) brightness(1.02) saturate(0.96);
}

.doc-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
}

.doc-card:nth-child(1) .doc-tag {
  color: var(--primary);
}

.doc-card:nth-child(2) .doc-tag {
  color: var(--purple);
}

.doc-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 4px;
}

.doc-cred {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--text-soft);
}

.doc-body {
  padding: 30px 40px 38px;
  background: #fff;
}

.doc-body p {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.84;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.doc-link {
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 2px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  transition: gap 0.2s ease, color 0.2s ease;
}

.doc-card:nth-child(1) .doc-link {
  color: var(--primary);
  border-color: rgba(23, 138, 117, 0.3);
}

.doc-card:nth-child(2) .doc-link {
  color: var(--purple);
  border-color: rgba(153, 51, 153, 0.3);
}

.doc-link:hover {
  gap: 12px;
}

.doctors-cta {
  text-align: center;
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.doctor-intro-shell {
  margin-bottom: 46px;
}

.doctor-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.doctor-intro-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  color: var(--heading);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.doctor-intro-copy p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.doctor-intro-copy p:last-child {
  margin-bottom: 0;
}

.doctor-intro-lead {
  font-size: 19px !important;
  line-height: 1.75 !important;
  margin-bottom: 22px !important;
  max-width: 740px;
}

.doctor-intro-visual {
  min-width: 0;
}

.doctor-image-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfb 100%);
  border: 1px solid rgba(23, 138, 117, 0.1);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(16, 40, 36, 0.08);
  overflow: hidden;
}

.doctor-image-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 51, 153, 0.08), rgba(153, 51, 153, 0));
  pointer-events: none;
}

.doctor-image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

/* =========================================================
   BLOG POST
========================================================= */
.blog-post-section {
  padding: 96px 0;
  background: var(--offwhite);
}

.blog-post-shell {
  max-width: 920px;
  margin: 0 auto;
}

.blog-post-header {
  text-align: center;
  margin-bottom: 34px;
}

.blog-post-header h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  color: var(--heading);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.blog-post-lead {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 760px;
  margin: 0 auto;
}

.blog-post-featured-image {
  margin-bottom: 28px;
}

.blog-post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.blog-post-content {
  background: #fff;
  border: 1px solid rgba(23, 138, 117, 0.08);
  border-radius: 28px;
  padding: 42px 40px;
  box-shadow: var(--shadow-xs);
}

.blog-post-content p {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.blog-post-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  color: var(--heading);
  margin: 34px 0 14px;
}

.blog-post-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.12;
  color: var(--heading);
  margin: 26px 0 10px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 22px 0;
  padding: 0;
}

.blog-post-content ul {
  list-style: none;
}

.blog-post-content ul li,
.blog-post-content ol li {
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.blog-post-content ul li {
  position: relative;
  padding-left: 24px;
}

.blog-post-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--purple-soft));
}

.blog-post-content ol {
  padding-left: 22px;
}

.blog-post-content a {
  color: var(--primary-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(23, 138, 117, 0.22);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.blog-post-content a:hover {
  color: var(--primary);
  border-color: rgba(23, 138, 117, 0.38);
}

.blog-post-content blockquote {
  margin: 28px 0;
  padding: 24px 26px;
  border-left: 4px solid var(--primary);
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfb 100%);
  border-radius: 0 20px 20px 0;
  color: var(--text-mid);
  font-style: italic;
}

.blog-post-content img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin: 26px 0;
}

.blog-post-content hr {
  border: 0;
  height: 1px;
  background: rgba(23, 138, 117, 0.1);
  margin: 34px 0;
}

.blog-post-cta {
  margin-top: 42px;
  padding: 32px 30px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef9f5 48%, #f8f3ff 100%);
  border: 1px solid rgba(23, 138, 117, 0.08);
  border-radius: 24px;
  text-align: center;
}

.blog-post-cta h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  line-height: 1.08;
  color: var(--heading);
  margin-bottom: 10px;
}

.blog-post-cta p {
  max-width: 680px;
  margin: 0 auto 20px;
}

/* =========================================================
   CTA HELPERS
========================================================= */
.cta-band-inner h1,
.cta-band-inner h2,
.cta-band-inner h3,
.cta-band-inner p,
.cta-band-inner ul {
  margin: 0;
  padding: 0;
}

.cta-kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--primary);
}

.cta-title,
.cta-main-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 600;
  color: #123629;
  margin: 0 0 18px;
  max-width: 900px;
}

.cta-subtitle,
.cta-plan-title {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-top: 28px;
  margin-bottom: 12px;
}

.cta-text {
  margin-bottom: 16px;
  line-height: 1.75;
}

.cta-mini-heading,
.cta-plan-heading {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #123629;
  margin: 26px 0 10px;
}

.cta-list {
  margin: 0 0 18px 1.2rem;
  padding-left: 1rem;
}

.cta-list li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.phone-link {
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}

.cta-band .section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}

/* =========================================================
   FAQ
========================================================= */
.faq {
  background: var(--bg-mid);
  padding: 114px 0;
}

.faq-inner {
  max-width: 880px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  margin-top: 56px;
}

.faq-item {
  border-top: 1px solid rgba(23, 138, 117, 0.14);
  padding: 28px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(23, 138, 117, 0.14);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.faq-q h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.24;
}

.faq-toggle {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(153, 51, 153, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--purple);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-toggle {
  /* transform: rotate(45deg); */
  background: var(--purple);
  color: #fff;
}

.faq-a {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.84;
  color: var(--text-mid);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding-top: 18px;
}

.service-faq-section {
  background: var(--bg-mid);
}

/* =========================================================
   CONTACT
========================================================= */
.contact-page-section {
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.contact-main,
.contact-side {
  min-width: 0;
}

.contact-side {
  display: grid;
  gap: 20px;
}

.contact-form-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfb 100%);
  border: 1px solid rgba(23, 138, 117, 0.1);
  border-radius: 28px;
  padding: 38px 34px;
  box-shadow: 0 18px 50px rgba(16, 40, 36, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 51, 153, 0.08), rgba(153, 51, 153, 0));
  pointer-events: none;
}

.contact-form-card::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 138, 117, 0.08), rgba(23, 138, 117, 0));
  pointer-events: none;
}

.contact-form-card>* {
  position: relative;
  z-index: 2;
}

.contact-form-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.06;
  color: var(--heading);
  margin-bottom: 12px;
}

.contact-form-card p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.contact-form-wrap {
  margin-top: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 138, 117, 0.08);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.contact-info-card {
  background: #fff;
  border: 1px solid rgba(23, 138, 117, 0.08);
  border-radius: 24px;
  padding: 28px 26px;
  box-shadow: var(--shadow-xs);
}

.contact-info-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.08;
  color: var(--heading);
  margin-bottom: 12px;
}

.contact-info-card p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-mid);
  margin-bottom: 14px;
}

.contact-info-card p:last-child {
  margin-bottom: 0;
}

.contact-info-card .styled-list {
  margin-top: 4px;
}

.contact-info-card .styled-list li a {
  text-decoration: none;
  color: var(--text-mid);
  transition: color 0.2s ease;
}

.contact-info-card .styled-list li a:hover {
  color: var(--primary);
}

/* =========================================================
   ABOUT
========================================================= */
.about-intro-shell {
  margin-bottom: 48px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.78fr);
  gap: 34px;
  align-items: center;
}

.about-intro-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 0.98;
  color: var(--heading);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.about-intro-copy p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.about-intro-copy p:last-child {
  margin-bottom: 0;
}

.about-intro-lead {
  font-size: 19px !important;
  line-height: 1.75 !important;
  margin-bottom: 22px !important;
  max-width: 760px;
}

.about-intro-image-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfb 100%);
  border: 1px solid rgba(23, 138, 117, 0.1);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(16, 40, 36, 0.08);
  overflow: hidden;
}

.about-intro-image-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 51, 153, 0.08), rgba(153, 51, 153, 0));
  pointer-events: none;
}

.about-intro-image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.doctors-embed {
  padding: 82px 0 24px;
}

.about-page-lower-content {
  padding-top: 10px;
}

/* =========================================================
   FORMS
========================================================= */
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="number"],
.contact-form-wrap input[type="date"],
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  border: 1px solid rgba(23, 138, 117, 0.14);
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text-dark);
  box-shadow: none;
}

.contact-form-wrap textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  outline: none;
  border-color: rgba(23, 138, 117, 0.35);
  box-shadow: 0 0 0 4px rgba(23, 138, 117, 0.08);
}

.contact-form-wrap .frm_button_submit,
.contact-form-wrap button[type="submit"],
.contact-form-wrap input[type="submit"] {
  appearance: none;
  border: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 28px rgba(18, 107, 91, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
}

.contact-form-wrap .frm_button_submit:hover,
.contact-form-wrap button[type="submit"]:hover,
.contact-form-wrap input[type="submit"]:hover {
  background: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(18, 107, 91, 0.28);
}

.contact-form-wrap .frm_forms p,
.contact-form-wrap .frm_form_fields p,
.contact-form-wrap .frm_fields_container p {
  margin-bottom: 16px;
}

/* =========================================================
   CTA BAND
========================================================= */
.cta-band {
  padding: 124px 0;
  text-align: center;
  background:
    radial-gradient(circle at 20% 50%, rgba(153, 51, 153, 0.08) 0%, transparent 28%),
    radial-gradient(circle at 80% 50%, rgba(16, 167, 160, 0.10) 0%, transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eef9f5 48%, #f8f3ff 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(23, 138, 117, 0.08);
  margin: 0;
  z-index: 1;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 138, 117, 0.12), rgba(23, 138, 117, 0));
  pointer-events: none;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: -120px -80px auto auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 51, 153, 0.10), rgba(153, 51, 153, 0));
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  background: transparent;
}

.cta-band h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.02;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.cta-band h2 span {
  color: var(--purple);
  font-style: italic;
}

.cta-band p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 50px;
  line-height: 1.8;
}

.btn-cta-clay {
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff;
  padding: 18px 46px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 32px rgba(153, 51, 153, 0.24);
}

.btn-cta-clay:hover {
  transform: translateY(-2px);
}

.btn-cta-ghost {
  border: 1.5px solid rgba(23, 138, 117, 0.2);
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.78);
  padding: 17px 34px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.btn-cta-ghost:hover {
  background: #fff;
  border-color: rgba(23, 138, 117, 0.34);
}

.cta-phone {
  text-decoration: none;
  color: var(--primary-deep);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* =========================================================
   FOOTER
========================================================= */
footer,
.site-footer {
  background: var(--footer);
  padding: 0 0 38px;
  margin: 0;
}

.footer-top,
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-top: 70px;
}

.footer-brand-logo img {
  height: 78px;
  width: auto;
}

.footer-brand p,
.footer-col p {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.64);
}

.footer-brand p {
  margin-top: 18px;
  max-width: 420px;
}

.footer-col h4,
.footer-col h5 {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a,
.footer-col a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.66);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover,
.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.42);
  max-width: 700px;
}

.footer-copy {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
}

/* =========================================================
   ANIMATIONS
========================================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  animation: fadeUp 0.8s 0.1s both;
}

.hero h1 {
  animation: fadeUp 0.9s 0.2s both;
}

.hero-sub {
  animation: fadeUp 0.8s 0.38s both;
}

.hero-badges {
  animation: fadeUp 0.8s 0.5s both;
}

.hero-actions {
  animation: fadeUp 0.8s 0.62s both;
}

.hero-note {
  animation: fadeUp 0.8s 0.72s both;
}

header.wp-block-template-part {
  position: sticky;
  top: 0;
  z-index: 9;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-brand img {
    height: 54px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 84px 0 86px;
  }

  .hero-scroll {
    display: none;
  }

  .hero h1 {
    font-size: clamp(52px, 10vw, 76px);
  }

  .hero-sub {
    font-size: 18px;
  }

  .trust-strip-wrap .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .trust-strip {
    border-radius: 22px;
    padding: 18px 22px;
    transform: translateY(-30px);
  }

  .services-grid,
  .testimonials-grid,
  .doctors-grid,
  .page-hero-grid,
  .doctor-intro-grid,
  .about-intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons,
  .hero-actions,
  .doctors-cta {
    flex-wrap: wrap;
  }

  .service-page-section {
    padding: 86px 0;
  }

  .service-page-header h1,
  .page-hero-copy h1,
  .doctor-intro-copy h1,
  .about-intro-copy h1 {
    font-size: clamp(40px, 9vw, 60px);
  }

  .page-hero-grid,
  .doctor-intro-grid,
  .about-intro-grid {
    gap: 24px;
  }

  .doctors-embed {
    padding-top: 72px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .top-bar {
    max-height: none;
  }

  .top-bar-inner {
    padding: 10px 0;
    align-items: flex-start;
  }

  .top-bar-text {
    font-size: 11.5px;
    line-height: 1.45;
    letter-spacing: 0.02em;
  }

  .trust-strip {
    flex-wrap: wrap;
    gap: 18px 28px;
    justify-content: center;
  }

  .hero-inner,
  .different-inner,
  .who-inner,
  .specialty-shell,
  .footer-top,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .specialty-shell {
    gap: 34px;
    padding: 44px 28px;
    border-radius: 28px;
  }

  .hero-right {
    display: none;
  }

  .nav-brand img {
    height: 48px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg,
        rgba(247, 252, 250, 0.94) 0%,
        rgba(247, 252, 250, 0.86) 34%,
        rgba(247, 252, 250, 0.78) 58%,
        rgba(247, 252, 250, 0.68) 100%);
  }

  .hero-left {
    padding: 72px 0 76px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 64px);
    line-height: 0.97;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-actions,
  .cta-buttons,
  .doctors-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-primary,
  .btn-hero-ghost,
  .btn-cta-clay,
  .btn-cta-ghost,
  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-soft,
  .mobile-nav-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-note {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transform: translateY(-20px);
  }

  .specialty-shell,
  .different,
  .who,
  .doctors,
  .faq,
  .cta-band,
  .testimonials,
  .services {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .different-inner,
  .who-inner {
    gap: 42px;
  }

  .stat-row {
    gap: 20px;
  }

  .faq-q h4 {
    font-size: 20px;
  }

  .footer-top,
  .footer-grid {
    gap: 30px;
  }

  .footer-brand-logo img {
    height: 64px;
  }

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

  .content-card,
  .contact-form-card,
  .contact-info-card,
  .blog-post-content {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .content-block h2,
  .blog-post-content h2 {
    font-size: 30px;
  }

  .content-block h3,
  .blog-post-content h3 {
    font-size: 24px;
  }

  .service-page-header p,
  .blog-post-lead {
    font-size: 16px;
  }

  .page-image-card,
  .doctor-image-card,
  .about-intro-image-card {
    padding: 14px;
    border-radius: 22px;
  }

  .page-image-card img,
  .doctor-image-card img,
  .about-intro-image-card img,
  .blog-post-featured-image img {
    border-radius: 16px;
  }

  .doctor-intro-lead,
  .about-intro-lead {
    font-size: 17px !important;
  }

  .contact-form-wrap {
    padding: 18px;
    border-radius: 18px;
  }

  .contact-info-card h3 {
    font-size: 24px;
  }

  .blog-post-section {
    padding: 86px 0;
  }

  .blog-post-header h1 {
    font-size: clamp(38px, 10vw, 58px);
  }

  .hero-media video {
    height: 100%;
    object-fit: cover;
  }

  .hero-media::before {
    opacity: 0.7;
  }

  .hero-media::after {
    opacity: 0.7;
  }

  .specialty-bar {
    padding: 50px 0 0;
  }
}

@media (max-width: 767px) {
  .service-highlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .hero-badges {
    gap: 8px;
  }

  .badge,
  .who-tag {
    font-size: 12px;
    padding: 8px 14px;
  }

  .service-card {
    padding: 0 24px 28px;
  }

  .service-image {
    margin: 0 -24px 20px;
    height: 142px;
  }

  .doc-header {
    padding: 36px 24px 24px;
  }

  .doc-body {
    padding: 24px 24px 28px;
  }

  .t-card,
  .vis-card,
  .location-box {
    padding: 28px 22px;
  }

  .services-grid,
  .testimonials-grid,
  .doctors-grid {
    grid-template-columns: 1fr;
  }
}