/*
Theme Name: Alpha Health
Theme URI: https://alphahealth.example
Author: Alpha Health
Description: Custom Alpha Health WordPress theme converted from the approved static site preview.
Version: 1.1.6
Text Domain: alpha-health
*/

:root {
  --red: #bf1e2e;
  --red-dark: #981724;
  --black: #000;
  --ink: #111;
  --charcoal: #1a1a1a;
  --gray: #777;
  --line: #dedede;
  --paper: #f7f6f3;
  --white: #fff;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 18px 60px rgb(0 0 0 / 16%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgb(247 246 243 / 92%);
  border-bottom: 1px solid rgb(0 0 0 / 8%);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  max-width: none;
  object-fit: contain;
}

.brand-logo-dark {
  height: 31px;
  max-width: 218px;
}

.brand-logo-light {
  height: 42px;
}

.brand-alpha {
  color: var(--red);
  font-size: 1.35rem;
  line-height: 1;
}

.brand-health {
  color: var(--ink);
  font-size: 1.13rem;
  font-weight: 400;
  line-height: 1;
}

.brand-arrow {
  color: var(--gray);
  font-size: 1.25rem;
  letter-spacing: 0;
  transform: translateY(-1px);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 1.9vw, 28px);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
}

.main-nav .nav-home-link {
  color: var(--charcoal);
}

.main-nav .nav-consult-link {
  color: var(--red);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  color: var(--red);
  font-weight: 900;
  white-space: nowrap;
  font-size: 0.96rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 46px;
  padding-inline: 20px;
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgb(255 255 255 / 42%);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(500px, calc(100vh - 150px), 620px);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 92%) 0%, rgb(0 0 0 / 78%) 45%, rgb(0 0 0 / 24%) 100%);
  content: "";
  z-index: 1;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22vh;
  background: linear-gradient(0deg, rgb(0 0 0 / 84%), rgb(0 0 0 / 0));
  content: "";
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  padding: 24px;
  background:
    radial-gradient(circle at 72% 26%, rgb(191 30 46 / 30%), transparent 30%),
    #050505;
  z-index: 0;
}

.hero-custom .hero-media {
  display: block;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 28%), rgb(0 0 0 / 8%)),
    var(--home-hero-image) center right / cover,
    #050505;
}

.hero-custom .media-tile {
  display: none;
}

.media-tile {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 12%);
}

.media-tile::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgb(0 0 0 / 74%)),
    linear-gradient(135deg, rgb(191 30 46 / 26%), rgb(0 0 0 / 14%));
  content: "";
}

.media-tile span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.media-tile-large {
  grid-row: span 2;
}

.media-photo-consult {
  background-image:
    linear-gradient(90deg, rgb(0 0 0 / 32%), rgb(0 0 0 / 8%)),
    url("public/assets/clinical-consult-couple.png");
}

.media-photo-training {
  background-image:
    linear-gradient(90deg, rgb(0 0 0 / 20%), rgb(0 0 0 / 8%)),
    url("https://alphamaleclin1.wpenginepowered.com/wp-content/uploads/2025/08/man-fitness-2021-08-29-16-43-06-utc-scaled-1.jpg");
}

.media-photo-active {
  background-image:
    linear-gradient(90deg, rgb(0 0 0 / 20%), rgb(0 0 0 / 8%)),
    url("public/assets/hero-women-wellness-card.png");
  background-position: center 24%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(30px, 5vw, 54px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--white);
}

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

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 3.8vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.1rem, 1.55vw, 1.42rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 590px;
  color: rgb(255 255 255 / 84%);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

.hero-content > .eyebrow {
  color: var(--red);
}

.hero-content > h1 {
  max-width: 700px;
  margin-bottom: 14px;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  line-height: 1.15;
}

.hero-display-copy {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(2.35rem, 4.4vw, 4.25rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span,
.hero-proof a {
  padding: 9px 12px;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 999px;
  color: rgb(255 255 255 / 82%);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof a {
  text-decoration: none;
}

.hero-proof a:hover {
  color: var(--white);
  border-color: rgb(255 255 255 / 48%);
}

.hero-bright {
  min-height: clamp(690px, calc(100vh - 70px), 820px);
  color: var(--ink);
  background: #f2f1ec;
}

.hero-bright::before {
  background:
    linear-gradient(90deg, rgb(247 246 243 / 98%) 0%, rgb(247 246 243 / 92%) 38%, rgb(247 246 243 / 18%) 70%, rgb(247 246 243 / 0%) 100%),
    linear-gradient(180deg, rgb(247 246 243 / 0%) 70%, rgb(247 246 243 / 86%) 100%);
}

.hero-bright::after {
  display: none;
}

.hero-bright .hero-media {
  display: block;
  padding: 0;
  background:
    linear-gradient(90deg, rgb(247 246 243 / 100%) 0%, rgb(247 246 243 / 96%) 34%, rgb(247 246 243 / 42%) 52%, rgb(247 246 243 / 0%) 70%),
    url("public/assets/hero-couple-metabolic.jpeg") calc(100% + 88px) center / auto 100% no-repeat,
    #f2f1ec;
}

.hero-bright.hero-custom .hero-media {
  display: block;
  background:
    linear-gradient(90deg, rgb(247 246 243 / 100%) 0%, rgb(247 246 243 / 96%) 34%, rgb(247 246 243 / 42%) 52%, rgb(247 246 243 / 0%) 70%),
    var(--home-hero-image) calc(100% + 88px) center / auto 100% no-repeat,
    #f2f1ec;
}

.hero-bright .media-tile {
  display: none;
}

.hero-bright .hero-content {
  padding-top: clamp(66px, 7vw, 96px);
  padding-bottom: clamp(230px, 16vw, 270px);
}

.hero-bright .eyebrow,
.hero-bright .hero-content > .eyebrow {
  color: var(--red);
  letter-spacing: 1.8px;
}

.hero-bright h1,
.hero-bright .hero-content > h1 {
  max-width: 690px;
  margin-bottom: 14px;
  color: #101820;
  font-size: clamp(2.25rem, 3.25vw, 3.35rem);
  font-weight: 950;
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: none;
}

.hero-red-rule {
  display: block;
  width: 54px;
  height: 4px;
  margin: 24px 0 24px;
  background: var(--red);
}

.hero-bright .hero-copy {
  max-width: 500px;
  color: #222;
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
}

.hero-bright .hero-actions {
  align-items: center;
  margin-top: 34px;
}

.hero-primary-button {
  min-height: 58px;
  padding-inline: 28px;
  gap: 10px;
}

.button-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.hero-login-link {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: none;
}

.hero-proof-card {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 28px;
  color: var(--ink);
  background: rgb(255 255 255 / 94%);
  border: 1px solid rgb(0 0 0 / 8%);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgb(0 0 0 / 16%);
}

.hero-proof-card > div {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 92px;
  padding: 0 16px;
  text-align: center;
  border-right: 1px solid rgb(0 0 0 / 12%);
}

.hero-proof-card > div:last-child {
  border-right: 0;
}

.proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  color: var(--red);
  font-size: 1.18rem;
  font-weight: 950;
}

.proof-svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.proof-stars {
  letter-spacing: 1px;
  font-size: 1.24rem;
}

.hero-proof-card strong {
  color: #101820;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-proof-card span:not(.proof-icon) {
  color: #333;
  font-size: 0.82rem;
  line-height: 1.25;
}

.trust-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 1px;
  background: var(--red);
  color: var(--white);
}

.trust-strip > * {
  flex: 1 1 0;
  min-width: 0;
}

.trust-strip p {
  display: contents;
  margin: 0;
}

.trust-strip br {
  display: none;
}

.trust-strip span {
  flex: 1 1 0;
  min-width: 0;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(180deg, rgb(0 0 0 / 18%), rgb(0 0 0 / 0));
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.section,
.patient-paths {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
  scroll-margin-top: 96px;
}

.patient-paths {
  width: 100%;
  max-width: none;
  padding: clamp(52px, 7vw, 80px) max(18px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 18% 18%, rgb(191 30 46 / 9%), transparent 34%),
    linear-gradient(180deg, #fff 0%, #efeee9 100%);
}

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

.section-heading p:not(.eyebrow),
.sticky-heading p,
.patient-panel p,
.path-card p,
.program-card p,
.model-grid p,
.section-note {
  color: #4e4e4e;
  font-size: 1.02rem;
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.path-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 328px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 96%), rgb(255 255 255 / 88%)),
    var(--white);
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.booking-card > p:not(.card-kicker) {
  min-height: 76px;
}

#existing-clients {
  scroll-margin-top: 120px;
}

.booking-step {
  margin: 12px 0 4px;
}

.booking-step.is-hidden,
.mindbody-shell.is-hidden {
  display: none;
}

.booking-step > span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.booking-choice button {
  min-height: 38px;
  padding: 8px 10px;
  color: var(--ink);
  background: #f1f1ef;
  border: 1px solid rgb(0 0 0 / 9%);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.booking-choice button:hover,
.booking-choice button.is-selected {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.booking-action {
  margin-top: auto;
}

.booking-action.is-disabled {
  display: none;
  pointer-events: none;
  opacity: 0.55;
}

.mindbody-shell {
  min-height: 168px;
  margin: 16px 0 14px;
  padding: 18px;
  background: #f1f1ef;
  border: 1px solid rgb(0 0 0 / 9%);
  border-radius: var(--radius);
}

.mindbody-shell p {
  margin: 0;
  color: #555;
  font-size: 0.92rem;
}

.mindbody-helper {
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 700;
}

.mindbody-appointments-frame {
  display: block;
  width: 100%;
  min-height: 1080px;
  background: var(--white);
  border: 0;
  border-radius: 12px;
}

.path-card .card-kicker {
  color: var(--red);
}

.track-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, var(--paper), #ecebe7);
}

.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.track-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-items: start;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, #171717 0%, #080808 100%);
  border: 1px solid rgb(191 30 46 / 42%);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgb(0 0 0 / 18%);
}

.track-card::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 7px;
  background: var(--red);
  content: "";
  z-index: 1;
}

.track-card > * {
  position: relative;
  z-index: 1;
}

.track-photo {
  min-height: clamp(230px, 22vw, 300px);
  margin: 0;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 16%) 56%, rgb(8 8 8 / 78%) 100%),
    var(--track-image, url("public/assets/hero-men-golf-card.png")) center / cover,
    var(--ink);
  border-bottom: 1px solid rgb(191 30 46 / 36%);
}

.track-card h3,
.track-card p,
.track-card .button {
  margin-right: clamp(24px, 4vw, 42px);
  margin-left: clamp(24px, 4vw, 42px);
}

.track-card p {
  color: rgb(255 255 255 / 74%);
}

.track-card .card-kicker {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 9px;
  color: var(--red);
  background: rgb(255 255 255 / 92%);
  border-radius: 4px;
  margin: clamp(22px, 3vw, 30px) clamp(24px, 4vw, 42px) 18px;
}

.track-card .button {
  margin-top: 18px;
  margin-bottom: clamp(26px, 4vw, 40px);
}

.track-card-men {
  --track-image: url("public/assets/hero-men-golf-card.png");
}

.track-card-women {
  --track-image: url("public/assets/hero-women-wellness-card.png");
}

.card-kicker,
.fine-print {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-kicker {
  color: var(--red);
}

.fine-print {
  margin: 16px 0 0;
  color: var(--red);
}

.section-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 78px);
}

.sticky-heading {
  position: sticky;
  top: 108px;
  align-self: start;
}

.program-list {
  display: grid;
  gap: 14px;
}

.program-card {
  position: relative;
  padding: 28px 28px 28px 92px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.program-card::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(42%, 240px);
  background-position: center;
  background-size: cover;
  content: "";
  opacity: 0.13;
}

.program-labs::after {
  background-image: url("https://images.pexels.com/photos/7579817/pexels-photo-7579817.jpeg?auto=compress&cs=tinysrgb&w=900");
}

.program-plan::after {
  background-image: url("https://images.pexels.com/photos/3992806/pexels-photo-3992806.jpeg?auto=compress&cs=tinysrgb&w=900");
}

.program-coach::after {
  background-image: url("https://images.pexels.com/photos/13621290/pexels-photo-13621290.jpeg?auto=compress&cs=tinysrgb&w=900");
}

.program-outcomes::after {
  background-image: url("https://images.pexels.com/photos/35986382/pexels-photo-35986382.jpeg?auto=compress&cs=tinysrgb&w=900");
}

.program-card > * {
  position: relative;
  z-index: 1;
}

.services-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: #111;
  color: var(--white);
}

.services-page-section {
  padding-top: clamp(70px, 9vw, 118px);
}

.services-section .section-heading p:not(.eyebrow) {
  color: rgb(255 255 255 / 70%);
}

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

.service-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius);
  background: #1b1b1b;
}

.service-card::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgb(191 30 46 / 28%), transparent 34%),
    linear-gradient(135deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 0%));
  content: "";
  z-index: 0;
}

.service-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 18%), rgb(0 0 0 / 82%)),
    var(--service-image, none);
  background-position: center;
  background-size: cover;
  content: "";
}

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

.service-card span {
  display: inline-block;
  margin-bottom: 82px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3 {
  color: var(--white);
  text-shadow: 0 2px 14px rgb(0 0 0 / 64%);
}

.related-services-section .service-card h3,
.related-services-section .service-card.has-service-image h3 {
  color: var(--white);
  text-shadow: 0 2px 14px rgb(0 0 0 / 72%);
}

.service-card p {
  color: rgb(255 255 255 / 74%);
  text-shadow: 0 2px 10px rgb(0 0 0 / 48%);
}

.service-core { --service-image: url("https://alphamaleclin1.wpenginepowered.com/wp-content/uploads/2025/08/body-fat-analysis-with-electronic-bioelectrical-im-2021-08-29-09-40-50-utc-scaled-1.jpg"); }
.service-diagnostics { --service-image: url("https://alphamaleclin1.wpenginepowered.com/wp-content/uploads/2025/08/blood-sugar-finger-prick-testing-at-home-for-diabe-2021-08-29-17-32-44-utc-scaled-1.jpg"); }
.service-peptides { --service-image: url("https://alphamaleclin1.wpenginepowered.com/wp-content/uploads/2025/07/BPC-157-scaled.png"); }
.service-iv { --service-image: url("public/assets/service-iv-lounge.png"); }
.service-weight { --service-image: url("https://alphamaleclin1.wpenginepowered.com/wp-content/uploads/2025/08/Injectible-28-GLP1-scaled.png"); }
.service-regen { --service-image: url("https://alphamaleclin1.wpenginepowered.com/wp-content/uploads/2025/12/2149341429.webp"); }
.service-nutrition { --service-image: url("https://alphamaleclin1.wpenginepowered.com/wp-content/uploads/2025/12/2149501382.webp"); }
.service-ed { --service-image: url("public/assets/hero-men-golf.png"); }
.service-men { --service-image: url("public/assets/hero-men-golf.png"); }
.service-women { --service-image: url("public/assets/hero-women-wellness.png"); }

.process-section {
  background:
    radial-gradient(circle at 80% 18%, rgb(191 30 46 / 9%), transparent 30%),
    var(--paper);
}

.program-index {
  position: absolute;
  top: 30px;
  left: 28px;
  color: var(--red);
  font-weight: 900;
}

.model-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 18% 22%, rgb(255 255 255 / 12%), transparent 22%),
    radial-gradient(circle at 82% 16%, rgb(191 30 46 / 44%), transparent 28%),
    linear-gradient(135deg, rgb(0 0 0 / 94%), rgb(79 7 17 / 88%)),
    var(--black);
}

.model-section .section-heading p:not(.eyebrow),
.model-grid p {
  color: rgb(255 255 255 / 72%);
}

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

.model-grid article {
  position: relative;
  min-height: 260px;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 34%), rgb(0 0 0 / 82%)),
    var(--model-image, none) center / cover,
    rgb(12 12 12 / 78%);
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--radius);
}

.model-grid article::before {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 72px;
  background: var(--red);
  content: "";
}

.model-card-medical { --model-image: url("public/assets/clinical-consult-couple.png"); }
.model-card-coach { --model-image: url("https://alphamaleclin1.wpenginepowered.com/wp-content/uploads/2025/08/man-fitness-2021-08-29-16-43-06-utc-scaled-1.jpg"); }
.model-card-telehealth { --model-image: url("public/assets/model-telehealth-woman-phone.png"); }

.faq-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, #f7f6f3 0%, #ecebe7 100%);
}

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

.faq-grid details {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgb(0 0 0 / 7%);
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.faq-grid summary::after {
  color: var(--red);
  content: "+";
  font-size: 1.45rem;
  line-height: 1;
}

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

.faq-grid details p {
  margin: 0;
  padding: 0 20px 20px;
  color: #444;
}

.social-proof-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--black);
}

.proof-panel {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
  padding: clamp(28px, 5vw, 54px);
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgb(191 30 46 / 28%), transparent 32%),
    linear-gradient(135deg, #151515 0%, #050505 100%);
  border: 1px solid rgb(191 30 46 / 36%);
  border-radius: var(--radius);
}

.proof-panel p:not(.eyebrow) {
  max-width: 640px;
  color: rgb(255 255 255 / 76%);
}

.proof-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.proof-stats span {
  padding: 10px 12px;
  color: var(--white);
  background: rgb(191 30 46 / 92%);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.video-proof-card {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgb(0 0 0 / 8%), rgb(0 0 0 / 82%)),
    var(--proof-image, url("public/assets/hero-men-golf-card.png")) center / cover;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius);
}

.video-proof-card-alt {
  --proof-image: url("public/assets/hero-women-wellness-card.png");
}

.video-proof-card span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-proof-card strong {
  max-width: 230px;
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1;
  text-transform: uppercase;
}

.review-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 90% 18%, rgb(191 30 46 / 20%), transparent 30%),
    linear-gradient(180deg, #171717 0%, #080808 100%);
}

.review-section .eyebrow {
  color: var(--red);
}

.review-section h2,
.review-section .section-heading p:not(.eyebrow) {
  color: var(--white);
}

.review-section h2 {
  max-width: none;
  white-space: nowrap;
}

.review-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 380px);
  grid-template-columns: none;
  gap: 18px;
  padding: 4px 2px 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--red) rgb(255 255 255 / 12%);
}

.review-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 26px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 10%), rgb(255 255 255 / 3%)),
    #242424;
  border: 1px solid rgb(255 255 255 / 10%);
  border-left: 7px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgb(0 0 0 / 28%);
  scroll-snap-align: start;
}

.review-card::before {
  position: absolute;
  top: 64px;
  left: 24px;
  color: var(--red);
  font-size: 3.4rem;
  font-weight: 950;
  line-height: 0.7;
  content: "“";
  opacity: 0.62;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: #4285f4;
  border-radius: 50%;
  font-weight: 900;
}

.review-source-pill {
  padding: 7px 10px;
  color: rgb(255 255 255 / 82%);
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-source-google {
  color: #1f1f1f;
  background: #fff;
  border-color: rgb(255 255 255 / 70%);
  box-shadow: inset 4px 0 0 #4285f4;
}

.review-stars {
  margin-bottom: 14px;
  color: #f6c516;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-card p {
  margin-top: 0;
  color: rgb(255 255 255 / 76%);
  font-size: 0.98rem;
}

.review-meta {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 18px;
  color: rgb(255 255 255 / 58%);
  font-size: 0.85rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.review-meta strong {
  color: var(--white);
  font-size: 0.94rem;
  text-transform: uppercase;
}

.review-meta a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.location-card {
  position: relative;
  min-height: 390px;
  display: grid;
  grid-template-rows: 58px minmax(118px, 1fr) auto;
  row-gap: 18px;
  overflow: hidden;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgb(191 30 46 / 24%), rgb(0 0 0 / 0) 42%),
    linear-gradient(180deg, #1b1b1b, #050505);
  border: 1px solid rgb(191 30 46 / 34%);
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 18px 50px rgb(0 0 0 / 10%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.location-card.has-location-photo {
  background:
    linear-gradient(180deg, rgb(0 0 0 / 34%), rgb(0 0 0 / 92%)),
    linear-gradient(145deg, rgb(191 30 46 / 24%), rgb(0 0 0 / 0) 42%),
    var(--location-image) center / cover,
    #080808;
}

.location-card.has-location-photo::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 22%) 0%, rgb(0 0 0 / 58%) 48%, rgb(0 0 0 / 94%) 100%),
    radial-gradient(circle at 20% 12%, rgb(191 30 46 / 42%), transparent 36%);
  content: "";
  pointer-events: none;
}

.location-card:not([data-link]) {
  cursor: default;
}

.location-card:hover {
  border-color: rgb(191 30 46 / 70%);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.location-card::after {
  position: absolute;
  right: -34px;
  bottom: -50px;
  color: rgb(255 255 255 / 5%);
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  content: attr(data-location-mark);
  pointer-events: none;
}

.location-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 0;
  color: var(--white);
  background: var(--red);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 900;
}

.location-card h3 {
  position: relative;
  z-index: 1;
  align-self: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(1.25rem, 1.55vw, 1.55rem);
  line-height: 1.05;
}

.location-card p {
  margin-bottom: 0;
}

.location-card p {
  position: relative;
  z-index: 1;
  color: rgb(255 255 255 / 92%);
  font-size: 0.95rem;
  line-height: 1.32;
}

.location-meta-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin: 14px 0 18px;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 900;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgb(0 0 0 / 55%);
}

.location-meta-list span {
  display: block;
}

.location-card a {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--red);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.location-site {
  margin-top: 6px;
  color: var(--white) !important;
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
}

.location-actions a:first-child:last-child,
.location-actions a:first-child:nth-last-child(3) {
  grid-column: 1 / -1;
}

.location-card .location-phone-button,
.location-card .location-info-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 14px;
  color: var(--white);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.location-card .location-phone-button {
  background: var(--red);
}

.location-card .location-info-button {
  background: #050505;
  border: 1px solid rgb(255 255 255 / 18%);
}

@media (max-width: 1180px) {
  .location-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.location-spacer {
  min-height: 1px;
}

.pending {
  color: var(--gray);
  font-weight: 900;
}

.location-card-telehealth {
  color: var(--white);
  background:
    linear-gradient(145deg, rgb(191 30 46 / 36%), rgb(0 0 0 / 0) 46%),
    linear-gradient(180deg, #2a0509, #050505);
  border-color: rgb(191 30 46 / 62%);
}

.location-card-telehealth .location-mark {
  color: var(--white);
  background: var(--red);
}

.location-card-telehealth a {
  color: var(--white);
}

.section-note {
  max-width: 700px;
  margin: 24px 0 0;
}

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

.media-grid article {
  min-height: 250px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 10%), rgb(255 255 255 / 5%)),
    #111;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius);
}

.media-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.media-grid p {
  color: rgb(255 255 255 / 70%);
}

.patient-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgb(0 0 0 / 88%) 0%, rgb(0 0 0 / 62%) 42%, rgb(0 0 0 / 22%) 100%),
    url("public/assets/clinical-consult-couple.png") center right / cover,
    radial-gradient(circle at 88% 20%, rgb(191 30 46 / 34%), transparent 26%),
    var(--ink);
  border-radius: var(--radius);
}

.patient-panel .eyebrow {
  color: var(--red);
}

.patient-panel .patient-actions {
  align-self: end;
  transform: translateY(18px);
}

.seo-content-section {
  padding-top: clamp(54px, 7vw, 86px);
  padding-bottom: clamp(78px, 9vw, 120px);
  background: var(--paper);
}

.seo-content-panel {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(34px, 5vw, 58px);
  background: #ecebe7;
  border: 1px solid rgb(0 0 0 / 6%);
  border-radius: var(--radius);
  box-shadow: 0 18px 70px rgb(0 0 0 / 8%);
}

.seo-content-panel p:not(.eyebrow) {
  color: #333;
  font-size: 1.03rem;
}

.standard-page {
  padding-top: clamp(74px, 9vw, 120px);
}

.standard-page-content {
  max-width: 860px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  border: 1px solid rgb(0 0 0 / 9%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.standard-page-content h1,
.standard-page-content h2,
.standard-page-content h3 {
  color: var(--ink);
}

.standard-page-content h2 {
  margin-top: 32px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.standard-page-content p,
.standard-page-content li {
  color: #333;
  font-size: 1.05rem;
}

.standard-page-content a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.what-expect-page {
  background:
    radial-gradient(circle at 12% 12%, rgb(191 30 46 / 12%), transparent 28%),
    linear-gradient(180deg, #f7f6f3 0%, #fff 45%, #f7f6f3 100%);
}

.what-expect-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 44px);
}

.what-expect-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.25vw, 4rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.what-expect-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  color: #292929;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.45;
}

.what-expect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.what-expect-confirm-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgb(191 30 46 / 42%), transparent 28%),
    linear-gradient(145deg, #080808 0%, #161616 58%, #2b0710 100%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgb(0 0 0 / 22%);
}

.what-expect-confirm-card::after {
  position: absolute;
  right: -28px;
  bottom: -42px;
  color: rgb(255 255 255 / 5%);
  font-size: 11rem;
  font-weight: 950;
  line-height: 0.8;
  content: "AH";
}

.what-expect-confirm-card > * {
  position: relative;
  z-index: 1;
}

.what-expect-check {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 26px;
  background: rgb(191 30 46 / 16%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 999px;
}

.what-expect-check span {
  display: block;
  width: 48px;
  height: 27px;
  border-bottom: 8px solid var(--red);
  border-left: 8px solid var(--red);
  transform: rotate(-45deg) translate(3px, -3px);
}

.what-expect-confirm-card h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.65rem, 2.6vw, 2.55rem);
}

.what-expect-confirm-card p:not(.eyebrow) {
  color: rgb(255 255 255 / 76%);
  font-size: 1.02rem;
}

.what-expect-mini-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.what-expect-mini-list span {
  padding: 12px 14px;
  color: rgb(255 255 255 / 86%);
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.what-expect-steps {
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 78px);
}

.what-expect-steps .section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.what-expect-steps .section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.what-expect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.what-expect-grid article {
  min-height: 240px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid rgb(0 0 0 / 8%);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgb(0 0 0 / 7%);
}

.what-expect-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.what-expect-grid h3 {
  margin-bottom: 12px;
}

.what-expect-grid p {
  color: #333;
  font-size: 1rem;
}

.what-expect-grid a {
  color: var(--red);
  font-weight: 900;
}

.what-expect-momentum {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 7vw, 88px) clamp(18px, 4vw, 44px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgb(191 30 46 / 26%), transparent 28%),
    linear-gradient(135deg, #080808 0%, #111 58%, #2a0710 100%);
}

.what-expect-momentum > div {
  max-width: 560px;
}

.what-expect-momentum h2 {
  color: var(--white);
}

.what-expect-momentum p:not(.eyebrow) {
  color: rgb(255 255 255 / 72%);
  font-size: 1.05rem;
}

.what-expect-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 760px;
}

.what-expect-link-grid a {
  min-height: 176px;
  padding: 22px;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.what-expect-link-grid a:hover {
  background: rgb(191 30 46 / 32%);
  border-color: rgb(191 30 46 / 52%);
  transform: translateY(-2px);
}

.what-expect-link-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.what-expect-link-grid strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.location-detail-page {
  background:
    radial-gradient(circle at 13% 18%, rgb(191 30 46 / 8%), transparent 32%),
    linear-gradient(180deg, var(--paper), #fff 42%, var(--paper));
}

.location-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  width: min(1280px, calc(100% - 36px));
  margin-inline: auto;
  padding-top: clamp(54px, 7vw, 92px);
  padding-bottom: clamp(52px, 7vw, 94px);
}

.location-detail-copy {
  padding: clamp(26px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 96%), rgb(255 255 255 / 82%)),
    radial-gradient(circle at 92% 12%, rgb(191 30 46 / 12%), transparent 30%);
  border: 1px solid rgb(0 0 0 / 8%);
  border-radius: var(--radius);
  box-shadow: 0 22px 90px rgb(0 0 0 / 10%);
}

.location-detail-copy h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.25vw, 2.35rem);
  line-height: 1.04;
}

.location-detail-copy p:not(.eyebrow) {
  max-width: 720px;
  color: #333;
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
}

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

.location-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(24px, 3.5vw, 38px);
  color: var(--white) !important;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 58%), rgb(0 0 0 / 94%)),
    linear-gradient(135deg, rgb(191 30 46 / 44%), rgb(0 0 0 / 0) 46%),
    var(--location-hero-image, none) center / cover,
    #050505;
  border: 1px solid rgb(191 30 46 / 42%);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgb(0 0 0 / 22%);
}

.location-hero-card::after {
  display: none;
  content: none;
}

.location-hero-card > * {
  position: relative;
  z-index: 1;
}

.location-hero-card .location-detail-mark {
  margin-bottom: 30px;
}

.location-hero-card h1,
.location-hero-card h2 {
  max-width: 430px;
  margin: 0 0 18px;
  color: var(--white) !important;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.02;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.location-hero-card .eyebrow {
  margin-bottom: 12px;
  color: var(--red);
}

.location-hero-summary {
  max-width: 420px;
  margin: 0 0 26px;
  color: rgb(255 255 255 / 84%) !important;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.4;
}

.location-hero-details {
  display: grid;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 16%);
}

.location-hero-details span {
  display: block;
  margin-bottom: 6px;
  color: var(--white) !important;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.location-hero-details p {
  margin: 0;
  color: var(--white) !important;
  font-weight: 400;
  line-height: 1.34;
}

.location-hero-details a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-hero-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 26px;
}

.location-hero-card-actions .button {
  width: 100%;
  justify-content: center;
}

.location-hero-card .button-ghost {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.location-hero-card .button-ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.button-ghost-dark {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgb(0 0 0 / 22%);
}

.button-ghost-dark:hover {
  color: var(--white);
  background: var(--ink);
}

.payment-plans-page {
  background:
    radial-gradient(circle at 18% 30%, rgb(191 30 46 / 8%), transparent 26rem),
    var(--paper);
}

.payment-plans-hero {
  padding-top: clamp(70px, 8vw, 118px);
}

.payment-plans-hero .section-heading {
  max-width: 780px;
}

.payment-plans-hero h1 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.payment-plans-hero .section-heading p:not(.eyebrow) {
  max-width: 680px;
}

.payment-plans-widget {
  max-width: 920px;
  margin: 34px auto 0;
  padding: clamp(18px, 3vw, 34px);
  background: var(--white);
  border: 1px solid rgb(0 0 0 / 8%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-detail-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgb(191 30 46 / 28%), rgb(0 0 0 / 0) 38%),
    linear-gradient(180deg, #181818, #050505);
  border: 1px solid rgb(191 30 46 / 42%);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgb(0 0 0 / 20%);
}

.location-detail-card::after {
  position: absolute;
  right: -24px;
  bottom: -46px;
  color: rgb(255 255 255 / 5%);
  font-size: 11rem;
  font-weight: 950;
  line-height: 1;
  content: attr(aria-label);
  pointer-events: none;
}

.location-detail-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 36px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-weight: 950;
}

.location-detail-card h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 2.9vw, 2.8rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.location-detail-card dl {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

.location-detail-card dt {
  color: rgb(255 255 255 / 56%);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-detail-card dd {
  margin: 4px 0 0;
  color: rgb(255 255 255 / 88%);
  font-weight: 400;
}

.location-detail-card dd,
.location-detail-card dd * {
  font-weight: 400 !important;
}

.location-detail-card dt {
  font-weight: 950;
}

.location-detail-card a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding-top: clamp(18px, 3vw, 34px);
}

.location-map-section {
  width: min(1280px, calc(100% - 36px));
  margin-inline: auto;
  padding-top: 0;
  padding-bottom: clamp(58px, 7vw, 96px);
}

.location-detail-map {
  min-height: 620px;
}

.location-map-heading {
  max-width: 760px;
  margin-bottom: clamp(20px, 3vw, 34px);
}

.location-map-heading p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
}

.location-map-layout {
  display: block;
}

.location-map-frame {
  min-height: clamp(620px, 58vw, 820px);
  width: 100%;
  height: 100%;
  margin-inline: auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgb(0 0 0 / 10%);
}

.location-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(620px, 58vw, 820px);
  aspect-ratio: 16 / 8;
  border: 0;
}

.location-visit-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 3.5vw, 38px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgb(191 30 46 / 28%), rgb(0 0 0 / 0) 40%),
    linear-gradient(180deg, #171717, #050505);
  border: 1px solid rgb(191 30 46 / 38%);
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgb(0 0 0 / 12%);
}

.location-visit-card h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.55vw, 2.25rem);
  line-height: 1.04;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.location-visit-card span {
  display: block;
  margin-bottom: 4px;
  color: rgb(255 255 255 / 62%);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.location-visit-card p {
  margin: 0;
  color: var(--white);
  font-weight: 850;
  line-height: 1.35;
}

.location-visit-card a:not(.button) {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-visit-actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.location-content-card,
.location-support-card {
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
  border: 1px solid rgb(0 0 0 / 8%);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgb(0 0 0 / 9%);
}

.location-content-card h1 {
  max-width: 780px;
  font-size: clamp(1.95rem, 2.8vw, 3rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.location-content-card h2 {
  margin-top: 30px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.location-content-card p,
.location-content-card li {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.location-content-card a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-support-card {
  position: sticky;
  top: 110px;
  background:
    linear-gradient(145deg, rgb(191 30 46 / 8%), transparent 42%),
    var(--white);
}

.location-support-card h2 {
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.02;
}

.location-support-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.location-support-card li {
  position: relative;
  padding-left: 22px;
  color: #333;
}

.location-support-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.location-next-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-top: clamp(18px, 3vw, 32px);
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(34px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 94%), rgb(255 255 255 / 76%)),
    radial-gradient(circle at 90% 20%, rgb(191 30 46 / 12%), transparent 34%);
  border: 1px solid rgb(0 0 0 / 8%);
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgb(0 0 0 / 9%);
}

.location-next-step h2 {
  max-width: 760px;
  font-size: clamp(1.85rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.location-next-step p:not(.eyebrow) {
  max-width: 680px;
  color: #333;
}

.location-next-step-actions {
  display: grid;
  gap: 12px;
  min-width: min(320px, 100%);
}

.error-page {
  min-height: 72vh;
  background:
    radial-gradient(circle at 8% 14%, rgb(191 30 46 / 12%), transparent 26%),
    var(--bone);
}

.error-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.error-copy h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.error-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
}

.error-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.error-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgb(191 30 46 / 32%), rgb(0 0 0 / 0) 42%),
    linear-gradient(180deg, #171717, #050505);
  border: 1px solid rgb(191 30 46 / 40%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.error-panel::after {
  position: absolute;
  right: -24px;
  bottom: -70px;
  color: rgb(255 255 255 / 5%);
  font-size: 12rem;
  font-weight: 950;
  content: "404";
}

.error-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 950;
}

.error-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 34px 0 22px;
  color: var(--white);
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.02;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.error-link-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.error-link-grid a {
  padding: 14px 16px;
  color: var(--white);
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 6px;
  font-weight: 950;
  text-transform: uppercase;
}

.page-hero {
  display: grid;
  align-items: end;
  min-height: 520px;
  padding: clamp(70px, 11vw, 130px) max(18px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgb(0 0 0 / 86%), rgb(0 0 0 / 32%)),
    var(--ink);
}

.page-hero-men {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 88%) 0%, rgb(0 0 0 / 62%) 46%, rgb(4 50 92 / 18%) 100%),
    url("public/assets/hero-men-golf.png") center right / cover;
}

.page-hero-women {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 62%) 48%, rgb(2 92 64 / 16%) 100%),
    url("public/assets/hero-women-wellness.png") center right / cover;
}

.page-hero-services {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 88%) 0%, rgb(0 0 0 / 56%) 48%, rgb(191 30 46 / 18%) 100%),
    url("public/assets/services-inbody-hero.png") center right / cover;
}

.page-hero-education {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 86%), rgb(70 11 18 / 42%)),
    url("https://alphamaleclin1.wpenginepowered.com/wp-content/uploads/2025/07/Human-Power-Low-Poly-Banner-scaled.jpg") center / cover;
}

.page-hero-staff {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 86%), rgb(0 0 0 / 38%)),
    url("public/assets/staff-community-hero.png") center right / cover;
}

.page-hero-custom {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 88%) 0%, rgb(0 0 0 / 58%) 48%, rgb(191 30 46 / 16%) 100%),
    var(--page-hero-image) center right / cover;
}

.page-hero-content {
  max-width: 790px;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgb(255 255 255 / 80%);
  font-size: 1.2rem;
}

.fact-grid,
.category-grid,
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.fact-card,
.category-card,
.staff-card {
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fact-card strong {
  display: block;
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.story-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.story-callout {
  position: relative;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}

.story-callout p {
  color: rgb(255 255 255 / 75%);
}

.story-callout .eyebrow {
  color: var(--red);
}

.story-callout-image {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 54%), rgb(0 0 0 / 86%)),
    var(--story-image, none) center / cover,
    var(--ink);
}

.story-callout-image::after {
  content: none;
}

.story-callout-image > * {
  position: relative;
  z-index: 1;
}

.story-callout-men {
  --story-image: url("public/assets/hero-men-golf-card.png");
}

.story-callout-women {
  --story-image: url("public/assets/hero-women-wellness-card.png");
}

.metabolic-focus-section {
  --metabolic-accent: var(--red);
  --metabolic-accent-soft: rgb(191 30 46 / 18%);
  width: 100%;
  max-width: none;
  padding: clamp(66px, 8vw, 108px) max(18px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 8% 12%, var(--metabolic-accent-soft), transparent 28rem),
    radial-gradient(circle at 94% 76%, rgb(191 30 46 / 16%), transparent 30rem),
    linear-gradient(135deg, #171719 0%, #202124 58%, #121214 100%);
}

.metabolic-bg-light {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgb(191 30 46 / 8%), transparent 28rem),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.metabolic-bg-solid-black {
  background: #101012;
}

.metabolic-focus-heading {
  max-width: 880px;
  margin: 0 auto 38px;
  text-align: center;
}

.metabolic-focus-heading .eyebrow,
.metabolic-focus-label {
  color: var(--metabolic-accent);
}

.metabolic-focus-heading h2 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  color: var(--white);
}

.metabolic-bg-light .metabolic-focus-heading h2 {
  color: var(--ink);
}

.metabolic-heading-compact .metabolic-focus-heading h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.75rem);
}

.metabolic-heading-large .metabolic-focus-heading h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.metabolic-focus-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  color: rgb(255 255 255 / 72%);
}

.metabolic-bg-light .metabolic-focus-heading p:not(.eyebrow) {
  color: var(--muted);
}

.metabolic-focus-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: 18px;
}

.metabolic-layout-stacked .metabolic-focus-card {
  grid-template-columns: 1fr;
}

.metabolic-focus-content,
.metabolic-reality-panel {
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 3%)),
    rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgb(0 0 0 / 22%);
}

.metabolic-bg-light .metabolic-focus-content,
.metabolic-bg-light .metabolic-reality-panel {
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 20px 60px rgb(0 0 0 / 9%);
}

.metabolic-focus-content {
  border-left: 6px solid var(--metabolic-accent);
}

.metabolic-focus-label {
  margin: 0 0 18px;
  font-size: 0.83rem;
  font-weight: 950;
  text-transform: uppercase;
}

.metabolic-focus-card blockquote {
  margin: 0 0 24px;
  padding: 0 0 22px;
  color: rgb(255 255 255 / 82%);
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-style: italic;
  line-height: 1.45;
}

.metabolic-bg-light .metabolic-focus-card blockquote,
.metabolic-bg-light .metabolic-check-list li,
.metabolic-bg-light .metabolic-reality-panel li {
  color: var(--muted);
}

.metabolic-check-list,
.metabolic-reality-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.metabolic-check-list li,
.metabolic-reality-panel li {
  position: relative;
  padding-left: 28px;
  color: rgb(255 255 255 / 74%);
  line-height: 1.45;
}

.metabolic-check-list li::before,
.metabolic-reality-panel li::before {
  position: absolute;
  left: 0;
  top: 0.18em;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  color: var(--white);
  background: var(--metabolic-accent);
  border-radius: 50%;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 950;
}

.metabolic-reality-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.metabolic-reality-panel .button {
  width: 100%;
  justify-content: center;
  background: var(--metabolic-accent);
  border-color: rgb(255 255 255 / 22%);
}

.metabolic-reality-panel .button:hover {
  background: var(--white);
  color: var(--ink);
}

.section-compact {
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.category-card span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.education-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

.education-card.has-card-image {
  color: var(--white);
  background:
    linear-gradient(180deg, rgb(0 0 0 / 20%), rgb(0 0 0 / 86%)),
    var(--card-image) center / cover,
    var(--ink);
  border-color: rgb(191 30 46 / 34%);
}

.education-card.has-card-image p {
  color: rgb(255 255 255 / 74%);
}

.education-detail,
.service-detail,
.topic-detail {
  background:
    radial-gradient(circle at 88% 10%, rgb(191 30 46 / 9%), transparent 25%),
    var(--bone);
}

.education-detail-hero,
.service-detail-hero,
.topic-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(58px, 8vw, 104px) 0 clamp(32px, 5vw, 66px);
}

.education-detail-copy,
.service-detail-copy,
.topic-detail-copy {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: center;
}

.education-detail-copy h1,
.service-detail-copy h1,
.topic-detail-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.education-detail-copy > p:not(.eyebrow),
.service-detail-copy > p:not(.eyebrow),
.topic-detail-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.education-detail-panel,
.service-detail-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.education-detail-image,
.service-detail-image {
  min-height: 390px;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 30%)),
    var(--education-image, var(--service-detail-image)) center / cover;
  border-radius: calc(var(--radius) - 2px);
}

.topic-detail-visual {
  position: relative;
  display: flex;
  min-height: 500px;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgb(0 0 0 / 10%), rgb(0 0 0 / 82%)),
    var(--topic-detail-image) center / cover,
    var(--ink);
  border: 1px solid rgb(191 30 46 / 32%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.topic-detail-visual::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgb(191 30 46 / 32%), transparent 28%),
    linear-gradient(90deg, rgb(0 0 0 / 72%), rgb(0 0 0 / 22%));
  content: "";
}

.topic-detail-visual::after {
  position: absolute;
  right: -0.08em;
  bottom: -0.2em;
  color: rgb(255 255 255 / 5%);
  font-size: clamp(8rem, 18vw, 15rem);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
  content: "AH";
}

.topic-detail-visual-copy {
  position: relative;
  z-index: 2;
  max-width: 430px;
}

.topic-detail-visual-copy .eyebrow {
  color: var(--red);
}

.topic-detail-visual-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.85rem, 2.7vw, 2.85rem);
  line-height: 1.03;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.topic-detail-visual-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgb(255 255 255 / 78%);
  font-size: 1rem;
  line-height: 1.45;
}

.topic-detail-visual-copy .button {
  width: 100%;
  margin-top: 22px;
}

.education-detail-5-traits-of-an-alpha .education-detail-panel {
  background:
    linear-gradient(180deg, #111, #070707);
  border-color: rgb(191 30 46 / 28%);
}

.education-detail-5-traits-of-an-alpha .education-detail-image {
  min-height: 430px;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 4%), rgb(0 0 0 / 14%)),
    var(--education-image) center / contain no-repeat,
    #0a0a0a;
}

.education-detail-panel dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  font-size: 0.74rem;
}

.education-detail-panel dl div {
  display: grid;
  gap: 4px;
  padding: 10px 0 0;
}

.education-detail-panel dd {
  font-size: 0.82rem;
  line-height: 1.2;
}

.education-detail-panel dl,
.service-detail-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.education-detail-panel dl div,
.service-detail-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.education-detail-panel dt,
.service-detail-panel dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.education-detail-panel dd,
.service-detail-panel dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.education-detail-panel dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  font-size: 0.74rem;
}

.education-detail-panel dl div {
  display: grid;
  gap: 4px;
  padding: 10px 0 0;
}

.education-detail-panel dd {
  font-size: 0.82rem;
  line-height: 1.2;
}

.detail-image-hero {
  width: min(1120px, calc(100% - 48px));
  min-height: clamp(520px, 62vh, 680px);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 30, 46, 0.28);
  border-radius: 8px;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.68) 44%, rgba(0, 0, 0, 0.22) 100%),
    var(--detail-hero-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 34px 80px rgba(17, 17, 17, 0.14);
}

.detail-image-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.detail-image-hero-copy {
  width: min(690px, 100%);
  position: relative;
  z-index: 1;
  color: var(--white);
}

.detail-image-hero-copy h1 {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(1.95rem, 2.95vw, 2.85rem);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.detail-image-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.detail-image-hero-copy .button {
  margin-right: 12px;
  margin-bottom: 12px;
}

.detail-image-hero-copy .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(0, 0, 0, 0.16);
}

.education-detail-body,
.service-detail-body,
.topic-detail-body {
  padding-top: clamp(28px, 5vw, 58px);
}

.medical-disclaimer {
  margin: 34px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
}

.article-content {
  width: min(880px, 100%);
  margin-inline: auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.diagnostics-page {
  background:
    radial-gradient(circle at 12% 18%, rgb(191 30 46 / 8%), transparent 28rem),
    linear-gradient(180deg, var(--paper), #fff 44%, var(--paper));
}

.diagnostics-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 42px);
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(42px, 6vw, 74px) 0 clamp(32px, 5vw, 58px);
  text-align: center;
}

.diagnostics-hero .section-heading {
  max-width: 880px;
  margin-inline: auto;
}

.diagnostics-hero h1 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(2.15rem, 3.6vw, 3.55rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.diagnostics-hero .section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
}

.diagnostics-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  width: min(960px, 100%);
  min-height: clamp(360px, 44vw, 560px);
  margin-inline: auto;
  padding: clamp(26px, 4vw, 44px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgb(0 0 0 / 86%) 0%, rgb(0 0 0 / 58%) 38%, rgb(0 0 0 / 18%) 100%),
    var(--diagnostics-panel-image) 68% center / cover,
    #090909;
  border: 1px solid rgb(191 30 46 / 38%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.diagnostics-panel > * {
  position: relative;
  z-index: 1;
}

.diagnostics-panel h2 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(1.65rem, 2.45vw, 2.55rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.diagnostics-panel p:not(.eyebrow) {
  max-width: 560px;
  color: rgb(255 255 255 / 82%);
}

.diagnostics-problem-section .section-heading {
  max-width: 920px;
}

.diagnostics-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(14px, 2.4vw, 22px);
  align-items: center;
  margin-top: 24px;
}

.diagnostics-comparison-card {
  --comparison-image: url("https://images.unsplash.com/photo-1505751172876-fa1923c5c528?auto=format&fit=crop&w=1200&q=80");
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: clamp(20px, 3vw, 30px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgb(0 0 0 / 18%), rgb(0 0 0 / 84%)),
    var(--comparison-image) center / cover,
    #111;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgb(0 0 0 / 6%);
}

.diagnostics-comparison-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.diagnostics-comparison-card ul,
.diagnostics-check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.diagnostics-comparison-card li,
.diagnostics-check-list li {
  position: relative;
  padding-left: 28px;
  color: rgb(255 255 255 / 88%);
  font-weight: 800;
}

.diagnostics-comparison-arrow {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 950;
  box-shadow: 0 18px 45px rgb(191 30 46 / 28%);
}

.diagnostics-comparison-card li::before,
.diagnostics-check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 950;
  content: "✓";
}

.diagnostics-comparison-muted {
  --comparison-image: url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1200&q=80");
}

.diagnostics-comparison-muted li::before {
  background: #777;
}

.diagnostics-comparison-alpha {
  --comparison-image: url("public/assets/clinical-consult-team.png");
  background:
    linear-gradient(180deg, rgb(0 0 0 / 12%), rgb(0 0 0 / 84%)),
    var(--comparison-image) center / cover,
    #111;
  border-color: rgb(191 30 46 / 28%);
}

.diagnostics-comparison-alpha span,
.diagnostics-comparison-alpha li,
.diagnostics-comparison-alpha h3 {
  color: var(--white);
}

.diagnostics-process-section {
  scroll-margin-top: 118px;
}

.diagnostics-process-section .section-heading {
  max-width: 960px;
}

.diagnostics-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.diagnostics-timeline-step {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgb(0 0 0 / 6%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.diagnostics-step-media {
  display: block;
  min-height: 104px;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 4%), rgb(0 0 0 / 22%)),
    var(--step-image) center / cover,
    var(--paper);
}

.diagnostics-timeline-step:hover {
  transform: translateY(-3px);
  border-color: rgb(191 30 46 / 34%);
  box-shadow: 0 26px 80px rgb(0 0 0 / 10%);
}

.diagnostics-step-number {
  display: inline-flex;
  position: absolute;
  left: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 950;
}

.diagnostics-step-icon {
  display: none;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  background: rgb(191 30 46 / 10%);
  border: 1px solid rgb(191 30 46 / 18%);
  border-radius: 16px;
}

.diagnostics-step-icon::before {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--red);
  font-size: 1.45rem;
  font-weight: 950;
  content: "●";
}

.diagnostics-timeline-step:nth-child(1) .diagnostics-step-icon::before { content: "H"; }
.diagnostics-timeline-step:nth-child(2) .diagnostics-step-icon::before { content: "B"; }
.diagnostics-timeline-step:nth-child(3) .diagnostics-step-icon::before { content: "I"; }
.diagnostics-timeline-step:nth-child(4) .diagnostics-step-icon::before { content: "M"; }
.diagnostics-timeline-step:nth-child(5) .diagnostics-step-icon::before { content: "C"; }
.diagnostics-timeline-step:nth-child(6) .diagnostics-step-icon::before { content: "P"; }

.diagnostics-timeline-step h3 {
  margin: 18px 18px 8px;
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  line-height: 1;
  text-transform: uppercase;
}

.diagnostics-timeline-step p {
  margin: 0 18px 20px;
  color: var(--muted);
}

.diagnostics-inbody-section {
  scroll-margin-top: 118px;
}

.diagnostics-inbody-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(330px, 0.42fr);
  gap: clamp(22px, 3.5vw, 42px);
  align-items: stretch;
}

.diagnostics-video-panel,
.diagnostics-inbody-copy {
  padding: clamp(20px, 2.8vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.diagnostics-video-panel {
  display: grid;
  align-items: stretch;
}

.diagnostics-video-thumb {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  min-height: clamp(320px, 36vw, 500px);
  padding: 0;
  cursor: pointer;
  background: #111;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 14%);
}

.diagnostics-video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 220ms ease, opacity 220ms ease;
}

.diagnostics-video-thumb:hover img {
  transform: scale(1.03);
  opacity: 0.9;
}

.diagnostics-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 20px 60px rgb(0 0 0 / 34%);
  transform: translate(-50%, -50%);
}

.diagnostics-play-button::before {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid var(--white);
  content: "";
}

.diagnostics-video-thumb strong {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: var(--white);
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.video-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  background:
    linear-gradient(135deg, rgb(0 0 0 / 74%), rgb(0 0 0 / 44%)),
    var(--diagnostics-bodyscan-image, url("public/assets/services-inbody-hero.png")) center / cover,
    #111;
  border: 1px solid rgb(191 30 46 / 24%);
  border-radius: calc(var(--radius) - 2px);
}

.video-embed iframe,
.video-embed-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed-placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.diagnostics-inbody-copy h2 {
  font-size: clamp(1.65rem, 2.55vw, 2.4rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.diagnostics-inbody-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.diagnostics-check-list {
  margin-top: 22px;
}

.diagnostics-inbody-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.diagnostics-inbody-card-grid span {
  min-height: 64px;
  display: grid;
  align-content: center;
  padding: 14px;
  background:
    radial-gradient(circle at 96% 4%, rgb(191 30 46 / 9%), transparent 34%),
    var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 950;
  text-transform: uppercase;
}

.diagnostics-inbody-actions {
  margin-top: 28px;
}

.diagnostics-video-modal[hidden] {
  display: none;
}

.diagnostics-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
}

.diagnostics-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 82%);
  backdrop-filter: blur(8px);
}

.diagnostics-video-modal-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  background: #050505;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius);
  box-shadow: 0 34px 100px rgb(0 0 0 / 44%);
}

.diagnostics-video-close {
  position: absolute;
  right: -14px;
  top: -14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

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

.diagnostics-orientation-section {
  padding-top: clamp(28px, 5vw, 62px);
}

.diagnostics-orientation {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.diagnostics-orientation > div:first-child {
  position: sticky;
  top: 104px;
  padding-top: 28px;
  border-top: 3px solid var(--red);
}

.diagnostics-orientation h2 {
  max-width: 760px;
  font-size: clamp(1.95rem, 3.45vw, 3.25rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.diagnostics-orientation p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.diagnostics-signal-stack {
  display: grid;
  gap: 14px;
}

.diagnostics-signal {
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 98%), rgb(255 255 255 / 86%)),
    radial-gradient(circle at 96% 0%, rgb(191 30 46 / 10%), transparent 32%);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgb(0 0 0 / 6%);
}

.diagnostics-signal h3 {
  margin: 0 0 10px;
  font-size: clamp(1.22rem, 1.85vw, 1.65rem);
  line-height: 1.06;
  text-transform: uppercase;
}

.diagnostics-signal p {
  margin: 0;
  color: var(--muted);
}

.diagnostics-flow-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: stretch;
}

.diagnostics-bodyscan-section {
  scroll-margin-top: 118px;
}

.diagnostics-bodyscan-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: stretch;
}

.diagnostics-bodyscan-media {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  padding: clamp(24px, 4vw, 36px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgb(0 0 0 / 8%), rgb(0 0 0 / 80%)),
    var(--diagnostics-bodyscan-image) center / cover,
    #111;
  border: 1px solid rgb(191 30 46 / 34%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.diagnostics-bodyscan-card {
  max-width: 410px;
  padding: 22px;
  background: rgb(0 0 0 / 72%);
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: calc(var(--radius) - 2px);
  backdrop-filter: blur(8px);
}

.diagnostics-bodyscan-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.diagnostics-bodyscan-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.diagnostics-bodyscan-copy {
  padding: clamp(30px, 5vw, 56px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgb(0 0 0 / 7%);
}

.diagnostics-bodyscan-copy h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.diagnostics-bodyscan-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.diagnostics-bodyscan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.diagnostics-bodyscan-point {
  min-height: 172px;
  padding: clamp(20px, 3vw, 28px);
  background:
    radial-gradient(circle at 96% 4%, rgb(191 30 46 / 8%), transparent 34%),
    var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
}

.diagnostics-bodyscan-point h3 {
  margin: 0 0 10px;
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1;
  text-transform: uppercase;
}

.diagnostics-bodyscan-point p {
  margin: 0;
  color: var(--muted);
}

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

.diagnostics-flow-image {
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: clamp(24px, 4vw, 36px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgb(0 0 0 / 10%), rgb(0 0 0 / 76%)),
    var(--diagnostics-feature-image) center / cover,
    #111;
  border: 1px solid rgb(191 30 46 / 34%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.diagnostics-flow-image span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.diagnostics-flow-image strong {
  display: block;
  max-width: 420px;
  font-size: clamp(1.45rem, 2.35vw, 2.3rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.diagnostics-flow-copy {
  padding: clamp(30px, 5vw, 56px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgb(0 0 0 / 7%);
}

.diagnostics-flow-copy h2 {
  max-width: 720px;
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.diagnostics-flow-steps {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.diagnostics-feature-grid,
.therapy-library-grid,
.alpha-traits-grid,
.alpha-energy-visual {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.alpha-energy-visual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0 34px;
}

.alpha-energy-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: clamp(24px, 4vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background:
    linear-gradient(180deg, rgb(0 0 0 / 18%), rgb(0 0 0 / 84%)),
    var(--alpha-energy-image) center / cover,
    #101010;
  border: 1px solid rgb(191 30 46 / 32%);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgb(0 0 0 / 14%);
}

.alpha-energy-card::before {
  position: absolute;
  right: -2%;
  bottom: -9%;
  display: block;
  color: rgb(255 255 255 / 8%);
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 950;
  line-height: 0.85;
  text-transform: uppercase;
  content: "static";
  pointer-events: none;
}

.alpha-energy-alpha::before {
  content: "alpha";
}

.alpha-energy-static {
  --alpha-energy-image: url("https://images.unsplash.com/photo-1519824145371-296894a0daa9?auto=format&fit=crop&w=1200&q=80");
}

.alpha-energy-alpha {
  --alpha-energy-image: url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1200&q=80");
}

.alpha-energy-card > * {
  position: relative;
  z-index: 1;
}

.alpha-energy-card span {
  margin-bottom: 12px;
  color: var(--red);
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.alpha-energy-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.alpha-energy-card li {
  color: rgb(255 255 255 / 86%);
}

.diagnostics-feature-card,
.therapy-card,
.alpha-traits-grid > * {
  padding: clamp(20px, 3vw, 28px);
  background:
    radial-gradient(circle at 100% 0%, rgb(191 30 46 / 7%), transparent 36%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgb(0 0 0 / 7%);
}

.therapy-library-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 34px;
}

.therapy-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
  padding: clamp(20px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 96%), rgb(255 255 255 / 84%)),
    radial-gradient(circle at 96% 0%, rgb(191 30 46 / 10%), transparent 32%);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgb(0 0 0 / 6%);
}

.therapy-profile-image {
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 1fr) minmax(124px, 0.24fr);
}

.therapy-profile-image::after {
  content: "";
  display: block;
  min-height: 142px;
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(180deg, rgb(0 0 0 / 10%), rgb(0 0 0 / 28%)),
    var(--therapy-card-image, url("public/assets/clinical-consult-team.png")) center / cover;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 16%);
}

.therapy-library-list .therapy-profile-image:nth-child(1) {
  --therapy-card-image: url("public/assets/service-iv-lounge.png");
}

.therapy-library-list .therapy-profile-image:nth-child(2) {
  --therapy-card-image: url("public/assets/clinical-consult-couple.png");
}

.therapy-library-list .therapy-profile-image:nth-child(3) {
  --therapy-card-image: url("public/assets/hero-couple-metabolic.jpeg");
}

.therapy-library-list .therapy-profile-image:nth-child(4) {
  --therapy-card-image: url("public/assets/clinical-consult-team.png");
}

.therapy-library-list .therapy-profile-image:nth-child(5) {
  --therapy-card-image: url("public/assets/hero-men-golf-card.png");
}

.therapy-library-list .therapy-profile-image:nth-child(6) {
  --therapy-card-image: url("public/assets/model-telehealth-woman-phone.png");
}

.therapy-profile > div {
  min-width: 0;
}

.therapy-profile span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.therapy-profile h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.05vw, 2.05rem);
  line-height: 1.04;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}

.therapy-profile p {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.diagnostics-feature-card h3,
.therapy-card h3,
.alpha-traits-grid h3,
.alpha-energy-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.diagnostics-feature-card p,
.therapy-card p,
.alpha-traits-grid p {
  margin: 0;
  color: var(--muted);
}

.alpha-traits-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin: 20px 0 36px;
}

.alpha-traits-grid > * {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background:
    linear-gradient(180deg, rgb(0 0 0 / 18%), rgb(0 0 0 / 84%)),
    var(--trait-image) center / cover,
    #101010;
  border-color: rgb(191 30 46 / 26%);
}

.alpha-traits-grid > *::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 16%, rgb(191 30 46 / 26%), transparent 34%);
  content: "";
  pointer-events: none;
}

.alpha-traits-grid > * > * {
  position: relative;
  z-index: 1;
}

.alpha-traits-grid .trait-courage {
  --trait-image: url("https://images.unsplash.com/photo-1546182990-dffeafbe841d?auto=format&fit=crop&w=1200&q=80");
}

.alpha-traits-grid .trait-physical {
  --trait-image: url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1200&q=80");
}

.alpha-traits-grid .trait-emotional {
  --trait-image: url("https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=1200&q=80");
}

.alpha-traits-grid .trait-knowledge {
  --trait-image: url("https://images.unsplash.com/photo-1519682337058-a94d519337bc?auto=format&fit=crop&w=1200&q=80");
}

.alpha-traits-grid .trait-service {
  --trait-image: url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?auto=format&fit=crop&w=1200&q=80");
}

.alpha-traits-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.alpha-traits-grid p {
  color: rgb(255 255 255 / 86%);
}

.diagnostics-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.diagnostics-proof span {
  padding: 13px 14px;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 6px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.diagnostics-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.diagnostics-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 950;
}

.diagnostics-step h3 {
  margin: 0 0 7px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1;
  text-transform: uppercase;
}

.diagnostics-step p {
  margin: 0;
  color: var(--muted);
}

.diagnostics-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.diagnostics-marker-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.82fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: start;
}

.diagnostics-marker-intro {
  position: sticky;
  top: 104px;
  padding: clamp(24px, 3vw, 32px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgb(191 30 46 / 30%), transparent 30%),
    linear-gradient(135deg, #101010, #252525);
  border: 1px solid rgb(191 30 46 / 28%);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgb(0 0 0 / 12%);
}

.diagnostics-marker-intro h2 {
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.diagnostics-marker-intro p:not(.eyebrow) {
  color: rgb(255 255 255 / 82%);
}

.diagnostics-marker-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.diagnostics-marker {
  min-height: 142px;
  padding: clamp(18px, 2.4vw, 24px);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 92%), rgb(247 246 243 / 84%)),
    radial-gradient(circle at 96% 4%, rgb(191 30 46 / 9%), transparent 34%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgb(0 0 0 / 5%);
}

.diagnostics-marker h3 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1;
  text-transform: uppercase;
}

.diagnostics-marker p {
  margin: 0;
  color: var(--muted);
}

.diagnostics-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 94%), rgb(255 255 255 / 82%)),
    radial-gradient(circle at 92% 18%, rgb(191 30 46 / 10%), transparent 30%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.diagnostics-cta > div:first-child,
.diagnostics-cta-actions {
  grid-column: 1;
}

.diagnostics-cta-image {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 220px;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 6%), rgb(0 0 0 / 22%)),
    var(--diagnostics-cta-image) center / cover,
    var(--paper);
  border-radius: calc(var(--radius) - 2px);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 18%);
}

.diagnostics-cta h2 {
  max-width: 720px;
  font-size: clamp(1.7rem, 2.9vw, 2.85rem);
  line-height: 1.04;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.diagnostics-cta p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
}

.diagnostics-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.diagnostics-cta-offer {
  display: block;
  margin-top: 14px;
  padding: 0;
  color: var(--red);
  background: transparent;
  border: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.article-content h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
  text-transform: uppercase;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.article-action-panel {
  margin: 36px 0 18px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, #111, #262626),
    radial-gradient(circle at 92% 12%, rgb(191 30 46 / 22%), transparent 30%);
  border: 1px solid rgb(191 30 46 / 32%);
  border-radius: var(--radius);
  color: var(--white);
}

.article-action-panel-image {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 92%), rgb(0 0 0 / 72%), rgb(0 0 0 / 38%)),
    var(--article-action-image) center / cover,
    #111;
}

.article-action-panel h2 {
  margin-top: 0;
  color: var(--white);
}

.article-action-panel p:not(.eyebrow) {
  max-width: 780px;
  color: rgb(255 255 255 / 82%);
}

.article-action-panel .button-ghost-dark {
  color: var(--white);
  border-color: rgb(255 255 255 / 34%);
}

.service-visual-panel {
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  margin: 36px 0;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgb(0 0 0 / 8%), rgb(0 0 0 / 82%)),
    var(--service-visual-image) center / cover,
    #111;
  border: 1px solid rgb(191 30 46 / 30%);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgb(0 0 0 / 14%);
}

.service-visual-panel h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.65rem, 2.9vw, 2.85rem);
  line-height: 1.04;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.alpha-video-section {
  background:
    radial-gradient(circle at 8% 20%, rgb(191 30 46 / 8%), transparent 28rem),
    linear-gradient(180deg, rgb(255 255 255 / 70%), rgb(247 246 243 / 96%));
}

.alpha-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.alpha-video-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgb(0 0 0 / 8%);
}

.alpha-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background:
    radial-gradient(circle at 50% 20%, rgb(191 30 46 / 22%), transparent 34%),
    #101010;
}

.alpha-video-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.alpha-video-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 950;
  text-transform: uppercase;
}

.alpha-video-copy {
  padding: 20px;
}

.alpha-video-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.alpha-video-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.article-content a {
  color: var(--red);
  font-weight: 900;
  text-underline-offset: 3px;
}

.article-content .button {
  color: var(--white);
  text-decoration: none;
}

.topic-card {
  display: block;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.topic-card:hover {
  transform: translateY(-3px);
  border-color: rgb(191 30 46 / 40%);
  box-shadow: 0 18px 52px rgb(0 0 0 / 14%);
}

.symptom-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding-top: 96px;
}

.symptom-card::before {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  border: 2px solid rgb(191 30 46 / 28%);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgb(191 30 46 / 22%), rgb(255 255 255 / 0)),
    var(--symptom-image, none);
  background-position: var(--symptom-position, center);
  background-size: var(--symptom-size, cover);
  content: "";
}

.symptom-card::after {
  position: absolute;
  top: 38px;
  right: 22px;
  color: rgb(191 30 46 / 12%);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  content: attr(data-mark);
}

.men-marker::before {
  border-radius: 8px;
  opacity: 0.9;
}

.symptom-card.has-card-image {
  --symptom-image: var(--card-image);
  --symptom-size: cover;
  --symptom-position: center;
}

.services-section .category-grid {
  grid-template-columns: repeat(3, 1fr);
}

.services-section .topic-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  background: #1b1b1b;
  border-color: rgb(255 255 255 / 14%);
}

.services-section .topic-card::before {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 20%), rgb(0 0 0 / 84%)),
    var(--symptom-image, var(--card-image, none)) center / cover,
    #1b1b1b;
  opacity: 1;
}

.services-section .topic-card::after {
  content: none;
}

.services-section .topic-card > * {
  position: relative;
  z-index: 2;
}

.services-section .topic-card span {
  margin-bottom: 14px;
}

.services-section .topic-card p {
  color: rgb(255 255 255 / 74%);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.services-section .topic-card h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

@media (max-width: 1120px) and (min-width: 901px) {
  .services-section .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.symptom-hormones { --symptom-image: url("https://images.unsplash.com/photo-1559757148-5c350d0d3c56?auto=format&fit=crop&w=900&q=80"); }
.symptom-energy { --symptom-image: url("https://images.unsplash.com/photo-1493836512294-502baa1986e2?auto=format&fit=crop&w=900&q=80"); }
.symptom-mood {
  --symptom-image: url("https://images.unsplash.com/photo-1516302752625-fcc3c50ae61f?auto=format&fit=crop&w=900&q=80");
  --symptom-size: cover;
}
.symptom-desire { --symptom-image: url("https://images.unsplash.com/photo-1525130413817-d45c1d127c42?auto=format&fit=crop&w=900&q=80"); }
.symptom-labs { --symptom-image: url("public/assets/womens-symptom-sheet.png"); }
.symptom-weight { --symptom-image: url("https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=900&q=80"); }
.symptom-sleep { --symptom-image: url("https://images.unsplash.com/photo-1511295742362-92c96b1cf484?auto=format&fit=crop&w=900&q=80"); }
.symptom-cycle { --symptom-image: url("https://images.unsplash.com/photo-1505751172876-fa1923c5c528?auto=format&fit=crop&w=900&q=80"); }
.topic-testosterone { --symptom-image: url("public/assets/clinical-consult-couple.png"); }
.topic-metabolic { --symptom-image: url("https://alphamaleclin1.wpenginepowered.com/wp-content/uploads/2025/08/blood-sugar-finger-prick-testing-at-home-for-diabe-2021-08-29-17-32-44-utc-scaled-1.jpg"); }
.topic-sexual { --symptom-image: url("public/assets/hero-men-golf-card.png"); }
.topic-recovery { --symptom-image: url("https://alphamaleclin1.wpenginepowered.com/wp-content/uploads/2025/08/man-fitness-2021-08-29-16-43-06-utc-scaled-1.jpg"); }
.topic-hormone-balance { --symptom-image: url("public/assets/hero-women-wellness-card.png"); }
.topic-metabolic-health { --symptom-image: url("https://alphamaleclin1.wpenginepowered.com/wp-content/uploads/2025/08/blood-sugar-finger-prick-testing-at-home-for-diabe-2021-08-29-17-32-44-utc-scaled-1.jpg"); }
.topic-sexual-health { --symptom-image: url("public/assets/hero-men-golf-card.png"); }
.topic-training-and-recovery { --symptom-image: url("https://alphamaleclin1.wpenginepowered.com/wp-content/uploads/2025/08/man-fitness-2021-08-29-16-43-06-utc-scaled-1.jpg"); }
.topic-testosterone-optimization { --symptom-image: url("public/assets/clinical-consult-couple.png"); }
.topic-energy { --symptom-image: url("https://images.unsplash.com/photo-1493836512294-502baa1986e2?auto=format&fit=crop&w=900&q=80"); }
.topic-energy-and-vitality { --symptom-image: url("https://images.unsplash.com/photo-1493836512294-502baa1986e2?auto=format&fit=crop&w=900&q=80"); }
.topic-coaching { --symptom-image: url("public/assets/clinical-consult-team.png"); }
.topic-coached-follow-through { --symptom-image: url("public/assets/clinical-consult-team.png"); }
.marker-testosterone { --symptom-image: url("public/assets/clinical-consult-couple.png"); }
.marker-metabolic { --symptom-image: url("https://alphamaleclin1.wpenginepowered.com/wp-content/uploads/2025/08/blood-sugar-finger-prick-testing-at-home-for-diabe-2021-08-29-17-32-44-utc-scaled-1.jpg"); }
.marker-liver { --symptom-image: url("https://images.unsplash.com/photo-1532938911079-1b06ac7ceec7?auto=format&fit=crop&w=400&q=80"); }
.marker-heart { --symptom-image: url("https://images.unsplash.com/photo-1505751172876-fa1923c5c528?auto=format&fit=crop&w=400&q=80"); }
.marker-body { --symptom-image: url("https://alphamaleclin1.wpenginepowered.com/wp-content/uploads/2025/08/body-fat-analysis-with-electronic-bioelectrical-im-2021-08-29-09-40-50-utc-scaled-1.jpg"); }
.marker-sleep { --symptom-image: url("https://images.unsplash.com/photo-1511295742362-92c96b1cf484?auto=format&fit=crop&w=400&q=80"); }
.marker-sexual { --symptom-image: url("public/assets/hero-men-golf-card.png"); }
.marker-coach { --symptom-image: url("https://alphamaleclin1.wpenginepowered.com/wp-content/uploads/2025/08/man-fitness-2021-08-29-16-43-06-utc-scaled-1.jpg"); }

.staff-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.08rem;
}

.staff-card span {
  color: rgb(255 255 255 / 72%);
}

.staff-section {
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(34px, 4.5vw, 58px);
}

.staff-headshot {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0;
  background: var(--black);
  border: 1px solid rgb(191 30 46 / 32%);
  box-shadow: 0 18px 44px rgb(0 0 0 / 12%);
}

.staff-headshot::before {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  background:
    var(--headshot-image, url("public/assets/staff-headshot-placeholders.png"));
  background-position: var(--headshot-position, center);
  background-size: cover;
  border: 0;
  border-radius: 0;
  content: "";
  transform: scale(1.01);
}

.staff-headshot.has-photo::before {
  background-image: var(--headshot-url);
  background-position: center;
  background-size: cover;
}

.staff-headshot::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0) 34%, rgb(0 0 0 / 78%) 100%),
    linear-gradient(135deg, rgb(191 30 46 / 18%), rgb(0 0 0 / 0) 44%);
  content: "";
  pointer-events: none;
}

.staff-headshot > * {
  position: relative;
  z-index: 1;
  margin-inline: 22px;
}

.staff-headshot strong {
  margin-top: auto;
  margin-bottom: 2px;
}

.staff-headshot span {
  margin-bottom: 22px;
}

.staff-headshot small {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 22px 22px;
  color: rgb(255 255 255 / 64%);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.25;
}

.headshot-1 { --headshot-position: 0% 0%; }
.headshot-2 { --headshot-position: 50% 0%; }
.headshot-3 { --headshot-position: 100% 0%; }
.headshot-4 { --headshot-position: 0% 50%; }
.headshot-5 { --headshot-position: 50% 50%; }
.headshot-6 { --headshot-position: 100% 50%; }
.headshot-7 { --headshot-position: 0% 100%; }
.headshot-8 { --headshot-position: 50% 100%; }
.headshot-9 { --headshot-position: 100% 100%; }

.patient-panel p {
  max-width: 660px;
  color: rgb(255 255 255 / 74%);
}

.free-consult-page {
  background: linear-gradient(110deg, rgb(191 30 46 / 7%), transparent 44%), var(--paper);
}

.free-consult-hero-section {
  padding-top: clamp(30px, 5vw, 58px);
  padding-bottom: clamp(24px, 4vw, 42px);
}

.free-consult-hero-section .patient-panel {
  max-width: var(--max);
  margin: 0 auto;
}

.free-consult-panel h1 {
  max-width: 760px;
  margin: 10px 0 18px;
  color: var(--white);
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.free-consult-booking {
  padding: clamp(18px, 3vw, 34px) clamp(18px, 4vw, 44px) clamp(54px, 7vw, 82px);
}

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

.free-consult-booking .section-heading,
.free-consult-faq-section .section-heading {
  max-width: 760px;
}

.free-consult-booking .booking-card {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}

.booking-grid-single {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.free-consult-faq-section {
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 58px);
}

.free-consult-faq-section .faq-grid {
  max-width: 940px;
  margin-inline: auto;
}

.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at 7% 18%, rgb(255 255 255 / 7%), transparent 22%),
    radial-gradient(circle at 88% 88%, rgb(191 30 46 / 14%), transparent 24%),
    linear-gradient(135deg, #070707 0%, #111 52%, #050505 100%);
  border-top: 5px solid var(--red);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px clamp(18px, 4vw, 44px) 48px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.35fr) repeat(3, minmax(145px, 0.72fr));
  align-items: start;
  gap: clamp(22px, 3vw, 38px);
}

.brand-footer {
  display: inline-flex;
}

.brand-footer .brand-health {
  color: var(--white);
}

.footer-tagline,
.footer-column h2,
.footer-heading {
  display: block;
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-tagline {
  margin-top: 18px;
}

.footer-tagline-red {
  color: var(--red);
}

.footer-brand-block p {
  max-width: 340px;
  margin: 8px 0 0;
  color: rgb(255 255 255 / 66%);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button-muted {
  color: var(--white);
  background: rgb(255 255 255 / 18%);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.footer-column a {
  display: block;
  color: rgb(255 255 255 / 66%);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-locations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.footer-location-card {
  min-width: 0;
  padding: 18px;
  background: linear-gradient(145deg, rgb(191 30 46 / 14%), rgb(255 255 255 / 5%));
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius);
}

.footer-location-card > a {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 950;
}

.footer-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.footer-location-actions a {
  padding: 8px 10px;
  color: rgb(255 255 255 / 78%);
  background: rgb(0 0 0 / 34%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-location-actions a:hover {
  color: var(--white);
  background: var(--red);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px clamp(18px, 4vw, 44px);
  color: rgb(255 255 255 / 46%);
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: rgb(255 255 255 / 56%);
}

.footer-social-block {
  margin-top: 24px;
}

.footer-social-heading {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgb(0 0 0 / 22%);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.footer-social-link:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.footer-social-link svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social-icon-img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 18px clamp(18px, 5vw, 32px);
  }

  .brand-logo-dark {
    height: 30px;
    max-width: min(250px, 62vw);
  }

  .brand-logo-light {
    height: 34px;
    max-width: min(280px, 74vw);
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.is-open {
    align-items: start;
    background: rgb(247 246 243 / 98%);
    box-shadow: 0 20px 60px rgb(0 0 0 / 12%);
  }

  .site-header.is-open .nav-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-header.is-open .main-nav {
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding-top: 12px;
    border-top: 1px solid rgb(0 0 0 / 10%);
    font-size: 1.02rem;
  }

  .site-header.is-open .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 2px;
    border-bottom: 1px solid rgb(0 0 0 / 8%);
  }

  .site-header.is-open .main-nav a::after {
    display: none;
  }

  .site-header.is-open .main-nav a::before {
    color: var(--red);
    content: "›";
    order: 2;
  }

  .site-header.is-open .main-nav .nav-home-link {
    color: var(--red);
  }

  .site-header.is-open .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 4px;
  }

  .site-header.is-open .phone-link {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--red);
    border: 1px solid rgb(191 30 46 / 22%);
    border-radius: var(--radius);
    background: rgb(191 30 46 / 6%);
  }

  .site-header.is-open .button-small {
    width: 100%;
    min-height: 52px;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-bright {
    min-height: auto;
  }

  .hero-media {
    grid-template-columns: 1fr;
    opacity: 0.48;
    padding: 10px;
  }

  .hero-bright .hero-media {
    opacity: 1;
    background:
      linear-gradient(180deg, rgb(247 246 243 / 96%) 0%, rgb(247 246 243 / 82%) 56%, rgb(247 246 243 / 100%) 100%),
      url("public/assets/hero-couple-metabolic.jpeg") 72% top / auto 58% no-repeat,
      #f2f1ec;
  }

  .hero-bright.hero-custom .hero-media {
    background:
      linear-gradient(180deg, rgb(247 246 243 / 96%) 0%, rgb(247 246 243 / 82%) 56%, rgb(247 246 243 / 100%) 100%),
      var(--home-hero-image) 72% top / auto 58% no-repeat,
      #f2f1ec;
  }

  .media-tile-large {
    grid-row: auto;
  }

  .media-tile:not(.media-tile-large) {
    display: none;
  }

  .hero-bright .hero-content {
    padding-top: clamp(46px, 10vw, 68px);
    padding-bottom: 30px;
  }

  .hero-bright h1,
  .hero-bright .hero-content > h1 {
    max-width: 100%;
    font-size: clamp(2.32rem, 10.5vw, 3.35rem);
    line-height: 1.04;
  }

  .hero-bright .hero-copy {
    max-width: 100%;
    font-size: 1.08rem;
    line-height: 1.52;
  }

  .hero-bright .hero-actions {
    align-items: stretch;
    gap: 16px;
  }

  .hero-primary-button {
    width: 100%;
    min-height: 56px;
  }

  .hero-proof-card {
    position: relative;
    bottom: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
    padding: 14px;
  }

  .hero-proof-card > div {
    min-height: 82px;
    padding: 10px 8px;
    border-right: 0;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
  }

  .proof-svg {
    width: 26px;
    height: 26px;
  }

  .proof-stars {
    font-size: 1rem;
  }

  .hero-proof-card strong {
    font-size: 0.78rem;
  }

  .hero-proof-card span:not(.proof-icon) {
    font-size: 0.72rem;
  }

  .hero-proof-card > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .path-grid,
  .track-grid,
  .services-grid,
  .section-split,
  .model-grid,
  .faq-grid,
  .proof-panel,
  .video-proof-grid,
  .review-grid,
  .location-grid,
  .media-grid,
  .patient-panel,
  .fact-grid,
  .category-grid,
  .staff-grid,
  .story-block,
  .metabolic-focus-card {
    grid-template-columns: 1fr;
  }

  .location-detail-hero,
  .diagnostics-hero,
  .diagnostics-feature-layout,
  .diagnostics-bodyscan-layout,
  .diagnostics-comparison,
  .diagnostics-timeline,
  .diagnostics-inbody-layout,
  .location-detail-body,
  .location-map-layout,
  .location-next-step,
  .error-hero,
  .education-detail-hero,
  .service-detail-hero,
  .topic-detail-hero {
    grid-template-columns: 1fr;
  }

  .location-detail-hero {
    padding-top: 48px;
  }

  .location-detail-copy,
  .location-detail-card,
  .location-content-card,
  .location-support-card,
  .location-next-step {
    padding: 26px;
  }

  .location-detail-copy h1 {
    font-size: clamp(2rem, 8.5vw, 3rem);
    line-height: 1;
  }

  .location-map-frame,
  .location-map-frame iframe {
    min-height: 460px;
  }

  .error-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.45rem);
    line-height: 1.02;
  }

  .education-detail-hero,
  .service-detail-hero,
  .topic-detail-hero {
    width: calc(100% - 28px);
    min-height: 430px;
    padding: 28px;
    align-items: flex-end;
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.92) 100%),
      var(--detail-hero-image);
  }

  .detail-image-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.5vw, 2.55rem);
    line-height: 1;
  }

  .detail-image-hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .detail-image-hero-copy .button,
  .detail-image-hero-copy .button-ghost {
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }

  .location-content-card h1 {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
  }

  .diagnostics-process-grid,
  .diagnostics-marker-grid,
  .diagnostics-feature-grid,
  .diagnostics-orientation,
  .diagnostics-flow-layout,
  .diagnostics-marker-layout,
  .diagnostics-marker-list,
  .therapy-library-grid,
  .therapy-profile,
  .alpha-traits-grid,
  .alpha-energy-visual,
  .diagnostics-cta {
    grid-template-columns: 1fr;
  }

  .therapy-profile-image {
    grid-template-columns: 1fr;
  }

  .therapy-profile-image::after {
    min-height: 190px;
    order: -1;
  }

  .services-section .category-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .services-section .topic-card {
    min-height: 250px;
    padding: 24px;
  }

  .services-section .topic-card h3 {
    max-width: 100%;
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }

  .services-section .topic-card p {
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.45;
    -webkit-line-clamp: 4;
  }

  .diagnostics-panel {
    min-height: 420px;
  }

  .diagnostics-orientation > div:first-child,
  .diagnostics-marker-intro {
    position: static;
  }

  .diagnostics-flow-copy,
  .diagnostics-bodyscan-copy,
  .diagnostics-video-panel,
  .diagnostics-inbody-copy,
  .diagnostics-marker-intro {
    padding: 26px;
  }

  .diagnostics-flow-image {
    min-height: 380px;
  }

  .diagnostics-bodyscan-media {
    min-height: 390px;
  }

  .diagnostics-bodyscan-grid {
    grid-template-columns: 1fr;
  }

  .diagnostics-comparison-card,
  .diagnostics-timeline-step {
    min-height: auto;
  }

  .diagnostics-comparison-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .diagnostics-step-number {
    width: 36px;
    height: 36px;
  }

  .diagnostics-step-media {
    min-height: 150px;
  }

  .diagnostics-video-thumb {
    min-height: 260px;
  }

  .diagnostics-play-button {
    width: 68px;
    height: 68px;
  }

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

  .diagnostics-video-close {
    right: 8px;
    top: 8px;
  }

  .diagnostics-cta > div:first-child,
  .diagnostics-cta-actions,
  .diagnostics-cta-image {
    grid-column: auto;
    grid-row: auto;
  }

  .diagnostics-cta-image {
    min-height: 240px;
    order: -1;
  }

  .diagnostics-step {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
  }

  .diagnostics-step span {
    width: 36px;
    height: 36px;
  }

  .location-support-card {
    position: static;
  }

  .review-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 88vw);
    grid-template-columns: none;
  }

  .review-section h2 {
    white-space: normal;
  }

  .trust-strip {
    flex-wrap: wrap;
  }

  .trust-strip span {
    flex-basis: calc(50% - 1px);
  }

  .location-grid {
    gap: 18px;
  }

  .location-card {
    min-height: 360px;
    padding: 24px;
  }

  .location-card h3 {
    margin-top: 0;
  }

  .location-actions {
    grid-template-columns: 1fr;
  }

  .location-actions a:first-child:nth-last-child(3) {
    grid-column: auto;
  }

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

  .footer-inner {
    padding: 38px clamp(18px, 5vw, 30px) 42px;
  }

  .sticky-heading {
    position: static;
  }

  .patient-actions {
    justify-content: flex-start;
  }

  .mindbody-appointments-frame {
    min-height: 1220px;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .diagnostics-timeline-step,
  .diagnostics-video-thumb img {
    transition: none;
  }

  .diagnostics-timeline-step:hover {
    transform: none;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 28px 0 32px;
  }

  h1 {
    font-size: clamp(2.18rem, 11vw, 2.7rem);
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-proof {
    display: none;
  }

  .media-tile {
    min-height: auto;
  }

  .program-card {
    padding: 68px 22px 24px;
  }

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

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

  .program-index {
    top: 24px;
    left: 22px;
  }

  .button {
    width: 100%;
  }

  .track-card {
    min-height: auto;
    padding-top: 0;
    display: flex;
    flex-direction: column;
  }

  .track-photo {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    background-position: center center;
  }

  .track-card h3 {
    font-size: clamp(1.65rem, 7vw, 2.05rem);
    line-height: 1.04;
  }

  .track-card h3,
  .track-card p,
  .track-card .card-kicker,
  .track-card .button {
    margin-left: 22px;
    margin-right: 22px;
  }

  .track-card p {
    font-size: 1rem;
    line-height: 1.46;
  }

  .track-card .button {
    width: auto;
    max-width: none;
    align-self: stretch;
    justify-content: center;
    margin-bottom: 30px;
    white-space: normal;
    text-align: center;
  }

  .review-card {
    min-height: 250px;
    padding: 22px;
  }

  .review-card p {
    font-size: 0.94rem;
  }

  .proof-panel {
    padding: 24px;
  }

  .video-proof-card {
    min-height: 220px;
  }

  .mindbody-shell {
    padding: 10px;
  }

  .education-detail-hero {
    width: min(100% - 28px, 1180px);
  }

  .education-detail-copy h1,
  .topic-detail-copy h1 {
    font-size: clamp(1.85rem, 8.4vw, 2.45rem);
  }

  .education-detail-panel,
  .topic-detail-visual,
  .article-content {
    padding: 22px;
  }

  .education-detail-image {
    min-height: 210px;
  }

  .topic-detail-visual {
    min-height: 340px;
  }

  .topic-detail-visual-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }
}

.landing-consult-page {
  background: var(--paper);
}

.landing-brand-bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(22px, 6vw, 72px);
  background: rgb(255 255 255 / 84%);
  border-bottom: 1px solid rgb(0 0 0 / 8%);
  backdrop-filter: blur(18px);
}

.landing-brand-bar img {
  width: min(220px, 48vw);
  height: auto;
}

.landing-brand-bar div {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 900;
}

.landing-brand-bar span {
  color: var(--red);
  text-transform: uppercase;
}

.landing-brand-bar a {
  color: var(--ink);
}

.landing-influencer-page .landing-brand-bar {
  justify-content: flex-start;
}

.landing-influencer-page .landing-brand-bar div {
  display: none;
}

.landing-consult-hero {
  min-height: 660px;
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(116px, 12vw, 150px) clamp(22px, 8vw, 118px) clamp(76px, 9vw, 116px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 246, 243, 0.96) 0%, rgba(247, 246, 243, 0.84) 34%, rgba(247, 246, 243, 0.24) 58%, rgba(247, 246, 243, 0.04) 100%),
    var(--landing-hero-image) center right / cover no-repeat;
}

.landing-consult-hero-content {
  width: min(620px, 100%);
  position: relative;
  z-index: 1;
}

.landing-consult-hero h1 {
  font-size: clamp(2.25rem, 4.35vw, 4rem);
  line-height: 1.02;
  max-width: 680px;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
}

.landing-consult-copy {
  font-size: 1.18rem;
  line-height: 1.52;
  max-width: 580px;
  color: var(--ink);
}

.landing-consult-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.landing-consult-actions .button {
  width: auto;
}

.existing-link {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.landing-proof-strip {
  width: min(1040px, calc(100% - 40px));
  margin: -54px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.landing-proof-strip span {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  text-align: center;
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
}

.landing-proof-strip span:last-child {
  border-right: 0;
}

.landing-influencer-page .landing-proof-strip {
  display: none;
}

.landing-intro-section {
  width: min(1100px, calc(100% - 40px));
  margin: clamp(48px, 6vw, 76px) auto;
  padding: clamp(46px, 6vw, 72px);
  background: #fff;
  border: 1px solid rgb(0 0 0 / 8%);
  border-radius: 0;
}

.landing-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.landing-benefit-grid .process-card {
  min-height: 230px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgb(191 30 46 / 8%), rgb(255 255 255 / 0%) 45%),
    #fff;
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgb(0 0 0 / 8%);
}

.landing-benefit-grid .process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 950;
  background: var(--red);
  border-radius: 999px;
}

.landing-benefit-grid .process-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.08;
}

.landing-benefit-grid .process-card p {
  margin: 0;
  color: #333;
}

.landing-booking-section {
  padding-top: clamp(50px, 6vw, 78px);
  padding-bottom: clamp(54px, 6vw, 82px);
  background:
    radial-gradient(circle at 15% 20%, rgb(191 30 46 / 24%), transparent 30%),
    linear-gradient(180deg, #161616 0%, #080808 100%);
  color: #fff;
}

.landing-booking-section .eyebrow,
.landing-booking-section h2,
.landing-booking-section .section-heading p {
  color: #fff;
}

.landing-booking-section .eyebrow {
  color: var(--red);
}

.landing-booking-section .booking-grid-single {
  justify-content: center;
}

.landing-calendar-shell {
  width: min(1000px, calc(100% - 40px));
  margin: 26px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgb(0 0 0 / 14%);
  overflow: hidden;
  min-height: 680px;
}

.landing-calendar-frame {
  display: block;
  width: 100%;
  min-height: 680px !important;
  border: 0;
  overflow: hidden;
}

.landing-calendar-fallback {
  margin: 0;
  text-align: center;
}

.landing-influencer-page .review-section {
  margin-top: 0;
}

.landing-final-cta {
  padding: 34px 20px 42px;
  text-align: center;
  background: #080808;
}

.landing-final-cta .button {
  width: auto;
}

@media (max-width: 900px) {
  .landing-brand-bar {
    padding: 14px 20px;
  }

  .landing-brand-bar div {
    gap: 10px;
    font-size: 0.88rem;
  }

  .landing-brand-bar span {
    display: none;
  }

  .landing-consult-hero {
    min-height: auto;
    padding: 92px 24px 150px;
    background:
      linear-gradient(180deg, rgba(247, 246, 243, 0.96) 0%, rgba(247, 246, 243, 0.78) 48%, rgba(247, 246, 243, 0.22) 100%),
      var(--landing-hero-image) 58% bottom / cover no-repeat;
  }

  .landing-proof-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -28px;
  }

  .landing-calendar-shell {
    width: min(100% - 28px, 1000px);
    min-height: 640px;
  }

  .landing-intro-section {
    width: min(100% - 32px, 1100px);
    margin: 34px auto;
    padding: 34px 24px;
  }

  .landing-calendar-frame {
    min-height: 640px !important;
  }

  .landing-benefit-grid {
    grid-template-columns: 1fr;
  }

  .landing-proof-strip span:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .landing-consult-hero {
    padding: 82px 20px 132px;
    background:
      linear-gradient(180deg, rgba(247, 246, 243, 0.96) 0%, rgba(247, 246, 243, 0.86) 44%, rgba(247, 246, 243, 0.24) 100%),
      var(--landing-hero-image) 64% bottom / cover no-repeat;
  }

  .landing-consult-hero h1 {
    font-size: clamp(2.15rem, 8.7vw, 2.85rem);
  }

  .landing-consult-actions {
    align-items: stretch;
  }

  .landing-consult-actions .button,
  .existing-link {
    width: 100%;
  }

  .landing-influencer-page .landing-consult-actions .button {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 30;
    box-shadow: 0 18px 42px rgb(0 0 0 / 24%);
  }

  .landing-proof-strip {
    grid-template-columns: 1fr;
  }

  .landing-proof-strip span {
    min-height: 64px;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .landing-proof-strip span:last-child {
    border-bottom: 0;
  }

  .landing-calendar-frame {
    min-height: 620px !important;
  }

  .landing-calendar-shell {
    width: calc(100% - 24px);
    min-height: 620px;
    margin-top: 18px;
  }

  .landing-booking-section {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .landing-final-cta {
    padding: 24px 16px 88px;
  }

  .landing-final-cta .button {
    width: 100%;
  }

  .landing-intro-section {
    width: min(100% - 24px, 1100px);
    margin: 24px auto;
    padding: 28px 18px;
  }
}

@media (max-width: 900px) {
  .what-expect-hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .what-expect-hero-copy h1 {
    max-width: 620px;
    font-size: clamp(2.3rem, 9vw, 3.65rem);
  }

  .what-expect-confirm-card {
    max-width: 620px;
  }

  .what-expect-grid {
    grid-template-columns: 1fr;
  }

  .what-expect-grid article {
    min-height: auto;
  }

  .what-expect-momentum {
    grid-template-columns: 1fr;
  }

  .what-expect-link-grid {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .what-expect-hero {
    gap: 22px;
    padding: 34px 18px 34px;
  }

  .what-expect-hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .what-expect-hero-copy p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .what-expect-check {
    width: 74px;
    height: 74px;
    margin-bottom: 20px;
  }

  .what-expect-check span {
    width: 38px;
    height: 22px;
    border-bottom-width: 7px;
    border-left-width: 7px;
  }

  .what-expect-confirm-card {
    padding: 24px;
  }

  .what-expect-confirm-card h2 {
    font-size: 1.75rem;
  }

  .what-expect-steps {
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .what-expect-steps .section-heading h2,
  .what-expect-momentum h2 {
    font-size: 2rem;
  }

  .what-expect-link-grid {
    grid-template-columns: 1fr;
  }

  .what-expect-link-grid a {
    min-height: 128px;
  }

  .what-expect-link-grid span {
    margin-bottom: 26px;
  }
}
