:root {
  --color-primary: #c9a85d;       /* Gold */
  --color-primary-dark: #88631b;  /* Accessible dark gold */
  --color-secondary: #0f7a62;     /* Green */
  --color-secondary-dark: #0d5f50;/* Dark Green */
  --color-dark: #12313a;          /* Ink */
  --color-muted: #5d7178;         /* Muted Slate */
  --color-light: #fbf7ef;         /* Cream */
  --color-soft: #f7f4ec;          /* Soft Beige */
  --color-card: #ffffff;
  --color-border: #eadfca;
  --shadow: 0 10px 30px rgba(18, 49, 58, 0.08);
  --radius: 8px;
  --transition: all 0.3s ease;
  --max-width: 1120px;
}

html {
  scroll-padding-block: 84px 104px;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  border: 3px solid #ffffff;
  border-radius: 6px;
  background: #0d5f50;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 0 3px #12313a;
  transform: translateY(-180%);
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
  outline: 3px solid #0b6d58;
  outline-offset: 3px;
}

a,
button,
summary,
input,
select,
textarea,
[tabindex]:not([tabindex="-1"]) {
  scroll-margin-block: 84px 104px;
}

/* Vein treatment landing page */
.vascular-page {
  padding-bottom: calc(88px + env(safe-area-inset-bottom));
}

.vascular-page a:focus-visible,
.vascular-page button:focus-visible,
.vascular-page summary:focus-visible {
  outline: 3px solid #0b6d58;
  outline-offset: 3px;
}

.vein-hero {
  padding: 1.35rem 0 2rem;
}

.vein-hero-grid,
.vein-split {
  display: grid;
  gap: 1.5rem;
}

.vein-hero .eyebrow {
  margin-bottom: 0.4rem;
}

.vein-hero h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.72rem, 8vw, 3.35rem);
  line-height: 1.06;
}

.vein-hero-subhead {
  margin-bottom: 0.65rem;
  color: #334d55;
  font-size: 1rem;
  line-height: 1.45;
}

.vein-trust-line {
  margin-bottom: 0.9rem;
  color: #12313a;
  font-size: 0.88rem;
  font-weight: 800;
}

.vein-trust-line span {
  color: #0b6d58;
}

.vein-primary-cta,
.vein-cta-row .btn,
.vein-sticky-cta .btn {
  min-height: 48px;
  font-size: 0.9rem;
}

.vein-hero-media {
  overflow: hidden;
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.vein-hero-media img {
  width: 100%;
  min-height: 156px;
  object-fit: cover;
  object-position: center;
}

.vein-section {
  scroll-margin-top: 76px;
}

.vein-content {
  max-width: 900px;
}

.vein-content > .lead {
  max-width: 760px;
}

.vein-card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.vein-card,
.vein-service-term {
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(18, 49, 58, 0.06);
}

.vein-card h3,
.vein-service-term h3,
.vein-steps h3 {
  margin-bottom: 0.45rem;
}

.vein-card p,
.vein-service-term p,
.vein-steps p {
  margin-bottom: 0;
}

.vein-steps p + p {
  margin-top: 0.65rem;
}

.vein-service-term {
  border-left: 5px solid var(--color-primary);
}

.vein-service-term small {
  display: block;
  margin-top: 0.8rem;
  color: #52676e;
  line-height: 1.5;
}

.vein-cta-row {
  margin-top: 1.6rem;
}

.vein-check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.vein-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  min-height: 44px;
  padding: 0.75rem;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.5);
}

.vein-check-list span {
  color: #0b6d58;
  font-weight: 900;
}

.vein-steps {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.vein-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.vein-steps li > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  background: #0d5f50;
  font-weight: 900;
}

.vein-final-cta {
  padding: 3rem 0;
  color: #ffffff;
  background: #0d5f50;
  text-align: center;
}

.vein-final-cta h2,
.vein-final-cta p {
  color: #ffffff;
}

.vein-final-cta p {
  max-width: 620px;
  margin: 0 auto 1.4rem;
}

.vein-final-cta .btn {
  min-height: 48px;
  font-weight: 900;
}

.vascular-page .footer-logo .brand-text span {
  color: #ffffff;
  font-weight: 800;
}

.vascular-page .footer-logo .brand-text small {
  color: var(--color-primary);
}

.vascular-page .copyright a {
  margin-left: 0.4rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vein-sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 150;
  padding: 10px max(12px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  border-top: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -8px 24px rgba(18, 49, 58, 0.14);
}

@media (min-width: 700px) {
  .vascular-page {
    padding-bottom: 0;
  }

  .vein-hero {
    padding: 3.25rem 0;
  }

  .vein-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 2.5rem;
  }

  .vein-hero h1 {
    font-size: clamp(2.6rem, 4.4vw, 3.7rem);
  }

  .vein-hero-subhead {
    font-size: 1.1rem;
  }

  .vein-hero-media img {
    min-height: 340px;
  }

  .vein-primary-cta,
  .vein-cta-row .btn,
  .vein-final-cta .btn {
    width: auto;
  }

  .vein-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vein-split {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: start;
    gap: 3rem;
  }

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

  .vein-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .vein-steps li {
    grid-template-columns: 1fr;
  }

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

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-dark);
  background-color: #fffdf8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  color: #102c35;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 {
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1.25rem;
  color: #334d55;
}

.lead {
  font-size: 1.05rem;
  color: var(--color-muted);
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary-dark);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

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

.section {
  padding: 3.5rem 0;
}

.section-soft {
  background-color: #fffdf8;
  background-image: linear-gradient(rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.46)), url('../gano-images/marble-wallpaper.jpg');
  background-size: 100% auto;
  background-position: center top;
  background-repeat: repeat-y;
}

.section-white {
  background-color: #ffffff;
}

.section-cream {
  background-color: var(--color-light);
}

.border-b {
  border-bottom: 1px solid var(--color-border);
}

.border-gray-100 {
  border-color: #f0ebe4;
}

.section-marble {
  background-color: #fffdf8;
  background-image: linear-gradient(rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.48)), url('../gano-images/marble-wallpaper.jpg');
  background-size: 100% auto;
  background-position: center top;
  background-repeat: repeat-y;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 900;
  border-radius: 5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  width: 100%;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-dark);
  border-color: var(--color-primary);
  box-shadow: 0 3px 10px rgba(201, 168, 93, 0.25);
}

.btn-primary:hover {
  background-color: #b9974a;
}

.btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
  background-color: #fff8e8;
}

.btn-dark {
  background-color: #050505;
  color: #fff;
  border-color: #050505;
}

.btn-dark:hover {
  background-color: #222222;
}

.btn-light {
  background-color: #fff;
  color: var(--color-dark);
  border-color: var(--color-border);
}

.btn-light:hover {
  background-color: var(--color-soft);
}

/* Top contact ribbon */
.topbar {
  display: none; /* hidden on mobile */
  background-color: rgba(201, 168, 93, 0.65);
  border-bottom: 1px solid rgba(201, 168, 93, 0.3);
  color: #1a2e25;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1rem;
  padding: 0;
  position: relative;
  z-index: 90;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32px;
  max-width: 1280px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.topbar-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.topbar-info > span,
.topbar-info > a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  font-weight: 500;
  line-height: 1rem;
  text-decoration: none;
}

.topbar-info > a {
  border-left: 1px solid rgba(26, 46, 37, 0.35);
  padding-left: 1.5rem;
}

.topbar-info svg {
  width: 14px !important;
  height: 14px !important;
  margin-right: 0 !important;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #2c3331;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.social-icons a:hover {
  opacity: 0.7;
}

.ig-icon {
  position: relative;
  background: center / 16px 16px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232c3331' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='20' x='2' y='2' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' x2='17.51' y1='6.5' y2='6.5'/%3E%3C/svg%3E");
  border: 0 !important;
  border-radius: 0 !important;
}

.ig-icon::before {
  content: none;
}

.ig-icon::after {
  content: none;
}

.fb-icon {
  background: center / 16px 16px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232c3331' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/%3E%3C/svg%3E");
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden;
  text-indent: -999px;
}

/* Header & Navigation */
.header {
  position: relative;
  top: 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 800;
}

.brand-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text span {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  font-weight: 900;
}

.brand-text small {
  font-size: 0.58rem;
  color: var(--color-secondary);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mobile-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-dark);
  cursor: pointer;
  padding: 0.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.navlinks {
  display: flex; /* Readable no-JavaScript mobile fallback */
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  z-index: 99;
}

.navlinks.open {
  display: flex;
}

@media (max-width: 767px) {
  html.js .mobile-toggle {
    display: inline-flex;
  }

  html.js .navlinks {
    display: none;
  }

  html.js .navlinks.open {
    display: flex;
    max-height: calc(100vh - 62px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

/* Dedicated service pages and reusable booking CTA */
.dedicated-service-inner {
  max-width: 1000px;
}

.dedicated-card-grid {
  display: grid;
  gap: 1rem;
}

.dedicated-card {
  min-height: 100%;
  padding: 1.4rem;
  border: 1px solid rgba(201, 168, 93, 0.34);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(18, 49, 58, 0.07);
}

.dedicated-card h3 {
  margin-bottom: 0.55rem;
  color: #12313a;
  font-size: 1.05rem;
}

.dedicated-card p,
.dedicated-split p,
.dedicated-trust-card p {
  color: #4b6269;
  font-size: 0.94rem;
  line-height: 1.7;
}

.dedicated-split {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.dedicated-trust-card {
  padding: 1.5rem;
  border: 1px solid rgba(201, 168, 93, 0.42);
  border-left: 5px solid var(--color-primary);
  border-radius: 10px;
  background: #fffaf0;
  box-shadow: 0 14px 30px rgba(18, 49, 58, 0.07);
}

.dedicated-trust-card h3 {
  color: #12313a;
  font-size: 1.05rem;
}

.primarycare-portrait {
  object-position: center 22%;
}

.service-final-cta {
  padding: clamp(3rem, 5vw, 4rem) 0;
  background: var(--color-secondary-dark);
  color: #fff;
  text-align: center;
}

.service-final-cta h2,
.service-final-cta p {
  color: #fff;
}

.service-final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 0.75rem auto 1.35rem;
}

.service-final-cta .eyebrow {
  color: #ead8a8;
}

.hormone-service-link {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--color-secondary-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.service-booking-cta {
  position: fixed;
  right: 1.1rem;
  bottom: calc(1.1rem + env(safe-area-inset-bottom));
  z-index: 950;
  display: flex;
  width: min(390px, calc(100vw - 2.2rem));
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem;
  border: 1px solid rgba(201, 168, 93, 0.7);
  border-radius: 16px;
  background: rgba(255, 252, 245, 0.96);
  box-shadow: 0 18px 48px rgba(18, 49, 58, 0.2);
  backdrop-filter: blur(14px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.js .service-booking-cta:not(.is-visible) {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.service-booking-cta-copy {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  gap: 0.65rem;
}

.service-booking-cta-copy > svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: var(--color-primary-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-booking-cta-copy span,
.service-booking-cta-copy strong,
.service-booking-cta-copy small {
  display: block;
}

.service-booking-cta-copy strong {
  color: #12313a;
  font-size: 0.88rem;
  line-height: 1.2;
}

.service-booking-cta-copy small {
  margin-top: 0.15rem;
  color: #64777d;
  font-size: 0.69rem;
  line-height: 1.25;
}

.service-booking-cta .btn {
  min-width: 104px;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-size: 0.82rem;
  box-shadow: none;
}

.service-booking-cta .btn:focus-visible {
  outline: 3px solid var(--color-primary-dark);
  outline-offset: 3px;
}

body:has(.service-booking-cta) .float-call,
body:has(.service-booking-cta) .float-logo,
body:has(.service-booking-cta) .float-chat {
  display: none;
}

.review-source-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #f4ead3;
  color: var(--color-primary-dark);
  font-size: 0.8rem;
}

.careplans-page .care-plan-card,
.careplans-page .care-plan-card.is-popular {
  min-height: 490px;
}

.careplans-page .care-plan-label {
  margin-top: 1.35rem;
}

@media (min-width: 768px) {
  .dedicated-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dedicated-card-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dedicated-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dedicated-split {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 3rem;
  }

  .laser-page main > .section {
    padding-block: 3.75rem;
  }

  .laser-page main > .section + .section {
    padding-top: 4.25rem;
    border-top: 1px solid rgba(201, 168, 93, 0.22);
  }

  .laser-page main > .section .laser-content > h2,
  .laser-page main > .section .laser-why > h2,
  .laser-page main > .section .laser-content-grid h2 {
    margin-top: 0 !important;
    margin-bottom: 1.35rem;
  }

  .vascular-page #facial-veins .vein-content > h3 {
    margin-top: 2.75rem;
    margin-bottom: 0.85rem;
  }

  .vascular-page #facial-veins .vein-content > h3:first-of-type {
    margin-top: 2.25rem;
  }

  .vascular-page .vein-section > .container > h2,
  .vascular-page .vein-section .vein-content > h2 {
    margin-bottom: 1rem;
  }

  .conversion-service-page main > .section + .section,
  .hormone-page main > .section + .section {
    border-top: 1px solid rgba(201, 168, 93, 0.16);
  }
}

@media (max-width: 767px) {
  body.laser-page:has(.service-booking-cta),
  body.vascular-page:has(.service-booking-cta) {
    padding-bottom: 0;
  }

  .service-booking-cta {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: calc(0.7rem + env(safe-area-inset-bottom));
    left: max(0.75rem, env(safe-area-inset-left));
    width: auto;
    gap: 0.65rem;
    padding: 0.6rem;
    border-radius: 14px;
  }

  .service-booking-cta-copy > svg {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  .service-booking-cta-copy small {
    display: none;
  }

  .service-booking-cta-copy {
    display: none;
  }

  .service-booking-cta .btn {
    width: 100%;
    min-width: 0;
    min-height: 44px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .service-booking-cta {
    transition: none;
  }
}

.navlinks a {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-dark);
  text-decoration: none;
  transition: var(--transition);
  text-transform: none;
  letter-spacing: 0;
}

.navlinks a:hover {
  color: var(--color-secondary);
}

.navlinks .btn {
  margin-top: 0.5rem;
}

.navlinks a[aria-current="page"] {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 12px;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-trigger span {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary-dark);
  line-height: 1;
  position: relative;
  top: -3px;
  left: 3px;
}

.nav-dropdown-trigger svg,
.nav-dropdown-menu > .nav-dropdown-item > a span:last-child svg {
  display: block;
  width: 13px;
  height: 13px;
}

.nav-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.75rem;
  padding: 0.35rem 0;
  border-left: 1px solid var(--color-border);
}

.nav-dropdown-item {
  position: relative;
}

.nav-dropdown-menu > .nav-dropdown-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0 0.55rem 1rem;
  color: var(--color-dark);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-dropdown-menu > .nav-dropdown-item > a span:last-child {
  color: var(--color-primary-dark);
  display: inline-block;
  transform: translateX(-12px);
}

.nav-submenu {
  display: block;
}

@media (max-width: 767px) {
  html.js .nav-submenu {
    display: none;
  }

  .navlinks.open .nav-submenu {
    display: block;
    margin: 0.15rem 0 0.45rem 1rem;
    padding-left: 0.55rem;
    border-left: 1px solid var(--color-border);
  }

  .navlinks.open .nav-submenu a {
    display: block;
    padding: 0.38rem 0;
    font-size: 0.78rem;
  }

  .navlinks.open .nav-submenu-label {
    padding: 0.55rem 0 0.18rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--color-light);
  padding: 3.25rem 0;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url('../gano-images/hero-flowers.png'), url('../gano-images/marble-wallpaper.jpg');
  background-size: cover, cover;
  background-position: center;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gano-title-img {
  width: min(92vw, 440px);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 1.34rem;
  max-width: 980px;
  color: #0e4d43;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-subtext {
  font-size: 0.95rem;
  color: var(--color-muted);
  max-width: 600px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.hero-actions .btn {
  width: 100%;
}

/* Welcome Section */
.welcome-section {
  background-color: #fffdf8;
  padding: 3rem 0;
}

.welcome-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 12px 32px rgba(16, 49, 51, 0.09);
}

.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background-color: #000;
  aspect-ratio: 430 / 535;
}

.video-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 4px;
}

.video-unmute-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 900;
  border-radius: 12px;
  text-transform: uppercase;
  z-index: 10;
  letter-spacing: 0.05em;
}

.welcome-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.welcome-text p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Services section */
.section-heading h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.section-heading .lead {
  max-width: 820px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 420px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  height: 190px;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  text-decoration: none;
  box-shadow: var(--shadow);
  color: #ffffff;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 10%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.service-card h3 {
  position: relative;
  color: #ffffff;
  z-index: 3;
  margin-bottom: 0;
  font-size: 1.03rem;
  font-weight: 700;
}

/* Community Section */
.community-section {
  background-color: #fffdf8;
  padding: 3rem 0;
}

.community-box {
  background-color: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.community-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.community-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.community-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.community-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #fff4d7;
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.community-item-content h3 {
  font-size: 0.96rem;
  margin-bottom: 0.25rem;
}

.community-item-content p {
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.45;
  margin-bottom: 0;
}

.community-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Doctors Section */
.doctors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 420px;
  margin: 0 auto 2rem auto;
}

.doctor-card {
  background-color: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  border-radius: 7px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 14px 32px rgba(18, 49, 58, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.doctor-photo {
  width: 230px;
  height: 276px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(18, 49, 58, 0.18);
}

.doctor-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.doctor-card p:first-of-type {
  font-size: 0.84rem;
  color: var(--color-primary-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.doctor-card p:last-of-type {
  font-size: 0.84rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.doctor-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

/* Articles Section */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 420px;
  margin: 0 auto;
}

.article-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.article-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
}

.article-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-body h3 {
  font-size: 1.02rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.article-body p {
  font-size: 0.84rem;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.article-body a {
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 0.82rem;
  text-decoration: none;
  transition: var(--transition);
  margin-top: auto;
}

.article-body a:hover {
  color: var(--color-secondary);
}

/* Blog Pages */
.blog-hero {
  position: relative;
  overflow: hidden;
}

.blog-hero .section-heading {
  max-width: 860px;
  margin: 0 auto;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.blog-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid #d8cab2;
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-primary-dark);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.blog-filter:hover,
.blog-filter.is-active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.blog-grid .article-card {
  max-width: none;
}

.blog-empty-state {
  margin: 2rem auto 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

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

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 1rem;
}

.blog-back:hover {
  color: var(--color-secondary);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  margin-bottom: 0.85rem;
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.blog-meta .pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(201, 168, 93, 0.14);
  color: var(--color-primary-dark);
  border: 1px solid rgba(201, 168, 93, 0.25);
}

.blog-hero-image {
  width: 100%;
  max-width: 860px;
  margin: 1.5rem auto 0;
  display: block;
  aspect-ratio: 1024 / 214;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.blog-prose {
  max-width: 860px;
  margin: 0 auto;
}

.blog-prose h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
}

.blog-prose h3 {
  font-size: 1.08rem;
  margin: 1.5rem 0 0.55rem;
}

.blog-prose p,
.blog-prose li {
  color: var(--color-text);
  font-size: 0.94rem;
  line-height: 1.8;
}

.blog-prose ul {
  margin: 0.75rem 0 1.15rem 1.25rem;
}

.blog-prose li + li {
  margin-top: 0.5rem;
}

.blog-note {
  margin: 1.5rem auto 0;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.blog-related {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.blog-cta {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

/* Care Plans */
.careplans-hero .section-heading {
  max-width: 820px;
  margin: 0 auto;
}

.careplans-hero {
  padding: 4rem 0 3rem;
  overflow: hidden;
}

.careplans-hero h1 {
  margin-bottom: 0.65rem;
}

.careplans-hero .lead {
  margin-bottom: 0.55rem;
}

.careplans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: stretch;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.care-plan-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.care-plan-card.is-popular {
  border-color: rgba(201, 168, 93, 0.42);
  box-shadow: 0 12px 32px rgba(18, 49, 58, 0.1);
}

.care-plan-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  padding-right: 0;
}

.care-plan-subtitle {
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: lowercase;
  margin-bottom: 0.75rem;
}

.care-plan-label {
  color: var(--color-primary-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.care-plan-tag {
  color: var(--color-secondary-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.care-plan-pricing {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.care-plan-card .plan-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.care-plan-card .plan-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--color-dark);
  font-size: 0.88rem;
  line-height: 1.6;
}

.care-plan-card .plan-list li + li {
  margin-top: 0.45rem;
}

.care-plan-card .plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--color-primary);
}

.care-plan-card .card-actions {
  display: flex;
  margin-top: 1.15rem;
}

.care-plan-card .card-actions .btn {
  min-width: 0;
}

.care-plan-card .card-actions .btn {
  width: auto;
}

.careplans-note {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.careplans-note h2 {
  margin-bottom: 0.75rem;
}

.careplans-note p:last-of-type {
  margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
  background-color: #f7f2e8 !important;
  padding: 3.5rem 0;
}

.google-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  border: 1px solid #eadfca;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.68);
  color: #1b3339;
  box-shadow: 0 10px 22px rgba(18, 49, 58, 0.06);
  font-size: 0.78rem;
  flex-wrap: wrap;
  justify-content: center;
}

.google-rating-pill .stars {
  color: var(--color-primary-dark);
  font-size: 0.9rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1rem auto 2rem;
  max-width: 420px;
}

.review-card {
  background-color: #fffdf9 !important;
  border: 1px solid #eadfca !important;
  border-radius: 5px !important;
  box-shadow: 0 10px 22px rgba(18, 49, 58, 0.055) !important;
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.review-card:hover,
.review-card:focus-visible {
  border-color: var(--color-primary) !important;
  box-shadow: 0 14px 28px rgba(18, 49, 58, 0.09) !important;
}

.review-card:focus {
  outline: none;
}

.review-card:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
}

.review-card .stars {
  color: var(--color-primary-dark);
  font-size: 1.03rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-card p {
  color: #1b3339;
  font-size: 0.91rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
  overflow: hidden;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.review-initial {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.78rem;
}

.review-initial.gold { background-color: var(--color-primary); }
.review-initial.green { background-color: #7ba795; }

.author-info strong {
  display: block;
  color: #1b3339;
  font-size: 0.86rem;
  line-height: 1.1;
}

.author-info small {
  display: block;
  color: #8a918f;
  font-size: 0.73rem;
  margin-top: 2px;
}

/* CTA band */
.cta-band {
  background-color: var(--color-primary);
  background-image: linear-gradient(rgba(201, 168, 93, 0.9), rgba(201, 168, 93, 0.9)), url('../gano-images/marble-wallpaper.jpg');
  background-size: cover;
  color: #ffffff;
  border-radius: 5px;
  padding: 2.25rem 1.25rem;
  text-align: center;
  box-shadow: 0 18px 38px rgba(165, 126, 45, 0.18);
  max-width: 760px;
  margin: 0 auto;
}

.cta-band h2 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.cta-band .btn-light {
  width: auto;
  border-radius: 5px !important;
  padding: 12px 22px !important;
  color: #102c35 !important;
  background-color: #fff !important;
}

/* Footer */
.footer {
  background-color: #0b0b0b;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.56)), url('../gano-images/footer-bg.jpg');
  background-size: cover;
  background-position: center;
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .brand-logo-img {
  background-color: #ffffff;
  border-radius: 4px;
}

.footer h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.85rem;
}

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

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.8;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Float buttons */
.float-call, .float-chat {
  position: fixed;
  bottom: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  text-decoration: none;
}

.float-chat[disabled] {
  border: 0;
  padding: 0;
  cursor: not-allowed;
  opacity: 0.65;
}

.float-call {
  left: 20px;
  background-color: var(--color-secondary);
}

.float-chat {
  right: 20px;
  background-color: #ffffff;
  border: 3px solid var(--color-secondary);
  padding: 3px;
}

.float-chat img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.float-logo {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 3px solid var(--color-secondary);
  padding: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  text-decoration: none;
}

.float-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}


/* About & Contact Page Specific Styles (Mobile-first) */
.page-hero {
  background-color: var(--color-light);
  text-align: center;
  padding: 3.5rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.logo-large {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
}

.philosophy {
  background-color: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.doctor-profile {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  border-radius: var(--radius);
  margin: 1.75rem 0;
}

.doctor-profile .portrait {
  aspect-ratio: 1/1.12;
  border-radius: 12px;
  background: linear-gradient(135deg, #e7f3ef, #f8efe0);
  display: grid;
  place-items: center;
  color: var(--color-secondary);
  font-weight: 900;
  overflow: hidden;
  width: 100%;
  max-width: 210px;
  height: 235px;
  font-size: 4rem;
  align-self: center;
}

.policies {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.25rem;
  max-width: 880px;
  margin: auto;
}

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

.check-list li {
  margin: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary-dark);
  font-weight: 900;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-page .contact-hero {
  padding: 3.5rem 0 2.25rem;
}

.contact-page .contact-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.contact-page .contact-hero .section-heading {
  max-width: 820px;
}

.contact-hero-image {
  width: 100%;
  max-width: 894px;
  aspect-ratio: 1024 / 214;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.contact-panel {
  max-width: 1120px;
  margin: 0 auto;
}

.contact-panel .section-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-info-card,
.contact-policy-card,
.policy-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.contact-info-card h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-dark);
  margin-bottom: 0.25rem;
}

.contact-info-card p {
  margin-bottom: 0.95rem;
}

.contact-info-card a {
  color: var(--color-dark);
  font-weight: 700;
}

.contact-note {
  color: var(--color-muted);
  font-size: 0.82rem;
}

.contact-highlight {
  display: inline-block;
  margin: 0.4rem 0 0.5rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(201, 168, 93, 0.25);
  border-radius: 999px;
  background: rgba(201, 168, 93, 0.14);
  color: var(--color-primary-dark);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.contact-policy-card .eyebrow,
.policy-card .eyebrow {
  margin-bottom: 0.65rem;
}

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

.policy-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}

.policy-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.policy-card p {
  font-size: 0.92rem;
}

.contact-page main .btn-primary {
  background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-dark));
  border-color: var(--color-secondary-dark);
  box-shadow: 0 10px 22px rgba(13, 95, 80, 0.18);
}

.contact-page main .btn-primary:hover {
  background: linear-gradient(90deg, var(--color-secondary-dark), #0b5749);
  border-color: #0b5749;
}

/* About page */
.about-page {
  background-color: #fffdf8;
}

.about-hero {
  padding: 2.5rem 0 3.1rem;
  text-align: center;
  border-bottom: 1px solid rgba(234, 223, 202, 0.55);
}

.about-hero-logo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 22px rgba(18, 49, 58, 0.1);
}

.about-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.about-hero p {
  color: var(--color-muted);
  font-weight: 600;
  margin-bottom: 0;
}

.about-mission {
  background-color: #ffffff;
}

.about-lead {
  max-width: 840px;
  margin: 0 auto 2.6rem;
  color: #4c6269;
  font-size: 0.98rem;
  line-height: 1.65;
}

  .about-philosophy {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.9rem;
    border-radius: 5px;
    background-color: var(--color-primary);
    box-shadow: 0 14px 32px rgba(165, 126, 45, 0.22);
    color: #ffffff;
  }

.about-philosophy h3,
.about-philosophy p {
  color: #ffffff;
}

  .about-philosophy h3 {
    font-size: 1.16rem;
    margin-bottom: 0.75rem;
  }

.about-philosophy p {
  max-width: 720px;
  margin: 0 auto;
  font-weight: 700;
  line-height: 1.55;
}

.about-philosophy .about-owner-positioning {
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-philosophy .about-owner-mission {
  margin-bottom: 1.3rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 1rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-value-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(18, 49, 58, 0.055);
  padding: 1.5rem;
  text-align: left;
}

.about-value-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1.5rem;
  border-radius: 5px;
  background-color: #fff5dd;
  color: var(--color-primary-dark);
}

.about-value-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-value-card h3 {
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.about-value-card p {
  font-size: 0.84rem;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.about-doctors {
  background-color: #fffdf8;
}

.about-doctor-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 980px;
  margin: 2rem auto 0;
  padding: 1.25rem;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  box-shadow: 0 12px 28px rgba(18, 49, 58, 0.06);
}

.about-doctor-card + .about-doctor-card {
  margin-top: 2.75rem;
}

.about-doctor-card > img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(18, 49, 58, 0.15);
  justify-self: center;
}

.about-doctor-name {
  text-align: center;
}

  .about-doctor-name h3 {
    font-size: 1.12rem;
    margin-bottom: 0.25rem;
  }

  .about-doctor-name p {
    margin-bottom: 0;
    color: var(--color-primary-dark);
    font-size: 0.8rem;
    font-weight: 800;
  }

  .about-doctor-body p {
    font-size: 0.91rem;
    line-height: 1.76;
    margin-bottom: 1.06rem;
  }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-tags span {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background-color: #fff7e6;
  color: var(--color-primary-dark);
  font-size: 0.68rem;
  font-weight: 800;
}

.about-community {
  background-color: #f7f4ec;
}

.about-community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-community-grid p {
  font-size: 0.94rem;
  line-height: 1.7;
}

.about-choose-card,
.about-policies {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  box-shadow: 0 12px 28px rgba(18, 49, 58, 0.06);
}

.about-choose-card {
  padding: 1.5rem;
}

.about-choose-card h3 {
  font-size: 1.1rem;
}

.about-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-check-list li {
  position: relative;
  padding-left: 1.7rem;
  margin: 0.55rem 0;
  color: #334d55;
  font-size: 0.86rem;
}

.about-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background-color: var(--color-primary);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 0.58rem;
  font-weight: 900;
}

.about-policies-section {
  background-color: #fffdf8;
}

.about-policies {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.75rem;
}

.about-policies h2 {
  font-size: 1.45rem;
}

.about-policies h3 {
  font-size: 1rem;
  margin: 1.5rem 0 0.6rem;
}

.about-policies p {
  font-size: 0.84rem;
  line-height: 1.71;
  margin-bottom: 1rem;
}

/* Hormone Health page */
.hormone-page {
  background-color: #fffef8;
}

.hormone-hero {
  background-color: #fffef8;
  padding: 2.75rem 0 2.5rem;
}

.hormone-hero-inner {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.hormone-hero-badge {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(201, 168, 93, 0.28);
  border-radius: 6px;
  color: var(--color-primary-dark);
  background-color: #ffffff;
  box-shadow: 0 8px 18px rgba(18, 49, 58, 0.04);
}

.hormone-hero h1 {
  margin-bottom: 0.75rem;
  font-size: 2.35rem;
  line-height: 1.08;
}

.hormone-hero .lead {
  max-width: 820px;
  margin: 0 auto;
  color: #4c6269;
}

.hormone-hero-image {
  display: block;
  width: min(894px, 100%);
  margin: 2rem auto 0;
  border-radius: 4px;
  box-shadow: 0 18px 34px rgba(18, 49, 58, 0.12);
}

.hormone-services {
  background-color: #ffffff;
}

.hormone-services .section-heading h2,
.hormone-why .section-heading h2,
.hormone-local .section-heading h2,
.hormone-faq .section-heading h2,
.hormone-cta .section-heading h2 {
  font-size: 2rem;
}

.hormone-accordion {
  max-width: 896px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hormone-card {
  position: relative;
  border: 1px solid #e8e6e0;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  scroll-margin-top: 110px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hormone-card:hover,
.hormone-card:focus-within,
.hormone-card.is-active,
.hormone-card.is-open {
  border-color: rgba(201, 168, 93, 0.42);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.hormone-card-main {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  border-radius: 4px;
  padding: 1rem 1.5rem;
  color: #0a0a0a;
  background-color: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.hormone-card-main:hover,
.hormone-card-main:focus-visible {
  background-color: #f9fafb;
  outline: 0;
}

.hormone-card-main:focus-visible,
.hormone-copy-button:focus-visible {
  box-shadow: 0 0 0 3px rgba(201, 168, 93, 0.28);
}

.hormone-card-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #ffffff;
  background-image: linear-gradient(to right bottom, var(--color-primary), var(--color-primary));
}

.hormone-card-icon svg,
.hormone-card-chevron svg,
.faq-arrow svg {
  display: block;
  width: 18px;
  height: 18px;
}

.hormone-card-copy {
  flex: 1;
  min-width: 0;
  display: block;
}

.hormone-card-title {
  display: block;
  margin-bottom: 0.25rem;
  color: #2c3331;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.hormone-card-description {
  display: block;
  max-width: 41rem;
  color: #4b5563;
  font-size: 0.76rem;
  line-height: 1.55;
}

.hormone-card-chevron {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-left: 1rem;
  color: var(--color-primary-dark);
  transition: transform 0.3s ease;
}

.hormone-card:hover .hormone-card-chevron,
.hormone-card:focus-within .hormone-card-chevron,
.hormone-card.is-active .hormone-card-chevron {
  transform: translateY(1px);
}

.hormone-card.is-open .hormone-card-chevron {
  transform: rotate(180deg);
}

.hormone-card-panel {
  border-top: 1px solid rgba(234, 223, 202, 0.7);
  padding: 1rem 1.25rem 1.4rem;
}

.hormone-card-banner {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.hormone-card-banner--migraine {
  object-position: center 40%;
}

.hormone-card-banner--hyperhidrosis {
  object-position: center 32%;
}

.hormone-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.45rem;
}

.hormone-panel-heading h3 {
  margin: 0;
  color: #2c3331;
  font-size: 1rem;
  line-height: 1.35;
}

.hormone-card-panel h4 {
  margin: 1rem 0 0.35rem;
  color: #2c3331;
  font-size: 0.9rem;
  line-height: 1.35;
}

.hormone-card-panel p,
.hormone-card-panel li {
  color: #4b5563;
  font-size: 0.78rem;
  line-height: 1.68;
}

.hormone-card-panel p {
  margin-bottom: 0.75rem;
}

.hormone-card-panel ul {
  margin: 0.4rem 0 0.8rem;
  padding-left: 1.15rem;
}

.hormone-card-panel li {
  margin: 0.24rem 0;
}

.hormone-card-panel .btn {
  min-height: 34px;
  padding: 0.55rem 1.25rem;
  font-size: 0.72rem;
}

.hormone-copy-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border: 0;
  border-radius: 4px;
  padding: 0.25rem 0.35rem;
  color: var(--color-primary-dark);
  background-color: transparent;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
  min-height: 44px;
}

.hormone-copy-button svg {
  display: block;
  width: 13px;
  height: 13px;
}

.hormone-copy-button:hover,
.hormone-copy-button:focus-visible {
  background-color: rgba(201, 168, 93, 0.12);
}

.hormone-copy-button.is-copied {
  color: #ffffff;
  background-color: #15803d;
}

.hormone-why {
  background-color: #f7f4ec;
}

.hormone-why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.hormone-why-main .section-heading {
  text-align: left;
  margin-bottom: 1.5rem;
}

.hormone-why-main .section-heading h2 {
  max-width: 520px;
  margin-bottom: 0;
}

.hormone-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 0;
}

.hormone-why-card,
.hormone-local-box,
.hormone-faq-item {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(18, 49, 58, 0.06);
}

.hormone-why-card {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
}

.hormone-why-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
}

.hormone-why-card p {
  margin: 0;
  color: #4b6269;
  font-size: 0.78rem;
  line-height: 1.55;
}

.hormone-why-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 5px;
  color: var(--color-primary);
  background-color: #fff7df;
  font-size: 0.78rem;
  font-weight: 900;
}

.hormone-signs-panel {
  padding-top: 4.5rem;
}

.hormone-signs-panel h3 {
  margin-bottom: 0.9rem;
  color: #5d7178;
  font-size: 0.9rem;
  font-weight: 600;
}

.hormone-signs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
  margin-top: 0;
}

.hormone-signs span {
  position: relative;
  padding-left: 1rem;
  color: #5d7178;
  font-size: 0.76rem;
}

.hormone-signs span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background-color: var(--color-primary);
}

.hormone-local {
  background-color: #ffffff;
}

.hormone-local-box {
  max-width: 830px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  text-align: center;
}

.hormone-local-box p {
  max-width: 740px;
  margin: 0 auto;
  color: #4b6269;
  font-size: 0.9rem;
}

.hormone-faq {
  background-color: #f7f4ec;
}

.hormone-faq-list {
  max-width: 896px;
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hormone-faq-item {
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(18, 49, 58, 0.04);
}

.hormone-faq-item > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  cursor: default;
  color: #2c3331;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.hormone-faq-item .faq-arrow {
  display: none;
}

.hormone-faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.hormone-faq-answer {
  border-top: 0;
  padding: 0 1.1rem 1.1rem;
}

.hormone-faq-answer p {
  margin: 0;
  color: #4b6269;
  font-size: 0.82rem;
  line-height: 1.65;
}

.hormone-cta {
  background-color: #ffffff;
}

.hormone-cta .cta-box {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 2px;
  background-color: var(--color-primary);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 16px 34px rgba(18, 49, 58, 0.18);
}

.hormone-cta .cta-box h2,
.hormone-cta .cta-box p {
  color: #ffffff;
}

.hormone-cta .cta-box .btn {
  color: #2c3331;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(18, 49, 58, 0.12);
}

.hormone-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hormone-cta-button svg {
  width: 14px;
  height: 14px;
}

.service-cta-phone {
  margin: 0.9rem 0 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.service-cta-phone a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Medical Weight Loss page */
.weight-page {
  background-color: #fffef8;
}

.service-hero {
  padding: 3.75rem 0 3rem;
  text-align: center;
}

.service-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.service-hero-badge {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(201, 168, 93, 0.32);
  border-radius: 6px;
  color: var(--color-primary-dark);
  background-color: #ffffff;
  box-shadow: 0 8px 18px rgba(18, 49, 58, 0.04);
}

.service-hero-badge svg {
  width: 22px;
  height: 22px;
}

.service-hero h1 {
  max-width: 780px;
  margin: 0 auto 0.85rem;
  color: #2c3331;
  font-size: clamp(2.2rem, 6vw, 3.7rem);
  line-height: 0.98;
}

.service-hero .lead {
  max-width: 760px;
  margin: 0 auto 1.65rem;
  color: #4b6269;
  font-size: 0.95rem;
}

.service-hero-image {
  width: min(760px, 100%);
  margin: 2.25rem auto 0;
  border-radius: 4px;
  box-shadow: 0 18px 34px rgba(18, 49, 58, 0.12);
}

.service-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.service-feature-card {
  padding: 1.55rem 1.25rem;
  border: 1px solid #e8e6e0;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 24px rgba(18, 49, 58, 0.06);
  text-align: center;
}

.service-feature-card span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0.75rem;
  border-radius: 6px;
  color: #ffffff;
  background-color: var(--color-primary);
}

.service-feature-card svg {
  width: 18px;
  height: 18px;
}

.service-feature-card h3 {
  margin-bottom: 0.35rem;
  color: #2c3331;
  font-size: 0.95rem;
}

.service-feature-card p {
  margin: 0;
  color: #4b6269;
  font-size: 0.78rem;
  line-height: 1.55;
}

.home-brochure-trust {
  padding: 1.25rem 0 1.5rem;
  border-bottom: 1px solid rgba(201, 168, 93, 0.26);
  background-color: #fbf8f1;
}

.home-brochure-trust .service-feature-strip {
  margin: 0 auto;
}

.service-content {
  background-color: #ffffff;
}

.service-content-inner {
  max-width: 900px;
  margin: 0 auto;
}

.service-content h2 {
  color: #2c3331;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.service-content p {
  color: #4b6269;
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-content-image {
  width: min(760px, 100%);
  margin: 2rem auto 0;
  border-radius: 4px;
  box-shadow: 0 14px 28px rgba(18, 49, 58, 0.1);
}

.weight-options {
  background-color: #ffffff;
}

.weight-options .hormone-accordion {
  margin-top: 2rem;
}

.telemedicine-page .service-hero {
  padding-bottom: 4.75rem;
}

.telemedicine-page .service-hero-image {
  width: min(760px, 100%);
  max-height: 190px;
  object-fit: cover;
}

.telehealth-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  max-width: 980px;
  margin: 2.35rem auto 0;
}

.telehealth-benefit-card {
  min-height: 205px;
  padding: 2rem 1.5rem;
  border: 1px solid #e8e6e0;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(18, 49, 58, 0.07);
  text-align: center;
}

.telehealth-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.05rem;
  border-radius: 6px;
  color: #ffffff;
  background-color: var(--color-primary);
}

.telehealth-icon svg {
  width: 26px;
  height: 26px;
}

.telehealth-benefit-card h3,
.telehealth-steps-card h3,
.telehealth-security-card h3 {
  margin-bottom: 0.5rem;
  color: #2c3331;
}

.telehealth-benefit-card p,
.telehealth-service-item,
.telehealth-step p,
.telehealth-security-card p {
  color: #4b6269;
  font-size: 0.83rem;
  line-height: 1.55;
}

.telehealth-services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 3rem;
  align-items: center;
}

.telehealth-services-main .section-heading {
  margin: 0 0 1.6rem;
  text-align: left;
}

.telehealth-services-main .section-heading .lead {
  max-width: 520px;
  margin-inline: 0;
}

.telehealth-service-list {
  display: grid;
  gap: 0.75rem;
  max-width: 520px;
}

.telehealth-service-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 48px;
  padding: 0.82rem 1rem;
  border: 1px solid #e8e6e0;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 8px 18px rgba(18, 49, 58, 0.06);
  color: #2c3331;
  font-weight: 700;
}

.telehealth-service-item span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  color: var(--color-primary);
  font-size: 0.78rem;
  line-height: 1;
}

.telehealth-steps-card {
  padding: 2rem;
  border: 1px solid #e8e6e0;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 14px 34px rgba(18, 49, 58, 0.07);
}

.telehealth-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
  margin-top: 1.25rem;
}

.telehealth-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 5px;
  color: #ffffff;
  background-color: var(--color-primary);
  font-weight: 800;
}

.telehealth-step h4 {
  margin: 0 0 0.15rem;
  color: #2c3331;
  font-size: 0.92rem;
}

.telehealth-step p {
  margin: 0;
}

.telehealth-security-card {
  max-width: 760px;
  margin-inline: auto;
  padding: 3rem 2.5rem;
  border: 1px solid #e8e6e0;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(18, 49, 58, 0.07);
  text-align: center;
}

.telehealth-security-card .telehealth-icon {
  margin-bottom: 1.25rem;
}

@media (min-width: 641px) and (max-width: 900px) {
  .service-hero-image,
  .service-content-image,
  .weight-options .hormone-accordion {
    width: min(600px, 100%);
  }

  .telehealth-services-layout {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
}

@media (max-width: 640px) {
  .service-feature-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .telehealth-benefit-grid,
  .telehealth-services-layout {
    grid-template-columns: 1fr;
  }

  .telehealth-benefit-card {
    min-height: auto;
  }

  .telehealth-steps-card,
  .telehealth-security-card {
    padding: 1.5rem;
  }

  .telemedicine-page .float-logo {
    display: none;
  }
}


/* ==========================================================================
   Responsive Tablet & Desktop Progressive Enhancements (min-width: 768px)
   ========================================================================== */
@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .section {
    padding: 5rem 0;
  }

  .btn {
    width: auto; /* inline on desktop */
  }

  /* Top bar contact ribbon */
  .topbar {
    display: block;
  }

  /* Navigation Header */
  .nav {
    height: 96px;
  }

  .brand-logo-img {
    width: 80px;
    height: 80px;
  }

  .brand-text span {
    color: #1a4030;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
  }

  .header .brand-text small {
    color: var(--color-primary-dark);
    font-size: 0.75rem;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-toggle {
    display: none;
  }

  .navlinks {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    box-shadow: none;
    border-bottom: none;
    background-color: transparent;
    gap: 1.5rem;
  }

  .navlinks > a:not(.btn),
  .nav-dropdown-trigger {
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    color: #2c3331 !important;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25rem;
  }

  .navlinks .btn {
    margin-top: 0;
  }

  .nav-dropdown {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .nav-dropdown-trigger {
    height: 100%;
  }

  .nav-dropdown:hover .nav-dropdown-trigger,
  .nav-dropdown:focus-within .nav-dropdown-trigger {
    color: var(--color-primary-dark);
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 120;
    display: flex;
    width: 222px;
    margin-top: 0;
    padding: 0.5rem 0;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(18, 49, 58, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    pointer-events: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-hover-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-dropdown-menu a {
    color: #1d2f35;
    text-transform: none;
    letter-spacing: 0;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:focus-visible {
    color: var(--color-primary-dark);
    background-color: #fff8e8;
  }

  .nav-dropdown-item > a {
    height: 44px;
    padding: 0 3rem 0 1rem;
    font-size: 0.88rem;
    font-weight: 500;
  }

  .nav-dropdown-item.has-submenu > a span:last-child {
    font-size: 1rem;
    position: relative;
    top: -1px;
    left: -8px;
  }

  .nav-dropdown-item.has-submenu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 14px;
    height: 100%;
  }

  .nav-submenu {
    position: absolute;
    top: 0;
    left: calc(100% - 1px);
    z-index: 121;
    display: none;
    width: 220px;
    padding: 0.5rem 0;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(18, 49, 58, 0.12);
  }

  .nav-dropdown-item.has-submenu:hover > .nav-submenu,
  .nav-dropdown-item.has-submenu:focus-within > .nav-submenu {
    display: block;
  }

  .nav-submenu a {
    display: block;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1d2f35;
    line-height: 1.25;
    white-space: normal;
  }

  .nav-submenu.laser-nav-submenu a {
    transition: none;
  }

  .nav-submenu a:hover,
  .nav-submenu a:focus-visible {
    color: var(--color-primary-dark);
    background-color: #fff8e8;
  }

  /* Hero Section */
  .hero {
    padding: 6rem 0;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .hero-subtext {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    width: auto;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 170px;
  }

  /* Welcome Card */
  .welcome-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    padding: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .welcome-text {
    padding-left: 2.5rem;
  }

  .welcome-section {
    padding: 4rem 0;
  }

  .welcome-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .welcome-text p {
    font-size: 0.83rem;
    line-height: 1.5;
    margin-bottom: 0.85rem;
  }

  .welcome-text .eyebrow {
    margin-bottom: 0.5rem;
  }

  .welcome-text .btn {
    padding: 0.62rem 1.2rem;
    font-size: 0.76rem;
  }

  /* 3-Column Services Grid */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 980px;
  }

  .service-card {
    height: 220.5px;
  }

  /* Community Section */
  .community-box {
    text-align: left;
    padding: 2rem 2.5rem;
    max-width: 820px;
    margin: 0 auto;
  }

  .community-box h2 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .community-list {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .community-actions {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .community-section {
    padding-bottom: calc(5rem + 6px);
  }

  /* 2-Column Doctors Grid */
  .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
    max-width: 760px;
  }

  .doctor-card {
    padding: 2rem 2rem calc(2rem + 6px);
  }

  .doctor-photo {
    width: 240px;
    height: 288px;
  }

  .doctor-actions {
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
  }

  .doctor-actions .btn {
    flex: 1;
  }

  .team-section {
    padding-bottom: calc(5rem + 8px);
  }

  /* 3-Column Articles Grid */
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 940px;
  }

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

  .blog-related {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

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

  .articles-section {
    padding-bottom: calc(5rem + 14px);
  }

  .article-card img {
    height: 175px;
  }

  /* 3-Column Reviews Grid */
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 940px;
    margin: 59px auto 2rem;
  }

  .reviews-section {
    padding: calc(3.5rem + 65px) 0 calc(3.5rem + 12px);
  }

  /* CTA Band */
  .cta-band {
    padding: 3.5rem 2.5rem;
    background-image: linear-gradient(rgba(201, 168, 93, 0.9), rgba(201, 168, 93, 0.9)), url('../gano-images/marble-wallpaper.jpg');
    max-width: 760px;
  }

  .cta-band h2 {
    font-size: 1.85rem;
  }

  .cta-band p {
    font-size: 1.05rem;
  }

  #book.section {
    padding: 5rem 0 calc(5rem + 8px);
  }

  /* Footer */
  .footer {
    padding: 4rem 0 calc(2rem + 7px) 0;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3.5rem;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  /* About & Contact Page Enhancements */
  .doctor-profile {
    flex-direction: row;
    padding: 2rem;
    gap: 2.5rem;
  }

  .doctor-profile .portrait {
    align-self: flex-start;
    flex-shrink: 0;
  }

  .two-col {
    flex-direction: row;
    align-items: start;
    gap: 3rem;
  }

  .two-col > * {
    flex: 1;
  }

  .contact-page .contact-hero {
    padding: 4rem 0 2.5rem;
  }

  .contact-page .contact-hero-inner {
    gap: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
  }

  .contact-info-card,
  .contact-policy-card,
  .policy-card {
    padding: 1.65rem;
  }

  .policy-stack {
    gap: 1.5rem;
  }

  .about-hero {
    margin-top: 27px;
    padding: 1.3rem 0 calc(3.35rem + 18px);
  }

  .about-page .about-hero .container,
  .about-page .about-mission .container,
  .about-page .about-values .container,
  .about-page .about-doctors .container,
  .about-page .about-community .container,
  .about-page .about-policies-section .container {
    max-width: 1152px;
    padding-left: 0;
    padding-right: 0;
  }

  .about-hero-logo {
    width: 128px;
    height: 128px;
    margin-bottom: 1rem;
  }

  .about-hero h1 {
    font-size: 3.08rem;
    line-height: 1.08;
    margin-bottom: 0.55rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .about-mission.section,
  .about-values.section,
  .about-community.section {
    padding: 6rem 0;
  }

  .about-mission.section {
    padding: calc(6rem + 20px) 0 calc(6rem + 108px);
  }

  .about-mission h2 {
    max-width: 896px;
    margin-inline: auto;
    font-size: 2.42rem;
    line-height: 1.08;
  }

  .about-lead {
    max-width: 768px;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.15rem;
  }

  .about-values.section {
    padding: calc(6rem + 13px) 0 calc(6rem + 14px);
  }

  .about-values h2 {
    max-width: 1152px;
    margin-inline: auto;
    font-size: 2.3rem;
    line-height: 1.08;
  }

  .about-doctors.section {
    padding: 7rem 0 calc(8.5rem + 53px);
  }

  .about-policies-section.section {
    padding: calc(8.5rem + 48px) 0;
  }

  .about-values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 3.56rem;
  }

  .about-value-card {
    min-height: 225px;
    padding: 1.5rem 1.45rem;
  }

  .about-value-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 1.25rem;
  }

  .about-value-card h3 {
    font-size: 1.08rem;
    line-height: 1.2;
  }

  .about-value-card p {
    font-size: 0.79rem;
    line-height: 1.5;
  }

  .about-doctor-card {
    max-width: 980px;
    grid-template-columns: 220px 145px 1fr;
    gap: 1.1rem;
    padding: 1.55rem;
    align-items: start;
  }

  .about-doctor-card > img {
    width: 220px;
    height: 220px;
    justify-self: start;
  }

  .about-doctor-name {
    text-align: left;
    padding-top: 0;
  }

  .about-tags {
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 0.9rem;
  }

  .about-doctor-body .text-center {
    text-align: center;
  }

  .about-community-grid {
    grid-template-columns: 552px 486px;
    justify-content: space-between;
    gap: 0;
    max-width: 1212px;
    margin-inline: auto;
  }

  .about-community.section {
    padding: calc(6rem + 22px) 0;
  }

  .about-community-grid > div:first-child {
    max-width: 552px;
  }

  .about-choose-card {
    padding: 1.55rem;
    width: 100%;
  }

  .about-choose-card h3 {
    font-size: 1.03rem;
  }

  .about-check-list li {
    font-size: 0.8rem;
    margin: 0.78rem 0;
  }

  .about-policies {
    max-width: 830px;
    padding: 1.62rem;
  }

  .about-policies h2 {
    font-size: 1.3rem;
  }

  .about-page #book.section {
    padding-bottom: 5rem;
  }

  .about-page .footer {
    margin-top: 80px;
    padding-bottom: 17px;
  }

  .hormone-hero {
    padding: 3rem 0 2.5rem;
  }

  .hormone-hero h1 {
    font-size: 2.7rem;
    line-height: 1.08;
  }

  .hormone-hero .lead {
    font-size: 0.96rem;
  }

  .hormone-services .section-heading h2,
  .hormone-why .section-heading h2,
  .hormone-local .section-heading h2,
  .hormone-faq .section-heading h2,
  .hormone-cta .section-heading h2 {
    font-size: 2.15rem;
  }

  .hormone-accordion {
    margin-top: 1.9rem;
  }

  .hormone-card-main {
    min-height: 72px;
    padding: 1rem 1.5rem;
  }

  .hormone-why-grid {
    gap: 0.85rem;
  }

  .hormone-why-card {
    padding: 1.15rem 1.25rem;
  }

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

  .hormone-local-box {
    padding: 0;
  }

  .hormone-faq-list {
    max-width: 830px;
  }

  .hormone-cta .cta-box {
    padding: 3rem 2rem;
  }

  .hormone-page .footer {
    margin-top: 80px;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .nav-dropdown-item.has-submenu::after {
    right: 100%;
    left: auto;
  }

  .nav-submenu {
    right: calc(100% - 1px);
    left: auto;
  }
}

/* Extra Desktop Polish for larger screens */
@media (min-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero h1 {
    font-size: 2.38rem;
  }

  .gano-title-img {
    width: 520px;
  }

  .blog-prose h2 {
    font-size: 1.55rem;
  }

  .blog-prose h3 {
    font-size: 1.12rem;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .hormone-hero-image,
  .hormone-accordion {
    width: min(600px, 100%);
  }
}

@media (max-width: 640px) {
  .hormone-why-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hormone-why-main .section-heading {
    text-align: center;
  }

  .hormone-signs-panel {
    padding-top: 0;
  }

  .hormone-accordion {
    gap: 1rem;
  }

  .hormone-card-main {
    min-height: 0;
    align-items: flex-start;
    padding: 1rem;
  }

  .hormone-card-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .hormone-card-icon svg,
  .hormone-card-chevron svg,
  .faq-arrow svg {
    width: 18px;
    height: 18px;
  }

  .hormone-card-title {
    font-size: 1rem;
    line-height: 1.35;
  }

  .hormone-card-description {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .hormone-card-chevron {
    margin-left: 0.25rem;
  }

  .hormone-card-panel {
    padding: 0.9rem 1rem 1.2rem;
  }

  .hormone-panel-heading {
    flex-direction: column;
    gap: 0.35rem;
  }

  .hormone-copy-button {
    align-self: flex-end;
  }
}

/* Source-matched care plans pass */
.careplans-hero.section {
  margin-top: 27px;
  padding: 96px 0;
}

.careplans-hero .section-heading {
  max-width: 896px;
}

.careplans-hero .eyebrow {
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.careplans-hero h1 {
  color: #2c3331;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 16px;
}

.careplans-hero .lead {
  color: #2c3331;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 12px;
}

.careplans-hero .lead + .lead {
  color: #4b5563;
  font-size: 18px;
  font-weight: 400;
  max-width: 672px !important;
  margin-bottom: 0;
}

.careplans-plans.section {
  padding: 64px 0;
}

.careplans-plans .container {
  max-width: 1152px;
  padding-left: 0;
  padding-right: 0;
}

.careplans-grid {
  max-width: 1152px;
  gap: 24px;
  margin-top: 0;
  overflow: visible;
}

.care-plan-card {
  background: rgba(255, 255, 255, 0.97);
  border-color: #e8e6e0;
  border-radius: 6px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  min-height: 649px;
  overflow: visible;
  padding: 32px;
  padding-top: 40px;
}

.care-plan-card.is-popular {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-top: -16px;
  min-height: 665px;
  transform: none;
}

.care-plan-icon {
  display: block;
  color: var(--color-primary);
  width: 24px;
  height: 24px;
  margin: 13px 0 32px 12px;
}

.care-plan-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.care-plan-card h3 {
  color: #2c3331;
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 4px;
}

.care-plan-subtitle {
  color: #6b7280;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 16px;
  text-transform: none;
}

.care-plan-price-block {
  margin: 20px 0 52px;
}

.care-plan-subtitle + .care-plan-price-block {
  margin-top: 20px;
}

.care-plan-pricing {
  color: var(--color-primary-dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 4px;
}

.care-plan-price-note {
  color: #6b7280;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 0;
}

.care-plan-label {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.care-plan-card .plan-list {
  margin-bottom: 0;
}

.care-plan-card .plan-list li {
  color: #4b5563;
  font-size: 14px;
  line-height: 19.25px;
  min-height: 19px;
  padding-left: 28px;
}

.care-plan-card .plan-list li + li {
  margin-top: 12px;
}

.care-plan-card .plan-list li::before {
  top: 2px;
  left: 5px;
  width: 6px;
  height: 10px;
  background: none;
  border-color: #3a7d5a;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  transform: rotate(45deg);
}

.care-plan-card .card-actions {
  margin-top: auto;
  padding-top: 32px;
}

.care-plan-card .card-actions .btn {
  width: 100%;
  height: 48px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.care-plan-card .btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}

.care-plan-card .btn-primary,
.careplans-note-card .btn-primary {
  color: #2c3331;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(201, 168, 93, 0.25);
}

.care-plan-tag {
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  z-index: 2;
  width: 153px;
  padding: 6px 0;
  border-radius: 6px;
  color: #2c3331;
  background: var(--color-primary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-align: center;
}

.careplans-note {
  max-width: 672px;
}

.careplans-consult.section {
  padding: 64px 0 44px;
}

.careplans-note-card {
  max-width: 672px;
  height: 402px;
  margin: 20px auto 0;
  padding: 116px 40px 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e8e6e0;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.careplans-note-card h2 {
  color: #2c3331;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px;
}

.careplans-note-card p {
  color: #4b5563;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}

.careplans-note-card .careplans-note-price {
  color: var(--color-primary-dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 4px;
}

.careplans-note-card .careplans-note-fine {
  color: #6b7280;
  font-size: 14px;
  font-style: italic;
  line-height: 20px;
  margin-bottom: 28px;
}

.careplans-note-card .btn {
  width: 188px;
  height: 48px;
}

@media (max-width: 767px) {
  .careplans-hero.section {
    margin-top: 0;
    padding: 64px 0;
  }

  .careplans-hero h1 {
    font-size: 36px;
    line-height: 40px;
  }

  .careplans-hero .lead {
    font-size: 18px;
    line-height: 28px;
  }

  .careplans-plans .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .care-plan-card,
  .care-plan-card.is-popular {
    margin-top: 0;
    min-height: 0;
    transform: none;
  }

  .care-plan-icon {
    margin: 4px 0 28px 0;
  }

  .careplans-note-card {
    height: auto;
    padding: 32px 24px;
  }
}

/* Vein landing-page compatibility and tap-target refinements. */
.vascular-page .vein-anchor-alias {
  display: block;
  position: relative;
  top: -76px;
  visibility: hidden;
}

.vascular-page .vein-card[id] {
  scroll-margin-top: 76px;
}

.vascular-page .footer-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.vascular-page .brand,
.vascular-page .footer-contact a,
.vascular-page .copyright a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.vein-vascular-note {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  background: #ffffff;
  scroll-margin-top: 76px;
}

.vein-vascular-note h2 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.vein-vascular-note p {
  max-width: 800px;
  margin-bottom: 0;
  font-size: 0.86rem;
}

.contact-page .footer > .container {
  max-width: 1216px;
  padding-left: 0;
  padding-right: 0;
}

.contact-page .footer-grid {
  grid-template-columns: 2fr 1fr 1fr;
  gap: 96px;
}

.contact-page .footer-logo {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-page .footer-logo .brand-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  box-shadow: none;
}

.contact-page .footer-logo .brand-text span {
  display: block;
  color: #ffffff !important;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0;
  font-weight: 800;
}

.contact-page .footer-logo .brand-text small {
  display: block;
  color: var(--color-primary) !important;
  font-size: 15px !important;
  line-height: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.contact-page .footer-bottom {
  justify-content: center;
}

.contact-page .contact-hero.section {
  margin-top: 0;
  padding: 80px 0;
}

.contact-page .contact-hero-inner {
  display: block;
  max-width: 1152px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.contact-page .contact-hero .section-heading {
  max-width: 1152px;
  margin: 0 auto;
}

.contact-page .contact-hero h1 {
  color: #2c3331;
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 24px;
}

.contact-page .contact-hero .lead {
  color: #4b5563;
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
  max-width: 768px;
  margin: 0 auto;
}

.contact-hero-frame {
  width: 896px;
  height: 189px;
  margin: 48px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e8e6e0;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.contact-hero-image {
  display: block;
  width: 894px;
  height: 187px;
  max-width: none;
  aspect-ratio: auto;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-page .contact-main.section {
  padding: 80px 0 81px;
  background: rgba(255, 255, 255, 0.92);
}

.contact-source-container {
  max-width: 1280px;
  padding-left: 0;
  padding-right: 0;
}

.contact-source-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

.contact-left {
  display: grid;
  gap: 32px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e8e6e0;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.contact-info-card,
.contact-scheduler-card,
.contact-policy-card {
  padding: 32px;
}

.contact-info-card {
  min-height: 598px;
}

.contact-info-card h2,
.contact-scheduler-card h2,
.contact-policy-card h2 {
  color: #2c3331;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 24px;
}

.contact-intro {
  color: #4b5563;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 32px;
}

.contact-info-card .contact-intro {
  margin-bottom: 32px;
}

.contact-details-list {
  display: grid;
  gap: 24px;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-row:nth-child(1) > div {
  width: 120px;
}

.contact-detail-row:nth-child(2) > div {
  width: 190px;
}

.contact-detail-row:nth-child(3) > div {
  width: 250px;
}

.contact-detail-row:nth-child(4) > div {
  width: 200px;
}

.contact-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 93, 0.15);
  border-radius: 6px;
  color: var(--color-primary);
}

.contact-detail-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-row > div {
  line-height: 24px;
}

.contact-detail-row h3 {
  color: #2c3331;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.contact-detail-row a {
  display: inline;
  color: #4b5563;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
  white-space: nowrap;
}

.contact-detail-row p {
  display: block;
  color: #4b5563;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

.contact-detail-row .contact-note {
  color: #6b7280;
  font-size: 14px;
  line-height: 20px;
}

.contact-detail-row:nth-child(2) p,
.contact-detail-row:nth-child(4) p {
  white-space: nowrap;
}

.contact-accepting-card {
  min-height: 134px;
  padding: 24px;
  color: #ffffff;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 4px 12px rgba(201, 168, 93, 0.3);
}

.contact-accepting-card h3 {
  color: #2c3331;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 12px;
}

.contact-accepting-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 22.75px;
  margin-bottom: 0;
}

.contact-scheduler-card {
  min-height: 764px;
}

.contact-sms-box,
.contact-welcome-box {
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 24px;
}

.contact-sms-box {
  background: rgba(201, 168, 93, 0.08);
  border: 1px solid transparent;
  min-height: 136px;
  margin-bottom: 23px;
}

.contact-welcome-box {
  background: #ffffff;
  border: 1px solid #e8e6e0;
}

.contact-sms-box h3 {
  color: #2c3331;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 12px;
}

.contact-welcome-box h3 {
  color: #2c3331;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 12px;
}

.contact-sms-box p,
.contact-welcome-box p,
.contact-booking-notes p {
  color: #4b5563;
  font-size: 14px;
  line-height: 22.75px;
  margin-bottom: 0;
}

.contact-booking-block {
  padding-top: 0;
  text-align: center;
}

.contact-booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 224px;
  height: 60px;
  border-radius: 6px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.contact-booking-notes {
  margin-top: 24px;
}

.contact-booking-notes p:first-child {
  max-width: 672px;
  margin: 0 auto 12px;
}

.contact-booking-notes p:last-child {
  color: #6b7280;
  font-size: 12px;
  font-style: italic;
  line-height: 16px;
}

.contact-policy-card {
  margin-top: 31px;
  min-height: 777px;
}

.contact-policy-card h2 {
  margin-bottom: 24px;
}

.contact-policy-card h3,
.contact-policy-card h4 {
  color: #2c3331;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 12px;
}

.contact-policy-card p {
  color: #4b5563;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 16px;
}

.contact-policy-card p:nth-of-type(2),
.contact-policy-card p:nth-of-type(5) {
  margin-bottom: 24px;
}

.contact-policy-card p:nth-of-type(6) {
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
}

.contact-page main .btn-primary {
  background-color: var(--color-primary);
  background-image: none;
  border-color: var(--color-primary);
  box-shadow: 0 3px 10px rgba(201, 168, 93, 0.25);
}

@media (max-width: 767px) {
  .contact-page .contact-hero.section {
    margin-top: 0;
    padding: 64px 0;
  }

  .contact-page .contact-hero-inner,
  .contact-source-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .contact-page .contact-hero h1 {
    font-size: 36px;
    line-height: 40px;
  }

  .contact-page .contact-hero .lead {
    font-size: 18px;
    line-height: 28px;
  }

  .contact-hero-frame,
  .contact-hero-image {
    width: 100%;
    height: auto;
  }

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

  .contact-info-card,
  .contact-scheduler-card,
  .contact-policy-card {
    min-height: 0;
    padding: 24px;
  }
}

/* Responsive safety layer for source-matched layouts */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

.container,
.contact-source-container,
.careplans-plans .container,
.about-page .about-hero .container,
.about-page .about-mission .container,
.about-page .about-values .container,
.about-page .about-doctors .container,
.about-page .about-community .container,
.about-page .about-policies-section .container {
  max-width: min(var(--max-width), calc(100vw - 40px));
}

.topbar .container {
  max-width: min(1280px, calc(100vw - 48px));
}

.services-grid,
.articles-grid,
.blog-grid,
.blog-related,
.reviews-grid,
.careplans-grid,
.about-values-grid,
.hormone-why-grid,
.service-feature-strip,
.telehealth-benefit-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.doctors-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.service-feature-strip,
.telehealth-benefit-grid,
.careplans-grid,
.reviews-grid,
.articles-grid,
.blog-grid,
.blog-related {
  max-width: min(100%, 980px);
}

.careplans-plans .container,
.careplans-grid {
  max-width: min(1152px, calc(100vw - 40px));
}

.contact-page .contact-hero-inner,
.contact-page .contact-hero .section-heading {
  max-width: min(1152px, calc(100vw - 40px));
}

.contact-hero-frame {
  width: min(896px, calc(100vw - 40px));
  height: auto;
  aspect-ratio: 896 / 189;
}

.contact-hero-image {
  width: 100%;
  height: 100%;
}

.contact-source-container {
  max-width: min(1280px, calc(100vw - 40px));
}

.contact-source-grid {
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: clamp(24px, 3.3vw, 48px);
}

.contact-info-card,
.contact-scheduler-card,
.contact-policy-card,
.contact-accepting-card,
.care-plan-card,
.about-value-card,
.about-doctor-card,
.about-choose-card,
.about-policies,
.hormone-card,
.hormone-why-card,
.service-feature-card,
.telehealth-benefit-card,
.article-card,
.review-card {
  min-width: 0;
}

.contact-booking-btn {
  width: min(224px, 100%);
}

.contact-booking-notes p:first-child {
  max-width: min(672px, 100%);
}

.contact-page .footer > .container {
  max-width: min(1216px, calc(100vw - 40px));
}

.about-doctor-card {
  grid-template-columns: minmax(160px, 220px) minmax(120px, 145px) minmax(0, 1fr);
}

.about-community-grid {
  grid-template-columns: minmax(0, 552px) minmax(280px, 486px);
  gap: clamp(24px, 8vw, 174px);
}

.hormone-why-layout,
.telehealth-services-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
}

.nav {
  max-width: min(1280px, calc(100vw - 48px));
}

.topbar .container {
  max-width: min(1280px, calc(100vw - 48px));
}

@media (max-width: 1180px) {
  .contact-source-grid {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  }
}

@media (max-width: 1020px) {
  .contact-source-grid,
  .about-community-grid,
  .hormone-why-layout,
  .telehealth-services-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-scheduler-card,
  .contact-policy-card {
    min-height: 0;
  }

  .contact-detail-row > div,
  .contact-detail-row:nth-child(1) > div,
  .contact-detail-row:nth-child(2) > div,
  .contact-detail-row:nth-child(3) > div,
  .contact-detail-row:nth-child(4) > div {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    max-width: 100%;
  }

  .contact-detail-row a,
  .contact-detail-row p,
  .contact-detail-row:nth-child(2) p,
  .contact-detail-row:nth-child(4) p {
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .contact-policy-card {
    margin-top: 32px;
  }

  .contact-page .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 40px;
  }

  .contact-page .footer > .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-doctor-card {
    grid-template-columns: minmax(150px, 200px) minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .service-feature-strip,
  .telehealth-benefit-grid,
  .careplans-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

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

  .about-doctor-card > img {
    justify-self: center;
  }
}

@media (max-width: 767px) {
  .container,
  .contact-source-container,
  .careplans-plans .container,
  .contact-page .contact-hero-inner,
  .contact-page .contact-hero .section-heading,
  .contact-page .footer > .container {
    max-width: 100%;
  }

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

  .contact-hero-frame {
    width: 100%;
  }
}

/* GANO-branded visual refinement for the focused vein landing page. */
.vascular-page main {
  background-color: #fffdf8;
}

.vascular-page .vein-hero,
.vascular-page .section-white,
.vascular-page .section-cream,
.vascular-page .vein-vascular-note {
  background-size: 1024px auto;
  background-position: center top;
  background-repeat: repeat-y;
}

.vascular-page .vein-hero {
  position: relative;
  overflow: hidden;
  background-color: #fffdf8;
  background-image:
    radial-gradient(circle at 84% 18%, rgba(201, 168, 93, 0.15), transparent 27%),
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 253, 248, 0.84)),
    url('../gano-images/marble-wallpaper.jpg');
  border-bottom: 1px solid rgba(201, 168, 93, 0.28);
}

.vascular-page .section-white {
  background-color: #fffdf8;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 253, 248, 0.9)),
    url('../gano-images/marble-wallpaper.jpg');
}

.vascular-page .section-cream {
  background-color: #f8f2e7;
  background-image:
    linear-gradient(rgba(248, 242, 231, 0.88), rgba(251, 247, 239, 0.92)),
    url('../gano-images/marble-wallpaper.jpg');
}

.vascular-page .vein-section {
  position: relative;
  border-top: 1px solid rgba(201, 168, 93, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.vascular-page .vein-hero-grid {
  position: relative;
  z-index: 1;
}

.vascular-page .vein-hero-copy {
  min-width: 0;
}

.vascular-page .vein-hero .eyebrow,
.vascular-page .vein-section .eyebrow {
  color: #927022;
}

.vascular-page .vein-hero h1 {
  color: #14363c;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.vascular-page .vein-trust-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 0.9rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(201, 168, 93, 0.42);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 7px 20px rgba(18, 49, 58, 0.07);
}

.vascular-page .vein-trust-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  background: #0d5f50;
  box-shadow: 0 4px 10px rgba(13, 95, 80, 0.2);
}

.vascular-page .vein-trust-icon svg {
  width: 20px;
  height: 20px;
}

.vascular-page .vein-trust-line {
  display: grid;
  grid-template-columns: auto;
  gap: 0.02rem;
  margin: 0;
  line-height: 1.22;
}

.vascular-page .vein-trust-line strong {
  color: #12313a;
  font-size: 0.86rem;
}

.vascular-page .vein-trust-line span {
  color: #52676e;
  font-size: 0.73rem;
  font-weight: 650;
}

.vascular-page .vein-primary-cta,
.vascular-page .vein-cta-row .btn,
.vascular-page .vein-sticky-cta .btn {
  border-color: #c39d45;
  border-radius: 6px;
  background: linear-gradient(180deg, #d7b867, #c9a85d);
  box-shadow: 0 7px 16px rgba(166, 126, 45, 0.22);
}

.vascular-page .vein-primary-cta:hover,
.vascular-page .vein-cta-row .btn:hover,
.vascular-page .vein-sticky-cta .btn:hover {
  background: linear-gradient(180deg, #cfae59, #b9933f);
  transform: translateY(-1px);
}

.vascular-page .vein-hero-media {
  position: relative;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 11px;
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(18, 49, 58, 0.16), 0 0 0 1px rgba(201, 168, 93, 0.25);
}

.vascular-page .vein-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 7px;
  box-shadow: inset 0 0 0 1px rgba(18, 49, 58, 0.08);
}

.vascular-page .vein-hero-media img {
  object-position: 52% center;
}

.vascular-page .vein-card-grid {
  align-items: stretch;
}

.vascular-page .vein-card,
.vascular-page .vein-service-term,
.vascular-page .vein-check-list li,
.vascular-page .vein-steps li {
  border: 1px solid rgba(219, 205, 177, 0.84);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(18, 49, 58, 0.07);
}

.vascular-page .vein-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding-top: 1.45rem;
}

.vascular-page .vein-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #c9a85d, #dfc77f);
}

.vascular-page .vein-card:nth-child(2)::before {
  background: linear-gradient(90deg, #0d5f50, #2b8a72);
}

.vascular-page .vein-card h3,
.vascular-page .vein-steps h3 {
  color: #15373d;
}

.vascular-page #legs-protocol .vein-split {
  padding: 1.25rem;
  border: 1px solid rgba(219, 205, 177, 0.88);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 15px 34px rgba(18, 49, 58, 0.08);
}

.vascular-page #legs-protocol .vein-split {
  border-top: 4px solid #c9a85d;
}

.vascular-page .vein-service-term {
  border-left: 4px solid #c9a85d;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 239, 0.95));
  box-shadow: 0 8px 20px rgba(18, 49, 58, 0.06);
}

.vascular-page #advanced-laser .vein-content {
  padding: 1.35rem;
  border: 1px solid rgba(219, 205, 177, 0.82);
  border-left: 4px solid #0d5f50;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(18, 49, 58, 0.07);
}

.vascular-page .vein-check-list {
  gap: 0.8rem;
}

.vascular-page .vein-check-list li {
  align-items: center;
  border-bottom-color: rgba(219, 205, 177, 0.84);
  padding: 0.8rem 0.9rem;
}

.vascular-page .vein-check-list span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #ffffff;
  background: #0d5f50;
  font-size: 0.76rem;
}

.vascular-page .vein-steps li {
  padding: 1rem;
}

.vascular-page .vein-steps li > span {
  box-shadow: 0 5px 12px rgba(13, 95, 80, 0.22);
}

.vascular-page .vein-vascular-note {
  background-color: #fffdf8;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 253, 248, 0.94)),
    url('../gano-images/marble-wallpaper.jpg');
  border-top-color: rgba(201, 168, 93, 0.22);
}

.vascular-page .vein-final-cta {
  position: relative;
  overflow: hidden;
  padding: 3.4rem 0;
  border-top: 4px solid #c9a85d;
  border-bottom: 1px solid rgba(201, 168, 93, 0.55);
  background-color: #0d5f50;
  background-image:
    linear-gradient(135deg, rgba(13, 95, 80, 0.97), rgba(15, 122, 98, 0.9)),
    url('../gano-images/marble-wallpaper.jpg');
  background-size: cover;
  box-shadow: inset 0 18px 40px rgba(4, 42, 34, 0.12);
}

.vascular-page .vein-final-cta h2 {
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  letter-spacing: -0.025em;
}

.vascular-page .vein-final-cta .btn-light {
  border-color: rgba(255, 255, 255, 0.74);
  border-radius: 6px;
  color: #12313a;
  box-shadow: 0 8px 18px rgba(3, 35, 29, 0.18);
}

.vascular-page .footer {
  background-color: #0b0b0b;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.7)),
    url('../gano-images/footer-bg.jpg');
  background-size: cover;
  background-position: center;
}

.vascular-page .vein-sticky-cta {
  border-top-color: rgba(201, 168, 93, 0.55);
  background-color: rgba(255, 253, 248, 0.98);
  background-image:
    linear-gradient(rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.96)),
    url('../gano-images/marble-wallpaper.jpg');
  background-size: 640px auto;
}

@media (min-width: 700px) {
  .vascular-page .vein-hero {
    padding: 3.75rem 0;
  }

  .vascular-page .vein-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(2.75rem, 5vw, 4.5rem);
  }

  .vascular-page .vein-hero h1 {
    font-size: clamp(2.65rem, 4.2vw, 3.55rem);
  }

  .vascular-page #legs-protocol .vein-split {
    padding: 2rem;
  }

  .vascular-page #advanced-laser .vein-content {
    padding: 2rem 2.2rem;
  }
}

@media (max-width: 699px) {
  .vascular-page .vein-hero {
    padding-top: 1.15rem;
  }

  .vascular-page .vein-trust-block {
    padding: 0.5rem 0.65rem;
  }

  .vascular-page .vein-card,
  .vascular-page .vein-service-term,
  .vascular-page .vein-steps li {
    border-radius: 9px;
  }

  .vascular-page #legs-protocol .vein-split,
  .vascular-page #advanced-laser .vein-content {
    padding: 1rem;
  }
}

/* Static legal policy pages */
.legal-page {
  background: #fffdf8;
}

.legal-page a:focus-visible,
.legal-page button:focus-visible {
  outline: 3px solid #0b6d58;
  outline-offset: 3px;
}

.legal-hero {
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid rgba(201, 168, 93, 0.3);
  text-align: center;
}

.legal-hero h1 {
  margin-bottom: 0.6rem;
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  color: #12313a;
}

.legal-hero p {
  margin: 0;
  color: #5d7178;
  font-weight: 700;
}

.legal-body {
  padding: 3rem 0 4rem;
}

.legal-container {
  max-width: 960px;
}

.legal-card {
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid #eadfca;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(18, 49, 58, 0.08);
}

.legal-prose {
  overflow-wrap: anywhere;
}

.legal-prose h2 {
  margin-top: 2.5rem;
  padding-top: 0.4rem;
  font-size: clamp(1.45rem, 4vw, 1.9rem);
  color: #12313a;
}

.legal-prose > h2:first-child {
  margin-top: 0;
}

.legal-prose h3 {
  margin-top: 2rem;
  font-size: 1.25rem;
  color: #12313a;
}

.legal-prose h4 {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: #12313a;
}

.legal-prose p,
.legal-prose li {
  color: #334d55;
  line-height: 1.72;
}

.legal-prose p {
  margin-bottom: 1.15rem;
}

.legal-prose ul,
.legal-prose ol {
  margin: 0 0 1.4rem;
  padding-left: 1.4rem;
}

.legal-prose li {
  margin-bottom: 0.55rem;
}

.legal-prose ul ul,
.legal-prose ol ol,
.legal-prose ul ol,
.legal-prose ol ul {
  margin-top: 0.55rem;
  margin-bottom: 0.55rem;
}

.legal-prose a {
  color: #0d5f50;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page .copyright a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Laser treatment pages */
.laser-page {
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
}

.laser-page :focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
}

.laser-hero {
  padding: 1.35rem 0 2.25rem;
  background: linear-gradient(135deg, #fbf7ef 0%, #f2ecdf 100%);
}

.laser-hero-grid,
.laser-content-grid,
.laser-split {
  display: grid;
  gap: 1.35rem;
}

.laser-hero h1 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.72rem, 7.6vw, 3.2rem);
  line-height: 1.08;
  color: var(--color-dark);
}

.laser-lead {
  max-width: 650px;
  margin-bottom: 0.8rem;
  color: #334d55;
  font-size: 1rem;
  line-height: 1.55;
}

.laser-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem 0.6rem;
  margin-bottom: 1rem;
  color: var(--color-secondary-dark);
  font-size: 0.88rem;
}

.laser-trust span::before {
  content: "•";
  margin-right: 0.6rem;
  color: var(--color-primary-dark);
}

.laser-primary-cta,
.laser-sticky-cta .btn {
  min-height: 48px;
  font-size: 0.93rem;
}

.laser-sticky-cta.is-footer-visible,
.vein-sticky-cta.is-footer-visible {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 767px) {
.laser-page .footer,
  .vascular-page .footer {
    padding-bottom: calc(5.25rem + env(safe-area-inset-bottom));
  }
}

/* Hormone Health landing-page conversion layout */
.hormone-page .hormone-hero {
  padding: clamp(1.5rem, 4vw, 4.25rem) 0;
  background:
    linear-gradient(120deg, rgba(255, 253, 248, 0.96), rgba(247, 242, 232, 0.86)),
    url('../gano-images/marble-wallpaper.jpg') center / cover;
}

.hormone-page .hormone-hero-inner {
  display: grid;
  max-width: 1120px;
  gap: 1.5rem;
  text-align: left;
}

.hormone-page .hormone-hero-copy {
  min-width: 0;
}

.hormone-page .hormone-hero h1 {
  max-width: 650px;
  margin-bottom: 0.85rem;
  color: #12313a;
  font-size: clamp(2rem, 7.2vw, 3.35rem);
}

.hormone-page .hormone-hero .lead {
  max-width: 650px;
  margin: 0 0 1rem;
  font-size: clamp(0.96rem, 2.7vw, 1.08rem);
  line-height: 1.62;
}

.hormone-hero-trust {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 14px;
  color: var(--color-primary-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.hormone-hero-trust::before {
  content: "✓";
  display: grid;
  width: 1.1rem;
  height: 1.1rem;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.68rem;
}

.hormone-hero-cta {
  display: flex;
  width: fit-content;
  min-height: 48px;
  font-size: 0.92rem;
}

.hormone-page .hormone-hero-media {
  min-width: 0;
}

.hormone-page .hormone-hero-image {
  width: 100%;
  max-height: 360px;
  margin: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 93, 0.45);
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(18, 49, 58, 0.15);
}

.hormone-help {
  border-top: 1px solid rgba(201, 168, 93, 0.18);
}

.hormone-help-layout {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  max-width: 1000px;
}

.hormone-help-heading h2 {
  max-width: 440px;
  margin: 0;
  color: #12313a;
  font-size: clamp(1.7rem, 5vw, 2.35rem);
}

.hormone-help .hormone-signs-panel {
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(18, 49, 58, 0.06);
}

.hormone-help .hormone-signs-panel h3 {
  margin: 0 0 0.9rem;
  color: #12313a;
  font-size: 1rem;
  font-weight: 800;
}

.hormone-help .hormone-signs {
  gap: 0.7rem 1rem;
}

.hormone-help .hormone-signs span {
  color: #334d55;
  font-size: 0.86rem;
  font-weight: 700;
}

.hormone-page .hormone-services .section-heading {
  max-width: 760px;
  margin-inline: auto;
}

.hormone-page .hormone-accordion {
  max-width: 1000px;
  gap: 1rem;
}

.hormone-page .hormone-card {
  border-radius: 10px;
  overflow: hidden;
}

.hormone-page .hormone-card-main {
  min-height: 88px;
  padding: 1.1rem 1.35rem;
}

.hormone-page .hormone-card-title {
  font-size: 1rem;
}

.hormone-page .hormone-card-description {
  font-size: 0.82rem;
}

.hormone-page .hormone-card-panel {
  padding: clamp(1.15rem, 3vw, 2rem);
}

.hormone-page .hormone-card-panel p,
.hormone-page .hormone-card-panel li {
  color: #334d55;
  font-size: 0.9rem;
  line-height: 1.7;
}

.hormone-page .hormone-card-panel h4 {
  margin-top: 1.35rem;
  color: #12313a;
  font-size: 1rem;
}

.hormone-page .hormone-why-layout {
  display: block;
  max-width: 1000px;
}

.hormone-page .hormone-why-main .section-heading {
  max-width: 620px;
}

.hormone-page .hormone-why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hormone-page .hormone-why-card {
  min-height: 100%;
  padding: 1.2rem;
}

.hormone-page .hormone-why-card h3 {
  font-size: 0.98rem;
}

.hormone-page .hormone-why-card p {
  font-size: 0.84rem;
}

.hormone-journey {
  border-top: 1px solid rgba(201, 168, 93, 0.16);
}

.hormone-journey-steps {
  display: grid;
  gap: 1rem;
  max-width: 1000px;
  margin: 2rem auto 0;
  padding: 0;
  list-style: none;
  counter-reset: hormone-journey;
}

.hormone-journey-steps li {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  min-height: 92px;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(18, 49, 58, 0.05);
}

.hormone-journey-steps span {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 2.15rem;
  place-items: center;
  border-radius: 50%;
  background: #f6ead1;
  color: var(--color-primary-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.hormone-journey-steps h3 {
  margin: 0;
  color: #12313a;
  font-size: 0.98rem;
  line-height: 1.38;
}

.hormone-page .hormone-local-box {
  max-width: 860px;
  margin-inline: auto;
}

.hormone-page .hormone-faq-list {
  max-width: 900px;
}

.hormone-page .hormone-faq-item {
  border-radius: 9px;
}

.hormone-page .hormone-faq-item > summary {
  padding: 1.05rem 1.15rem;
  color: #12313a;
  font-size: 0.95rem;
}

.hormone-page .hormone-faq-answer {
  padding: 0 1.15rem 1.15rem;
}

.hormone-page .hormone-cta .cta-box {
  max-width: 900px;
  padding: clamp(1.6rem, 5vw, 3.25rem);
  border-radius: 10px;
}

@media (min-width: 768px) {
  .hormone-page .hormone-hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
  }

  .hormone-help-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 3rem;
  }

  .hormone-journey-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hormone-page .hormone-hero {
    padding-top: 1.25rem;
  }

  .hormone-page .hormone-hero-cta {
    width: 100%;
  }

  .hormone-page .hormone-hero-image {
    max-height: 240px;
  }

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

  .hormone-page .hormone-card-main {
    padding: 1rem;
  }

  .hormone-page .hormone-card-description {
    font-size: 0.76rem;
  }
}

.laser-visual {
  position: relative;
  display: grid;
  min-height: 182px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 93, 0.55);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.88), rgba(247,244,236,0.7)),
    url('../gano-images/marble-wallpaper.jpg') center / cover;
  box-shadow: var(--shadow);
}

.laser-visual .laser-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.laser-visual .laser-hero-image--rosacea {
  object-position: 58% center;
}

.laser-visual .laser-hero-image--spider {
  object-position: 62% center;
}

.laser-visual .laser-hero-image--acne {
  object-position: 52% center;
}

.laser-visual .laser-hero-image--gold {
  object-position: 52% center;
}

.laser-visual .laser-hero-image--glow {
  object-position: 52% center;
}

.laser-visual .laser-hero-image--renew {
  object-position: 50% center;
}

.laser-visual span {
  color: var(--color-secondary-dark);
  font-size: clamp(1.35rem, 7vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.04;
  text-align: center;
}

.laser-hub-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.laser-hub-card,
.laser-panel {
  display: block;
  min-height: 100%;
  padding: 1.3rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 49, 58, 0.06);
}

a.laser-hub-card {
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

a.laser-hub-card:hover,
a.laser-hub-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(18, 49, 58, 0.12);
}

.laser-hub-card > span,
.nav-submenu-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-primary-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.laser-hub-card h3,
.laser-panel h2 {
  margin-bottom: 0.55rem;
  color: var(--color-dark);
}

.laser-hub-card b {
  display: inline-block;
  margin-top: 0.65rem;
  color: var(--color-secondary-dark);
  font-size: 0.85rem;
}

.laser-content,
.laser-why {
  max-width: 900px;
}

.laser-content h2,
.laser-why h2,
.laser-content-grid h2,
.laser-split h2 {
  color: var(--color-dark);
}

/* Keep the heading of each content section visually separated from the card grid above it. */
.laser-page main > section:has(.laser-content-grid) + section .laser-content > h2,
.laser-page main > section:has(.laser-content) + section .laser-content > h2,
.laser-page main > section:has(.laser-faq-list) + section .laser-why > h2 {
  margin-top: 1rem;
}

.laser-check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.laser-check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #334d55;
  line-height: 1.5;
}

.laser-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 900;
}

.laser-faq-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.laser-faq-list details {
  border: 1px solid var(--color-border);
  border-radius: 7px;
  background: #fff;
}

.laser-faq-list summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--color-dark);
  font-weight: 800;
}

.laser-faq-list p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: #334d55;
  line-height: 1.58;
}

.laser-final-cta {
  padding: 3.1rem 0;
  background: var(--color-secondary-dark);
  color: #fff;
  text-align: center;
}

.laser-final-cta h2 {
  color: #fff;
}

.laser-final-cta p {
  max-width: 620px;
  margin: 0.75rem auto 1.25rem;
  color: rgba(255,255,255,0.9);
}

.laser-sticky-cta {
  position: fixed;
  right: 0.8rem;
  bottom: calc(0.75rem + env(safe-area-inset-bottom));
  left: 0.8rem;
  z-index: 90;
  text-align: center;
}

.laser-sticky-cta .btn {
  width: 100%;
  box-shadow: 0 8px 22px rgba(18, 49, 58, 0.25);
}

.nav-submenu-label {
  padding: 0.65rem 1rem 0.25rem;
  margin: 0;
}

@media (min-width: 768px) {
  .laser-page {
    padding-bottom: 0;
  }

  .laser-hero {
    padding: 4.5rem 0;
  }

  .laser-hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: center;
    gap: 3rem;
  }

  .laser-content-grid,
  .laser-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .laser-hub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .nav-submenu.laser-nav-submenu {
    width: 260px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-block: 72px 80px;
  }

  .navlinks > a:not(.btn),
  .nav-dropdown-trigger,
  .nav-dropdown-menu > .nav-dropdown-item > a,
  .navlinks.open .nav-submenu a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
  }

  a,
  button,
  summary,
  input,
  select,
  textarea,
  [tabindex]:not([tabindex="-1"]) {
    scroll-margin-block: 72px 80px;
  }

  .hormone-card-banner {
    height: 210px;
  }

  .legal-hero {
    padding: 2.5rem 0 2.25rem;
  }

  .legal-body {
    padding: 1.5rem 0 2.5rem;
  }

  .legal-card {
    border-radius: 8px;
  }

  .legal-prose h2 {
    margin-top: 2rem;
  }
}

/* A two-tone indicator remains visible on both light and dark brand surfaces. */
body :is(a, button, summary, input, select, textarea, [tabindex]:not([tabindex="-1"])):focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px #0b6d58;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Conversion service pages */
.conversion-service-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.75rem) 0;
  border-bottom: 1px solid rgba(201, 168, 93, 0.28);
}

.conversion-service-hero-inner {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1120px;
}

.conversion-service-hero-copy,
.conversion-service-hero-media {
  min-width: 0;
}

.conversion-service-hero .service-hero-badge {
  margin: 0 0 0.85rem;
}

.conversion-service-hero h1 {
  max-width: 690px;
  margin: 0 0 0.85rem;
  color: #12313a;
  font-size: clamp(2rem, 5.2vw, 3.45rem);
  line-height: 1.05;
}

.conversion-service-hero .lead {
  max-width: 680px;
  margin: 0 0 0.9rem;
  font-size: clamp(0.98rem, 1.7vw, 1.12rem);
  line-height: 1.62;
}

.conversion-hero-trust {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.48rem;
  margin: 0 0 14px;
  color: var(--color-primary-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.conversion-hero-trust::before {
  content: "✓";
  display: grid;
  flex: 0 0 1.15rem;
  width: 1.15rem;
  height: 1.15rem;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.68rem;
}

.conversion-hero-cta {
  display: flex;
  width: fit-content;
  min-height: 48px;
}

.conversion-service-hero-image {
  display: block;
  width: 100%;
  max-height: 390px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 93, 0.48);
  border-radius: 12px;
  box-shadow: 0 20px 44px rgba(18, 49, 58, 0.16);
}

.conversion-feature-section {
  padding: 1.25rem 0 1.5rem;
}

.conversion-service-page .service-feature-strip {
  margin: 0;
}

.conversion-service-page .service-content-inner {
  max-width: 900px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(201, 168, 93, 0.28);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 49, 58, 0.08);
}

.conversion-service-page .weight-options .section-heading,
.conversion-service-page .hormone-why .section-heading,
.conversion-service-page .telehealth-benefits .section-heading,
.conversion-service-page .telehealth-services .section-heading {
  max-width: 820px;
  margin-inline: auto;
}

.conversion-service-page .hormone-card,
.conversion-service-page .hormone-why-card,
.conversion-service-page .telehealth-benefit-card,
.conversion-service-page .telehealth-steps-card,
.conversion-service-page .telehealth-security-card,
.conversion-service-page .care-plan-card,
.conversion-service-page .careplans-note-card {
  border-color: rgba(201, 168, 93, 0.34);
  box-shadow: 0 14px 32px rgba(18, 49, 58, 0.08);
}

.conversion-service-page .hormone-faq-list {
  max-width: 900px;
  margin-inline: auto;
}

.conversion-service-page .hormone-cta .cta-box,
.conversion-service-page .careplans-note-card {
  border: 1px solid rgba(201, 168, 93, 0.4);
  box-shadow: 0 18px 42px rgba(18, 49, 58, 0.1);
}

.conversion-service-logo-card {
  display: grid;
  min-height: 290px;
  place-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(201, 168, 93, 0.48);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 44px rgba(18, 49, 58, 0.13);
}

.conversion-service-logo-card img {
  display: block;
  width: min(100%, 300px);
  height: auto;
}

@media (min-width: 768px) {
  .conversion-service-hero-inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  }

  /* Hover bridges remove the pointer gaps without changing menu structure. */
  .nav-dropdown::after {
    top: calc(100% - 6px);
    width: 222px;
    height: 16px;
  }

  .nav-dropdown-menu {
    top: calc(100% - 1px);
  }

  .nav-dropdown-item.has-submenu::after {
    left: calc(100% - 8px);
    width: 20px;
  }

  .nav-submenu {
    left: calc(100% - 6px);
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .nav-dropdown-item.has-submenu::after {
    right: calc(100% - 8px);
    left: auto;
  }

  .nav-submenu {
    right: calc(100% - 6px);
    left: auto;
  }
}

@media (max-width: 767px) {
  .conversion-service-hero {
    padding: 1.35rem 0 1.75rem;
  }

  .conversion-service-hero-inner {
    gap: 1.4rem;
  }

  .conversion-service-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .conversion-service-hero .lead {
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .conversion-hero-cta {
    width: 100%;
  }

  .conversion-service-hero-image {
    max-height: 270px;
    aspect-ratio: 16 / 10;
  }

  .conversion-service-logo-card {
    min-height: 190px;
  }

  .conversion-service-page .section {
    padding-block: 2.5rem;
  }
}

/* Service-page visual refinement */
.hormone-page main,
.conversion-service-page main,
.contact-page main {
  color: #334d55;
}

.hormone-page .section,
.conversion-service-page .section {
  padding-block: clamp(2.75rem, 4.5vw, 3.75rem);
}

.hormone-page .section-heading,
.conversion-service-page .section-heading {
  margin-bottom: 1.6rem;
}

.hormone-page .section-heading h2,
.conversion-service-page .section-heading h2 {
  color: #12313a;
  font-size: clamp(1.75rem, 2.7vw, 2.2rem);
  line-height: 1.12;
}

.hormone-page .section-heading .lead,
.conversion-service-page .section-heading .lead {
  color: #4b6269;
  font-size: 0.98rem;
  line-height: 1.65;
}

.hormone-page .hormone-hero,
.conversion-service-page .conversion-service-hero {
  padding-block: clamp(2.2rem, 4.5vw, 3.5rem);
}

.hormone-page .hormone-hero-inner,
.conversion-service-page .conversion-service-hero-inner {
  max-width: 1080px;
}

.hormone-page .hormone-hero-image,
.conversion-service-page .conversion-service-hero-image {
  max-height: 315px;
  aspect-ratio: 4 / 3;
}

.trt-page .conversion-service-hero-image {
  object-position: 50% 43%;
}

.conversion-service-page .conversion-service-hero-inner {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
}

.conversion-service-page .conversion-service-hero h1 {
  max-width: 650px;
  font-size: clamp(2.25rem, 4.3vw, 3.25rem);
}

.conversion-service-page .conversion-service-hero .lead {
  font-size: 1rem;
  line-height: 1.65;
}

.conversion-service-page .conversion-hero-trust,
.hormone-page .hormone-hero-trust {
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.aesthetics-page .conversion-service-hero-image {
  aspect-ratio: 16 / 10;
  object-position: center 42%;
}

.conversion-service-page .hormone-accordion {
  width: 100%;
  max-width: 980px;
  margin-top: 1.65rem;
}

.conversion-service-page .hormone-card,
.hormone-page .hormone-card,
.hormone-page .hormone-faq-item,
.conversion-service-page .hormone-faq-item {
  border-radius: 10px;
}

.conversion-service-page .hormone-card-main,
.hormone-page .hormone-card-main {
  min-height: 88px;
  padding: 1.1rem 1.25rem;
}

.conversion-service-page .hormone-card-title,
.hormone-page .hormone-card-title {
  font-size: 1rem;
}

.conversion-service-page .hormone-card-description,
.hormone-page .hormone-card-description {
  max-width: 46rem;
  color: #536a71;
  font-size: 0.86rem;
  line-height: 1.55;
}

.conversion-service-page .hormone-card-panel p,
.conversion-service-page .hormone-card-panel li,
.hormone-page .hormone-card-panel p,
.hormone-page .hormone-card-panel li {
  font-size: 0.94rem;
  line-height: 1.72;
}

.conversion-service-page .hormone-why-card,
.hormone-page .hormone-why-card {
  min-height: 100%;
  padding: 1.2rem;
}

.conversion-service-page .hormone-why-card h3,
.hormone-page .hormone-why-card h3 {
  font-size: 0.98rem;
}

.conversion-service-page .hormone-why-card p,
.hormone-page .hormone-why-card p {
  color: #4b6269;
  font-size: 0.88rem;
  line-height: 1.6;
}

.conversion-service-page .hormone-signs-panel {
  padding: 1.4rem;
  border: 1px solid rgba(201, 168, 93, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(18, 49, 58, 0.06);
}

.conversion-service-page .hormone-signs-panel h3 {
  color: #12313a;
  font-size: 0.95rem;
  font-weight: 800;
}

.conversion-service-page .hormone-signs span {
  color: #536a71;
  font-size: 0.84rem;
  line-height: 1.5;
}

.aesthetics-page .hormone-why-layout {
  display: block;
  max-width: 1000px;
}

.aesthetics-page .hormone-why-main .section-heading {
  max-width: 760px;
}

.aesthetics-page .hormone-why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.aesthetics-page .hormone-signs-panel {
  margin-top: 1rem;
}

.aesthetics-page .hormone-signs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.conversion-service-page .hormone-faq-list,
.hormone-page .hormone-faq-list {
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.conversion-service-page .hormone-faq-item > summary,
.hormone-page .hormone-faq-item > summary {
  min-height: 56px;
  padding: 1rem 1.15rem;
  font-size: 0.96rem;
}

.conversion-service-page .hormone-faq-answer p,
.hormone-page .hormone-faq-answer p {
  color: #4b6269;
  font-size: 0.9rem;
  line-height: 1.7;
}

.hormone-page .hormone-help-layout,
.hormone-page .hormone-why-layout,
.hormone-page .hormone-journey-steps,
.hormone-page .hormone-local-box {
  max-width: 980px;
}

.hormone-page .hormone-help .hormone-signs span {
  font-size: 0.9rem;
}

.hormone-page .hormone-local-box p {
  font-size: 0.96rem;
  line-height: 1.7;
}

.hormone-page .hormone-cta .cta-box,
.conversion-service-page .hormone-cta .cta-box {
  max-width: 920px;
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: 10px;
}

.conversion-service-page .hormone-cta {
  padding-block: 2.75rem;
}

.service-pricing-bridge {
  padding-block: 2rem 1.25rem !important;
  border-top: 1px solid rgba(201, 168, 93, 0.18);
  background: #fffdf8;
}

.service-pricing-bridge .lead {
  color: #536a71;
  font-size: 0.96rem;
}

.service-pricing-bridge + .hormone-cta {
  padding-top: 0;
}

.conversion-service-page .service-feature-card {
  min-height: 152px;
  padding: 1.35rem;
}

.conversion-service-page .service-feature-card h3 {
  font-size: 1rem;
}

.conversion-service-page .service-feature-card p {
  color: #536a71;
  font-size: 0.88rem;
  line-height: 1.55;
}

.telemedicine-page .telehealth-benefit-grid {
  gap: 1.1rem;
  margin-top: 1.75rem;
}

.telemedicine-page .telehealth-benefit-card {
  min-height: 180px;
  padding: 1.5rem;
  border-radius: 10px;
}

.telemedicine-page .telehealth-benefit-card p,
.telemedicine-page .telehealth-service-item,
.telemedicine-page .telehealth-step p,
.telemedicine-page .telehealth-security-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.telemedicine-page .telehealth-services-layout {
  max-width: 1000px;
  gap: 2rem;
  align-items: start;
}

.telemedicine-page .telehealth-service-list {
  max-width: none;
  gap: 0.6rem;
}

.telemedicine-page .telehealth-service-item {
  min-height: 46px;
  border-radius: 8px;
}

.telemedicine-page .telehealth-steps-card,
.telemedicine-page .telehealth-security-card {
  border-radius: 10px;
}

.telemedicine-page .telehealth-security-card {
  max-width: 800px;
  padding: 2.25rem;
}

.careplans-page .careplans-hero.section {
  margin-top: 0;
  padding-block: 3rem;
}

.careplans-page .conversion-service-logo-card {
  min-height: 235px;
  padding: 2.25rem;
}

.careplans-page .conversion-service-logo-card img {
  width: min(100%, 250px);
}

.careplans-page .careplans-plans.section {
  padding-block: 3.25rem;
}

.careplans-page .careplans-grid {
  align-items: stretch;
  gap: 1.25rem;
}

.careplans-page .care-plan-card,
.careplans-page .care-plan-card.is-popular {
  min-height: 570px;
  margin-top: 0;
  padding: 1.75rem;
}

.careplans-page .care-plan-icon {
  margin: 0 0 1.25rem;
}

.careplans-page .care-plan-price-block {
  margin: 1rem 0 2rem;
}

.careplans-page .care-plan-card .card-actions {
  padding-top: 1.5rem;
}

.careplans-page .careplans-consult.section {
  padding-block: 2.75rem;
}

.careplans-page .careplans-note-card {
  height: auto;
  margin-top: 0;
  padding: 2.5rem;
}

.contact-page .contact-hero.section {
  padding-block: 3.25rem;
}

.contact-page .contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 3rem;
  align-items: center;
  max-width: 1080px;
  text-align: left;
}

.contact-page .contact-hero .section-heading {
  max-width: 520px;
  margin: 0;
  text-align: left;
}

.contact-page .contact-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 4.2vw, 3.35rem);
  line-height: 1.05;
}

.contact-page .contact-hero .lead {
  max-width: 520px;
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.65;
}

.contact-page .contact-hero-frame {
  width: 100%;
  height: auto;
  margin: 0;
  aspect-ratio: 16 / 7;
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(18, 49, 58, 0.13);
}

.contact-page .contact-main.section {
  padding-block: 3.25rem;
}

.contact-page .contact-source-container {
  max-width: min(1120px, calc(100vw - 40px));
}

.contact-page .contact-source-grid {
  grid-template-columns: minmax(300px, 350px) minmax(0, 1fr);
  gap: 1.5rem;
}

.contact-page .contact-left {
  gap: 1.25rem;
}

.contact-page .contact-info-card,
.contact-page .contact-scheduler-card,
.contact-page .contact-policy-card {
  min-height: 0;
  padding: 1.75rem;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(18, 49, 58, 0.07);
}

.contact-page .contact-policy-card {
  margin-top: 1.5rem;
}

.contact-page .contact-details-list {
  gap: 1.25rem;
}

.contact-page .contact-detail-icon {
  flex-basis: 42px;
  width: 42px;
  height: 42px;
}

.contact-page .contact-sms-box,
.contact-page .contact-welcome-box {
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.contact-page .contact-booking-btn {
  height: 52px;
  font-size: 1rem;
}

.contact-page .contact-directions-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.65rem;
  color: var(--color-secondary-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact-page .footer > .container {
  max-width: min(1280px, calc(100vw - 48px));
  padding-inline: 1.25rem;
}

.contact-page .footer-grid {
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3.5rem;
}

.contact-page .footer-logo {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-page .footer-logo .brand-logo-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.contact-page .footer-logo .brand-text span {
  font-size: 0.92rem;
  line-height: 1.1;
}

.contact-page .footer-logo .brand-text small {
  font-size: 0.65rem !important;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .hormone-page .section,
  .conversion-service-page .section {
    padding-block: 2.35rem;
  }

  .hormone-page .hormone-hero,
  .conversion-service-page .conversion-service-hero {
    padding-block: 1.25rem 1.6rem;
  }

  .hormone-page .hormone-hero-inner,
  .conversion-service-page .conversion-service-hero-inner {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .hormone-page .hormone-hero-image,
  .conversion-service-page .conversion-service-hero-image {
    max-height: 225px;
    aspect-ratio: 16 / 10;
  }

  .conversion-service-page .hormone-card-main,
  .hormone-page .hormone-card-main {
    min-height: 0;
    padding: 1rem;
  }

  .conversion-service-page .hormone-card-description,
  .hormone-page .hormone-card-description {
    font-size: 0.82rem;
  }

  .aesthetics-page .hormone-why-grid,
  .aesthetics-page .hormone-signs {
    grid-template-columns: 1fr;
  }

  .service-pricing-bridge {
    padding-block: 1.65rem 1rem !important;
  }

  .conversion-service-page .hormone-cta {
    padding-block: 2.25rem;
  }

  .service-pricing-bridge + .hormone-cta {
    padding-top: 0;
  }

  .careplans-page .careplans-hero.section {
    padding-block: 1.5rem 1.75rem;
  }

  .careplans-page .conversion-service-logo-card {
    min-height: 155px;
    padding: 1.5rem;
  }

  .careplans-page .conversion-service-logo-card img {
    width: min(100%, 210px);
  }

  .careplans-page .care-plan-card,
  .careplans-page .care-plan-card.is-popular {
    min-height: 0;
    padding: 1.5rem;
  }

  .contact-page .contact-hero.section {
    padding-block: 1.75rem;
  }

  .contact-page .contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-inline: 1.25rem;
  }

  .contact-page .contact-hero .section-heading {
    text-align: left;
  }

  .contact-page .contact-hero h1 {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  .contact-page .contact-hero .lead {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .contact-page .contact-hero-frame {
    aspect-ratio: 16 / 8;
  }

  .contact-page .contact-main.section {
    padding-block: 2.35rem;
  }

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

  .contact-page .contact-info-card,
  .contact-page .contact-scheduler-card,
  .contact-page .contact-policy-card {
    padding: 1.35rem;
  }

  .contact-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Consolidated FAQ page */
.faq-page main {
  background: #fffdf8;
}

.faq-hero {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  text-align: center;
}

.faq-hero-inner {
  max-width: 820px;
}

.faq-hero h1 {
  margin: 0;
  color: #12313a;
  font-size: clamp(2.35rem, 5vw, 3.8rem);
  line-height: 1.05;
}

.faq-anchor-section {
  padding-block: 2rem;
  border-bottom: 1px solid rgba(201, 168, 93, 0.28);
}

.faq-anchor-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.faq-anchor-grid a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(201, 168, 93, 0.45);
  border-radius: 6px;
  background: #fff;
  color: #12313a;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(18, 49, 58, 0.05);
}

.faq-anchor-grid a:hover,
.faq-anchor-grid a:focus-visible {
  border-color: var(--color-primary);
  background: #fffaf0;
}

.faq-category {
  scroll-margin-top: 1rem;
}

.faq-category-inner {
  max-width: 900px;
}

.faq-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq-category-heading h2 {
  margin-bottom: 0;
  color: #12313a;
}

.faq-service-link,
.faq-back-link {
  color: var(--color-secondary-dark);
  font-weight: 800;
  text-decoration: none;
}

.faq-service-link {
  flex: 0 0 auto;
  margin-bottom: 0.25rem;
}

.faq-back-link {
  display: inline-flex;
  margin-top: 1.35rem;
  font-size: 0.82rem;
}

.faq-service-link:hover,
.faq-back-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.faq-page .laser-faq-list,
.faq-page .hormone-faq-list {
  max-width: 100%;
}

@media (max-width: 900px) {
  .faq-anchor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .faq-hero {
    padding-block: 2.5rem;
  }

  .faq-anchor-section {
    padding-block: 1.35rem;
  }

  .faq-anchor-grid {
    grid-template-columns: 1fr;
  }

  .faq-category {
    padding-block: 2.5rem;
  }

  .faq-category-heading {
    display: block;
  }

  .faq-service-link {
    display: inline-flex;
    margin-top: 0.75rem;
  }
}

@media (min-width: 768px) {
  .careplans-page .care-plan-card,
  .careplans-page .care-plan-card.is-popular {
    min-height: 490px;
  }

  .careplans-page .care-plan-label {
    margin-top: 1.35rem;
  }
}
